/* Global Styles */
body {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #001328;
}

html {
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {

    top: 0;
    position: fixed;
    display: flex;
    justify-content: space-between;
    /* Distributes space between items */
    align-items: center;
    /* Vertically centers items */
    width: 100%;
    background-color: #001328;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    /* Adding the drop shadow */
}

.navbar-links {
    display: flex;
    list-style: none;
    margin: 0% 5%;
    display: flex;
    justify-content: center;
    gap: 150px;
    flex-grow: 1;
    font-weight: 200;
    font-size: 14px;
    padding: 0px 0px 0px 0px;
    align-items: center;
}


.navbar a {
    font-family: 'DM Sans', sans-serif;
    color: white;
    text-decoration: none;
}

.navbar a:hover {

    color: #FFC107;
    text-decoration: none;
}

.navbar .logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
    /* Adjust the size of your logo */
    width: auto;

}

.navbar button {
    font-family: 'DM Sans', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: #1428A0;
    color: #ffffff;
    padding: 10px 50px;
    border: none;
    border-radius: 16px 8px 16px 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 200;
    white-space: nowrap;
    /* Prevent text from wrapping */

}


.navbar button:hover {
    background-color: #FFC107;
    color: #1428A0;
}

/* Hamburger Menu Icon */
.menu-icon {
    display: none;
    /* Hide the hamburger menu by default */
    cursor: pointer;
    z-index: 101;
    flex-direction: column;
    gap: 5px;

}


.menu-icon .line {
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 5px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Section Styles */

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar-links {

        padding-top: 20px;
        padding-left: 25px;
        padding-right: 25px;
        margin: 0px;
        display: none;
        /* Hide the navbar links on mobile */
        flex-direction: column;
        align-items: stretch;
        /* Align menu to the right */
        right: 0;
        position: absolute;
        top: 50px;
        /* Below the navbar */
        background-color: #001328;
        gap: 5px;
        /* Adjust the gap on mobile */

    }



    .navbar-links li {
        font-family: 'DM Sans', sans-serif;
        margin: 10px 0;


    }

    .navbar-links.active {
        display: flex;
        /* Display the links when menu is active */
        margin: 30px 0;
    }

    .navbar-links button {
        font-family: 'DM Sans', sans-serif;
        display: flex;
        align-items: center;
        text-align: center;
        background-color: #1428A0;
        color: #ffffff;
        padding: 10px 50px;
        border-radius: 16px 8px 16px 8px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        margin: 25px 0px 25px 0px;
    }


    .menu-icon {
        display: flex;
        /* Show the hamburger menu on mobile */
        margin-right: 10%;

    }

    .menu-icon.open .line-1 {
        transform: rotate(45deg) translateY(12.5px);
    }

    .menu-icon.open .line-2 {
        opacity: 0;
    }

    .menu-icon.open .line-3 {
        transform: rotate(-45deg) translateY(-12.5px);
    }


}

.hero {
    display: flex;
    align-items: center;
    /* Centers vertically */
    justify-content: flex-start;
    /* Aligns content to the left */

    height: 80vh;
    /* Full viewport height */
    background-color: #ffffff;
    padding: 0 40px;
}

.hero-content {
    font-family: 'DM Sans', sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: #001328;
    line-height: 1.1;
    max-width: 100%;
}

/* Animating Changing Text */
#changing-text {
    font-weight: 800;
    color: #1428A0;
    transition: opacity 0.7s ease-in-out;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
    .hero {
        height: auto;
        /* Reduce height for mobile */
        padding: 0 5%;
        /* Adjust left-right padding */
        margin-top: 30px;

    }

    .hero-content {
        font-family: 'DM Sans', sans-serif;
        font-weight: 800;
        font-size: 20px;
        max-width: 100%;
        margin-bottom: 20px;
        /* Remove any extra space at the bottom */

    }
}

.image-gallery {
    display: flex;
    height: 600px;
    padding: 0;
    width: auto;
    overflow: hidden;
    /* Prevent images from overflowing */
}

.image-gallery img {
    width: 33.33%;
    /* Evenly distribute across the section */
    height: 100%;
    /* Full height */
    object-fit: cover;
    /* Ensures images cover their areas without distortion */
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .image-gallery {
        height: auto;
        /* Let the height adjust according to content */
        justify-content: center;
        /* Ensure images are centered horizontally */
    }

    .image-gallery img {
        width: 35%;
        /* Scale down images to 50% on mobile */
        height: auto;
        /* Maintain aspect ratio */

    }

}

.our-process {
    background-color: #001328;
    /* Dark blue background */
    color: #EFE8DC;
    /* Light text */
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
}

/* Section Title */
.section-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #EFE8DC;
    /* Gold color for title */
    text-align: left;
    margin: 40px 0px 0px 40px;
    padding: 0px;
}

/* Section Description */
.section-description {
    font-size: 16px;
    color: #EFE8DC;
    /* Light text */
    text-align: right;
    margin: 0px 40px 40px 0px;
    font-weight: 200;
    font-family: 'Segoe UI', sans-serif;
}

