* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
html{
    scroll-behavior: smooth;
}

body {

    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden; 
    animation: fadeIn 1.5s ease-out;
}


.contact-info {
    background-color: white; 
    color: #003366;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info span {
    margin: 0 15px;
    font-size: 14px;
}

.navbars {
    background-color: #003366; 
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    font-weight: bold;
}

.navbars ul {
    list-style: none;
    display: flex;
}

.navbars ul li {
    margin-right: 20px;
}

.navbars ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbars ul li a:hover {
    color: #7BAF91; 
}
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
  }

  .burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s ease;
  }

.buttonone {
    background-color: #7BAF91; 
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-decoration: none;
}

.buttonone:hover {
    background-color: #6F9E7C;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
}
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    height: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    margin-bottom: 50px;
    gap: 3;
    position: relative;
    overflow: hidden;
    height: 71.2vh;
    background-attachment: fixed;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    color: #F1F1F1; 
    z-index: 1; 
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 350;
    text-align: center;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.cta-btn,
.cta-btn-outline {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    border: 2px solid #7BAF91; 
    margin: 10px 0;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10); 
    color: white;
}

.cta-btn {
    background-color: #7BAF91; 
    color: white;
    text-decoration: none;
}

.cta-btn-outline {
    background-color: transparent;
    color: white; 
}

.cta-btn:hover,
.cta-btn-outline:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 
}


.hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0; 
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
    opacity: 0.9;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.container {
    max-width: 900px;
    margin: auto;
}
.container h1 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    font-size: 3rem;
    color: #003366;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.icon {
    font-size: 40px;
    color: #003366;
    margin-bottom: 10px;
}
.icon {
    font-size: 50px;
    color: #7BAF91;
    margin-bottom: 15px;
}
.how-we-work-section {
    background: #f0f8ff;
    color: #003366;
    padding: 60px 20px;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.how-we-work-section h1 {
    color: #003366;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}
.how-we-work-section h2 {
    text-align: center;
    font-weight: 2;
    font-style: italic;
    color: #003366;
    margin-top: -45px;
    margin-bottom: 50px ;
    font-size: 1rem;
}
.how-we-work {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.step {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.step:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.step .icon {
    font-size: 35px;
    color: #7BAF91;
    margin-right: 20px;
}
.step h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
 
}
.step p {
    margin: 5px 0 0;
    font-size: 1em;
}
.gallery-section {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
}

.gallery-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #003366;
}

.gallery-section p {
    font-size: 1.2em;
    color: #003366;
    text-align: center;
    font-weight: 2;
    font-style: italic;
    color: #003366;
    margin-top: -10px;
    margin-bottom: 50px ;
   
}



.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 51, 102, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1.1em;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Lightbox Styling */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.footer {
    background: linear-gradient(135deg, #003366, #005599);
    color: white;
    padding: 40px 10px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 0;
    min-width: 250px;
    margin: 20px;
}
.footer-section a {
    color: white;
}

.footer-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: white;
}

.footer-section p {
    font-size: 1em;
    line-height: 1.6;
}

.footer-section .social a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: 0.3s ease-in-out;
}

.footer-section .social a:hover {
    color: #ffcc00;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9em;
}
/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #003366;
}
.quote_2 {
    display: none; /* Hidden by default */
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    width: 400px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000; /* Above overlay */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.quote_2 .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    backdrop-filter: blur(5px); /* Blurs the background */
    z-index: 999;
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.quote_2 h1 {
    color: #003366;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

.quote_2 label {
    color: #003366;
    margin-bottom: 8px;
    font-size: 16px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #003366;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #003366;
    outline: none;
   
}

textarea {
    resize: vertical;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}
.close-btn:hover {
    color: red;
}
.buttonthree{
    background-color: #7BAF91; 
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 50%;
}
.buttonthree:hover{
    background-color: #6F9E7C;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
}
/* RESPONSIVE STYLES */

@media (max-width: 768px) {
    .navbars {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    .hero-image img {
        filter: brightness(0.6);
      }
    .navbars ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #003366;
        padding: 10px 0;
    }

    .navbars ul.active {
        display: flex;
    }

    .navbars ul li {
        margin: 10px 20px;
    }

    .burger {
        display: flex;
        position: absolute;
        top: 105px;
        right: 30px;
        z-index: 1001;
}
  
    .hero-section {
      flex-direction: column;
      padding: 20px;
      height: auto;
    }
  
    .hero-text {
      width: 100%;
      padding: 20px;
    }
  
    .hero-text h1 {
      font-size: 2rem;
    }
  
    .hero-text p {
      font-size: 1rem;
    }
  
    .gallery {
      grid-template-columns: 1fr;
    }
  
    .grid {
      grid-template-columns: 1fr;
    }
  
    .step {
      flex-direction: column;
      text-align: center;
    }
  
    .step .icon {
      margin: 0 0 10px 0;
    }
  
    .container h1 {
      font-size: 2rem;
    }
  
    .modal-content {
      width: 90%;
    }
  
    .quote_2 {
      width: 90%;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .buttonthree {
      width: 100%;
    }
  }
  
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .gallery {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hero-text h1 {
      font-size: 2.5rem;
    }
  
    .hero-text p {
      font-size: 1.1rem;
    }
  }
  