/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer Styles */
.footer {
    background-color: #674636;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 30%;
    padding: 15px;
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    color: white;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.footer-logo .highlight {
    color: #ff4a17;
}

.footer-social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    margin-right: 10px;
    text-decoration: none;
    color: white;
    font-size: 2.25rem;
}

.footer-copyright {
    margin-top: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Footer Buttons */
.footer-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.footer-button {
    background-color: #c4a300;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.footer-button:hover {
    background-color: #a28700;
}

/* Whatsapp Button */
.whatsapp-chat {
    position: fixed;
    bottom: 100px;
    left: 15px;
}

.whatsapp-chat img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-buttons {
        flex-direction: column;
        margin-top: 20px;
    }

    .footer-button {
        margin: 10px 0;
    }

    .whatsapp-chat {
        bottom: 70px;
    }
}


/* Custom Social Media Icon Colors */
.social-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.facebook-icon {
    color: #1877f2;
    /* Facebook Blue */
}

.twitter-icon {
    color: #1da1f2;
    /* Twitter Blue */
}

.instagram-icon {
    color: #e1306c;
    /* Instagram Pink */
}

.linkedin-icon {
    color: #0077b5;
    /* LinkedIn Blue */
}

/* Increase icon size and add hover effects */
.social-icon:hover {
    transform: scale(1.2);
}

.partners-section {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.logo-container img {
    width: 200px;
    height: auto;
}

.logo {
    color: black;
    font-size: 2rem;
    font-weight: bold;
}

.highlight {
    color: #ff4a17;
}

.footer-logo {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 10px 15px;
}

/* Logo */
.logo {
    font-size: 0.5em;
    /* Default size for small screens */
}

@media (min-width: 640px) {
    .logo {
        font-size: 1.5em;
        /* Medium screens */
    }
}

@media (min-width: 1024px) {
    .logo {
        font-size: 2em;
        /* Large screens */
    }
}


.logo-text {
    font-weight: bold;
    color: #000;
}

.highlight {
    color: #f44336;
}

.logo a:hover {
    color: #000;
}

/* Buttons */
.header-buttons .button {
    padding: 10px 15px;
    margin-left: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    background-color: #674636 !important;
    transition: background-color 0.3s;
}

.header-buttons {
    display: none;
}

@media (min-width: 768px) {
    .header-buttons {
        display: block;
        gap: 1rem;
    }
}

.header-buttons:hover .button:hover {
    background-color: black !important;
}

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.nav-menu a:hover {
    color: #674636;
}

/* Hamburger Menu */
.hamburger-menu {
    display: block;
}

#menu-toggle {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
}

.hamburger-icon {
    width: 25px;
    height: 3px;
    background-color: #000;
    position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #000;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    top: 8px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-menu.open {
        display: block;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        width: 250px;
    }

    .nav-menu.open ul {
        flex-direction: column;
    }

    .nav-menu.open li {
        margin-bottom: 15px;
    }
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Header container */
#header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Logo */
.logo {
    font-size: 1.5em;
}

.logo-text {
    font-weight: bold;
}

.logo-text:hover {
    color: black !important
}

.highlight {
    color: #f44336;
}

/* Right Side (Buttons and Hamburger) */
.header-right {
    display: flex;
    align-items: center;
}

/* Buttons */


/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    /* Always visible */
    margin-left: 20px;
    align-items: center;
}

#menu-toggle {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
}

.hamburger-icon {
    width: 25px;
    height: 3px;
    background-color: #000;
    position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #000;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    top: 8px;
}

/* Sidebar (Initially Hidden) */
.sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    /* Hidden initially */
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 1000;
}

/* Close Button styles */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #674636;
}

.close-btn:hover {
    color: #ff0000;
    /* Optional hover color for close button */
}

.sidebar.active {
    right: 0;
}

.sidebar-menu ul {
    padding: 20px;
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 20px;
}

.sidebar-menu a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.sidebar-menu a:hover {
    color: #674636 !important;
}

.close-btn {
    display: flex;
    justify-content: end;
}

a:active,
a:hover {
    color: white
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    z-index: 1000;
    /* Ensure modal is above other content */
}

/* Modal content styling */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: auto;
    /* Prevent content overflow */
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

/* Header styling */
h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

/* Form styling */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Submit button styling */
.submit-btn {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #674636;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
}