/* Process Steps Container */
.process-details {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-left: 40px;
    margin-right: 40px;
}

/* Individual Process Step */
.process-step {
    width: 30%;
    text-align: center;
}

.process-step h3 {
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 32px;
    color: #FFD700;
    /* Gold color for steps */
    margin-bottom: 35px;
    margin-top: 10px;
}

.process-step p {
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
    font-size: 16px;
    font-weight: 200;
    color: #EFE8DC;
}

.step-icon {
    text-align: left;
}

/* SVG Ring Icon */
.step-icon svg {
    width: 60px;
    height: 60px;
    stroke: #FFD700;
}

.step-list {
    margin-top: 50px;
    list-style-type: disc;
    /* Circular bullets */
    padding-left: 20px;
    /* Adds some padding to left */
    font-size: 14px;
    /* Adjust text size */
    color: #EFE8DC;
    /* Light color text for list items */
}

.step-list li::marker {
    color: #FFD700;
    /* Set the disc color to yellow */
}

.step-list li {
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    /* Adds spacing between list items */
}



/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    .our-process {
        background-color: #001328;
        /* Dark blue background */
        color: #EFE8DC;
        /* Light text */
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        font-family: 'DM Sans', sans-serif;
    }

    .section-title {
        font-size: 28px;
        margin-left: 20px;
        margin-bottom: 20px;

    }

    .section-description {
        font-size: 14px;
        margin-right: 20px;
        margin-top: 10px;
        display: none;
    }

    .process-details {
        display: flex;
        /* Revert to horizontal layout on mobile */
        justify-content: space-between;
        /* Align items horizontally */
        margin-top: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .process-step {
        width: 30%;
        /* Keep the same width as the desktop version */
        margin-bottom: 20px;
        /* Add space between steps */
    }

    .process-step h3 {
        font-family: 'DM Sans', sans-serif;
        font-weight: 600;
        font-size: 15px;
    }

    .process-step p {
        font-family: 'Segoe UI', sans-serif;
        font-weight: 200;
        font-size: 12px;
        display: none;
    }

    .step-icon svg {
        width: 30px;
        height: 30px;
    }

    .step-list {
        margin: 0px;
        padding: 0px;
    }

    .step-list li {
        font-family: 'Segoe UI', sans-serif;
        font-weight: 400;
        font-size: 10px;
        /* Slightly smaller font size on mobile */
    }
}

#process {
    padding-top: 50px;
    /* Adjust this value to create space for the navbar */
}

#home {
    padding-top: 70px;
    /* Adjust this value to create space for the navbar */
}



.breather-section {
    position: relative;
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 40px 0px 40px;
}

.image-container {
    position: relative;
    width: calc(100% - 40px);
    height: 100%;
}

.collage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the container without distortion */
    object-position: top;
    /* Aligns the image properly */
}

.overlay-box {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: calc(100% / 2.8);
    /* 1/1.25 of the screen width */
    height: calc(100% / 3);
    /* 1/3 of the height of the section */
    background-color: #001328;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    padding: 20px;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.overlay-title {
    font-family: 'DM Sans', sans-serif;
    margin: 0px 0px 30px 0px;
    color: #EFE8DC;
    font-size: 4vw;
    /* Dynamic sizing based on viewport width */
    line-height: 1.2;
    /* Ensures the title doesn’t overflow */
}

.overlay-text {
    color: #FFD700;
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
    font-weight: 200;
    margin: 0px;
    font-size: 18px;
    /* Adjusts the size to fit proportionately */
    margin: 0;
    padding-right: 40px;
    line-height: 1.5;
    /* Ensures readability without breaking the lines too quickly */
}

@media (max-width: 768px) {
    .breather-section {
        height: auto;
        padding: 0 20px;
    }

    .image-container {
        width: 100%;
    }

    .overlay-box {
        width: 40%;
        height: auto;
        top: 35%;
        transform: translateY(0);
        padding: 15px;
    }

    .overlay-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 18px;
        /* Reduced by 50% */
        justify-content: center;
        margin: 0px;
    }

    .overlay-text {
        font-size: 5px;
        /* Reduced by 50% */
        display: none;
        font-family: 'Segoe UI', sans-serif;
        text-align: left;
        font-weight: 200;
    }
}

#services {
    padding:50px 0px 50px 0px;
    /* Adjust this value to create space for the navbar */
}

/* Parent Container */
.our-services .section-title {
    color: #001328;
}

.our-services .section-description {
    color: #001328;
}

/* Container 2: Large Text & Image */
.services-content .hero-content {
    display: flex;
    align-items: center;
    font-weight: bold;
    padding: 0px;
}

.services-content .hero-content h1 {
    margin: 0px 0px 40px 40px;
    padding: 0;
}

/* Container 3: Service Items (Horizontally Stacked) */
.services-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 40px;
}

.service-item {
    flex: 1;
    text-align: left;
    color: #EFE8DC;
}

.process-details .icon {
    width: 50px;
    height: 50px;
}

