* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Lato', 'Open Sans', sans-serif;
    line-height: 1.6;
  }

  /* Header Starts here */

  header {
    background: white;
  }
  
  .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem; /* This creates space left and right */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Horizontally center the content within the logo div */
  }
  
  .logo img {
    width: 250px; /* Increase the width */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure it scales properly */
    margin-right: 10px; /* Adds space between the image and text */
  }
  
  .logo h3 {
    color: #111;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap; /* Prevent text from wrapping */
    margin-top: 25px; /* Adjust this value to move the text down */
  }

  nav {
    display: flex;
    gap: 1.5rem;
  }

  nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background: #34495e;
    border-radius: 2px;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: #34495e;
  }

  .mobile-nav a {
    color: white;
    text-decoration: none;
  }
  /* Header ends here */


  /* Banner Section */
  .banner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('../images/banner2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 20%;
    height: 85vh;
    color: #222;
    padding: 2rem 5vw;
    text-align: left;
    position: relative; /* Ensure the banner itself creates a stacking context */
  }


  .banner p {
    font-size: 18px; /* Increased from 18px */
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  /* Content inside the banner */
  .banner-content {
    position: relative; /* Ensures the text stays above the overlay */
    z-index: 1; /* Keeps the text on top */
  }
    
  .banner-content {
    max-width: 600px;
    position: relative; /* So it's above the overlay */
    z-index: 1;
  }
  
  .cta-btn {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .cta-btn:hover {
    background-color: #e67e22; /* Hover effect */
  }

  /* banner sections ends here */


  /* Our Services sections Starts here */

  .our-services {
    position: relative;
    padding: 60px 40px;
    background-color: white;
    text-align: center;
    overflow: hidden;
    z-index: 1;
  }
  
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2; /* Adjust this for video visibility */
    pointer-events: none; /* Allow clicking through video */
  }
  
  .our-services > *:not(.background-video) {
    position: relative;
    z-index: 2;
  }
  
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #222;
    font-weight: 600;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: stretch; /* This ensures equal height rows */
  }
  
  .service-card {
    width: 100%; /* Change from 380px */
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure full height */
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }

  .service-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .learn-more-button {
    display: inline-block; /* ensures spacing and styles apply properly */
    background-color: #f39c12;
    color: white;
    border: none;
    padding: 10px 24px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 50px; /* Gap from content/card above */
    text-decoration: none; /* Remove underline from link */
    text-align: center;
  }
  
  .learn-more-button:hover {
    background-color: #e67e22;
  }
  /* Our services ends here */

  .details-section {
    padding: 60px 40px;
    background-color: #fff;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #222;
    font-weight: 600;
  }
  
  .details-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .details-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }
  
  .details-image {
    width: 300px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .details-content {
    flex: 1;
  }
  
  .details-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
  }
  
  .details-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }

  .details-banner {
    padding: 80px 40px;
    background: linear-gradient(135deg, #d0f0ff, #c0f5e6); 
    color: #222;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .banner-content {
    max-width: 700px;
  }
  
  .details-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .details-banner p {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  

  
  main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }


  
  .content-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .text-container {
    flex: 1;
    min-width: 280px;
  }
  
  .text-block {
    margin-bottom: 20px;
  }
  
  .text-block h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
  }
  
  .text-block p {
    font-size: 16px;
    color: #555;
  }
  
  .image-container {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
  }
  
  .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }


   /* Promise sections starts here */

  .twilight-promise {
    position: relative;
    padding: 80px 30px;
    text-align: center;
    color: #333;
    overflow: hidden;
  }
  
  .twilight-promise .promise-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/twilightbackground.jpg') center center / cover no-repeat;
    filter: blur(8px);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
  }
  
  .twilight-promise .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .promise-title {
    margin-left: auto;
    margin-right: auto;
    display: block; /* ensures block element with auto margins */
    text-align: center;
  }
  
  .promise-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    text-align: center;
  }

  .promise-text-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
  }
   
  
  /* Promise sections ends here */


   /* Contact section starts here */


  .contact-section {
    background-color: white; /* Soft professional background */
    padding: 60px 20px;
  }
  
  .contact-container {
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding: 40px;
    border-radius: 8px;
    gap: 30px;
  }
  
  .contact-info {
    flex: 1;
    min-width: 250px;
    color: #333;
  }
  
  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
  }
  
  .contact-info p {
    margin: 15px 0;
    font-size: 1rem;
  }
  
  .contact-info a {
    color: #0077b6;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .contact-form {
    flex: 2;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .contact-form input,
  .contact-form textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    font-family: inherit;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  
  .contact-form button {
    align-self: flex-start;
    background-color: #f39c12;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #e67e22;;
  }

 /* Contact section ends here */


  


  /* Footer Starts here */

  .footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f5f5f5; /* Light cool gray */
    color: #333;
    padding: 40px;
  }
    
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    text-align: left;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  
  .footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
    transition: border-color 0.3s ease-in-out;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 5px 0;
  }
  
  .footer-section ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease-in-out, padding-left 0.3s ease-in-out;
  }
  
  .footer-section ul li a:hover {
    color: #007BFF; /* Light blue accent on hover */
    padding-left: 5px; /* Indent effect on hover */
  }
  
  .social-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    transition: opacity 0.3s ease;
  }
  
  .footer-bottom:hover {
    opacity: 0.9;
  }
  
  /* Footer ends here */


  /* For Mobile */

  @media (max-width: 768px) {
    nav {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .mobile-nav.active {
      display: flex;
    }

    .logo {
        flex-direction: column; /* Stack the image and text vertically */
        align-items: center; /* Center the items */
    }
    
    .logo img {
        margin-right: 0; /* Remove the margin when stacking */
        margin-bottom: 10px; /* Add space below the image */
    }
    
    .logo h3 {
        margin-top: 0; /* Remove any margin top */
    }

    .banner {
        flex-direction: column; /* Stack the text and image vertically on smaller screens */
        text-align: center;
      }
    
      .banner-content {
        max-width: 90%; /* Allow the text to take up more space on smaller screens */
      }
    
      .banner h1 {
        font-size: 28px; /* Adjust the heading size for smaller screens */
      }
    
      .banner p {
        font-size: 16px; /* Adjust paragraph size */
      }

      .service {
        width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }

    .details-row {
        flex-direction: column;
        text-align: center;
      }
    
      .details-image {
        margin: 0 0 15px 0;
      }

      

}



 