.submit-btn:hover {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #000;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
}

/* Contact info styling */
.contact-info {
    text-align: center;
    margin-top: 15px;
}

.contact-info a {
    color: #674636;
    text-decoration: none;
}

.partners-section {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
}

.logos {
    display: flex;
    justify-content: center;
    /* Aligns the logos horizontally */
    gap: 20px;
    /* Space between logos */
    flex-wrap: wrap;
    /* Allows logos to wrap on smaller screens */
    align-items: center;
    /* Centers logos vertically */
}

.logos img {
    max-width: 100%;
    /* Ensures images fit within their container */
    height: auto;
    /* Maintains aspect ratio */
    max-height: 100px;
    /* Optional: limits the height of the logos */
}

.description {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .logos img {
        max-height: 70px;
        /* Reduces the size of logos on smaller screens */
    }
}

@media (max-width: 480px) {
    .logos img {
        max-height: 50px;
        /* Further reduce the size on very small screens */
    }
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input,
button {
    width: 100%;
    padding: 8px;
    font-size: 14px;
}

.button {
    background-color: #674636;
    color: white;
    border: none;
    cursor: pointer;
    width: 50%;
    border-radius: 10px;
}

.button:hover {
    background-color: black;
    color: white;
}

.button-submit {
    display: flex;
    justify-content: center;
}


.section-container {
    display: flex;
    width: 100%;
    min-height: 70vh;
    background-color: #f5f5f5;
    flex-direction: row;
}

.left-section {
    flex: 2;
    background: url('https://www.advay-borivali.site/assets/images/banner/Banner3.webp') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.span-btn {
    background-color: #5a3d2b;
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.right-section {
    flex: 1;
    padding: 50px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
}

.right-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background-color: #5a3d2b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.form-group button:hover {
    background-color: black;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        min-height: 100vh;
    }

    .left-section,
    .right-section {
        flex: 1;
        padding: 30px;
    }

    .content h1 {
        font-size: 28px;
    }

    .content p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .right-section h2 {
        font-size: 22px;
        text-align: center;
    }

    .form-group input,
    .form-group button {
        font-size: 14px;
    }

    .right-section {
        box-shadow: none;
    }
}

/* Main section styling */
.consultation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    /* Replace with the background color of your choice */
}

.heading-section {
    margin-bottom: 30px;
  }
  
  .heading-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .heading-section p {
    font-size: 1.2rem;
    color: #666;
  }

  .container {
    max-width: 800px;
    width: 100%;
    /* text-align: center; */
  } 

/* Column styling */
.column {
    flex: 1;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .button-submit {
        justify-content: center;
    }
}

.clients {
    padding: 40px 0;
    background-color: #f7f7f7;
    text-align: center;
  }
  .clients .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .clients-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .client-logo {
    flex: 0 0 calc(20% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .client-logo img {
    width: 100%;
    max-width: 180px; /* Default max width for larger screens */
    height: auto;
    object-fit: contain;
  }
  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .client-logo img {
      max-width: 140px; /* Medium screens */
    }
  }
  @media (max-width: 768px) {
    .client-logo {
      flex: 0 0 calc(50% - 10px);
    }
    .client-logo img {
      max-width: 120px; /* Smaller screens */
    }
  }
  @media (max-width: 480px) {
    .client-logo img {
      max-width: 100px; /* Extra small screens */
    }
  }

  .card-ads {
    display: flex;
    flex-wrap: wrap;
    max-width: 700px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin: 20px auto;
  }
  
  .card-image-ads img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card-image-ads {
    flex: 1 1 50%;
    min-height: 200px;
  }
  
  .card-content-ads {
    flex: 1 1 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .logo-ads img {
    max-width: 120px;
    margin-bottom: 10px;
  }
  
  .stats-ads {
    list-style: none;
    padding: 0;
    margin: 10px 0;
  }
  
  .stats-ads li {
    margin: 5px 0;
    display: flex;
    gap: 4px;
    align-items: center;
    font-family: "Didact Gothic", Sans-serif;
    font-size: 16px;
  }
  
  .list-span-ads{
    font-weight: 100;
  }
  .card-title-ads{
    font-size: 16px;
    font-weight: bolder !important;
    font-family: "Didact Gothic", Sans-serif;
  }