.step-icon h3 {
    margin-top: 10px;
    color: #001328;
}

.step-icon p {
    color: #001328;
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
    font-size: 16px;
    font-weight: 200;
}

.step-icon .step-list ol {
    margin-top: 10px;
    padding-left: 20px;
}

.step-icon .step-list li {
    font-size: 14px;
    font-weight: 400;
    color: #001328;
}

.step-icon .step-list li::marker {
    color: #001328;
}

#blue {
    color: #1428A0;
}

@media (max-width: 768px) {


    .services-content .hero-content h1{
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-right: 10px;
        font-family: 'DM Sans', sans-serif;
        max-width: 100%;
        margin: 20px 0px 40px 20px;
        padding: 0px 40px 0px 0px;
    }
    .step-icon h3 {
        font-size: 18px;
        /* Adjust heading size */
    }

    /* Adjust Section Description */
    .section-description {
        font-size: 14px;
        margin-top: 10px;
        margin-right: 20px;
        margin-left: 20px;
    }

    .process-details .icon {
        width: 30px;
        height: 30px;
    }

    .step-icon .step-list li {
        font-family: 'Segoe UI', sans-serif;
        font-weight: 400;
        font-size: 12px;
        /* Slightly smaller font size on mobile */
    }
}
/*  
#about {
    padding: 90px 0px 80px 40px;
}*/
.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #001328; /* Or your preferred color */
    padding: 90px 0px 90px 40px;
    height: auto;
  }
  
  .about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .about-header {
    font-family: DM Sans, sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #EFE8DC; 
    margin: 0px 0px 80px 0px;
    padding: 0px;
    text-align: left;
  }
  
  .about-paragraph {
    font-family: Segoe UI, sans-serif;
    font-size: 18px;
    font-weight: 200;
    color: #FFD700; /* Blue */
    line-height: 1.75;
    margin: 0;
    padding-right: 150px;
  }
  
  .about-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    right: 0;
  }
  
  .about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
  }

  @media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: left;
        padding: 90px 20px;
        height: auto;
    }

    .about-header {
        font-size: 28px;
        margin-bottom: 40px;
        padding-top:10px;
    }

    .about-paragraph {
        font-size: 14px;
        line-height: 1.3;
        padding: 0 0 0 0;
    }

    .about-image {
        margin-top: 40px;
    }

    .about-image img {
        max-width: 100%;
    }
}

.footer-container {
    background-color: #ffffff;
    padding: 60px 40px;
    color: #001328;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  
  .footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .footer-header h2 {
    font-family: DM Sans, sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: #001328;
    line-height: 1.1;
    max-width: 100%;
  }


  
  .footer-button {
    font-family: DM Sans, sans-serif;
    background-color: #1428A0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 200;
    padding: 10px 60px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    border-radius: 16px 8px 16px 8px;
    white-space: nowrap;

  }
  
  .footer-button:hover {
    background-color: #FFC107;
    color: #1428A0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
  }
  
  .footer-logo {
    width: auto;
    height: 80px;
  }
  
  .footer-contact {
    text-align: right;
    font-size: 20px;
    font-weight: 600;
  }
  
  .footer-contact p {
    font-family: Segoe UI, sans-serif;
    font-size: 16px;
    margin: 5px 0;
    color: #001328;
  }

  @media (max-width: 768px) {

    .footer-container{
        padding: 40px 40px;
    }

    .footer-header{
        margin: 0px;
        justify-content: center;
      align-items: center;
    }
    .footer-header h2 {
      flex-direction: column;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      font-weight: 800;
      font-size: 20px;
      display: none;
      margin: 0px;
    }

    .footer-button{
      justify-content: center;
      align-items: center;
      margin-bottom: 30px;
    }
  
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-contact {
      text-align: center;
    }
  }


.client-container {
    padding: 0px 0px 80px 0px;
    overflow: hidden;
    background-color: #001328;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    
  }
  
  .client-header {
    padding: 0px 0px 80px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #EFE8DC;
    margin: 0px;
    text-align: left;
  }
  
  .client-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .client-track {
    display: flex;
    gap: 80px;
    animation: scrollClients 15s linear infinite;
    width: fit-content;
  }
  

  .client-track img {
    height: 60px;
    margin: 0 40px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Optional: makes logos white */
  }
  
  @keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .client-track {
      gap: 40px;
    }
  
    .client-track img {
      max-height: 40px;
    }
  
    .client-header {
      font-size: 28px;
      padding: 0px 0px 80px 20px;
    }
  }



  .contact-form-section {
    background-color: #001328;
    padding: 80px 20px;
    color: #f8f9fa;
    display: flex;
    justify-content: center;
  }
  
  .form-container {
    width: 100%;
    max-width: 800px;
    text-align: left;
  }
  
  .form-header {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color:#FFD700;
    margin-bottom: 40px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: 2px solid #FFD700;
  }
  
  .submit-btn {
    background-color: #1428A0;
    color: #EFE8DC;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #FFC107;
    color: #001328;
  }
