@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: Montserrat;
}



        body {
            font-family: 'Montserrat', serif;
        }

        .custom-navbar {
            background: #fff;
            border-bottom: 1px solid #eee;
            padding: 0;
        }

        .custom-navbar .navbar-brand img {
            height: 60px;
            width: auto;
            max-width: 100%;
        }

        .custom-navbar .nav-link {
            color: #d23a47 !important;
            font-size: 1.2rem;
            font-weight: 600;
            /* margin: 0 18px; */
            transition: color 0.2s;
        }

        .custom-navbar .nav-link:hover,
        .custom-navbar .nav-link.active {
            color: #b21c2b !important;
        }

        .btn-brochure {
            background: #2c448c;
            color: #fff;
            font-weight: 500;
            border-radius: 25px;
            padding: 8px 32px;
            border: none;
            font-size: 1.05rem;
            transition: background 0.2s, color 0.2s;
        }

        .btn-brochure:hover {
            background: #1a2a5c;
            color: #fff;
        }

        .btn-quote {
            background: #d23a47;
            color: #fff;
            font-weight: 500;
            border-radius: 25px;
            padding: 8px 32px;
            border: none;
            font-size: 1.05rem;
            margin-left: 8px;
            transition: background 0.2s, color 0.2s;
        }

        .btn-quote:hover {
            background: #b21c2b;
            color: #fff;
        }

        .custom-navbar .lang-dropdown {
            border: none;
            background: none;
            font-weight: 500;
            color: #222;
            margin-right: 10px;
        }

        .custom-navbar .btn-login {
            border: 1.5px solid #222;
            background: #fff;
            color: #222;
            font-weight: 500;
            border-radius: 6px;
            padding: 6px 22px;
            margin-right: 10px;
            transition: background 0.2s, color 0.2s;
        }

        .custom-navbar .btn-login:hover {
            background: #222;
            color: #fff;
        }

        .custom-navbar .btn-signup {
            background: #222;
            color: #fff;
            font-weight: 500;
            border-radius: 6px;
            padding: 6px 22px;
            border: none;
            transition: background 0.2s, color 0.2s;
        }

        .custom-navbar .btn-signup:hover {
            background: #444;
        }

        @media (max-width: 991.98px) {
            .custom-navbar .navbar-collapse {
                background: #fff;
                padding: 20px 0;
            }

            .custom-navbar .navbar-brand img {
                height: 48px;
            }

            .btn-brochure,
            .btn-quote {
                width: 100%;
                margin: 8px 0;
                padding: 8px 0;
            }

            .custom-navbar .lang-dropdown {
                width: 100%;
                margin-bottom: 8px;
            }
        }






/* Mobile Navigation Styles */

.mobile-nav {
    background-color: #fff;
    border-top: 1px solid #e9e9ea;
}


.mobile-menu-toggle {
    background: none;
    border: none;
    color: #2E4792;
    font-size: 1.7rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}


.mobile-menu-toggle:hover {
    background-color: #f2f4fa;
}


.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(46, 71, 146, 0.92); /* Brand blue overlay */
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #f2f4fa 100%);
    box-shadow: -5px 0 20px rgba(46, 71, 146, 0.08);
    transform: translateX(100%);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}


.mobile-menu-header {
    padding: 20px;
    text-align: right;
    background: #2E4792;
}


.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.7rem;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: #FFD400;
    color: #2E4792;
}


.mobile-menu-body {
    padding: 20px;
}


.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}


.mobile-menu-items li {
    margin-bottom: 0;
    border-bottom: 1px solid #FFD301;
}


.mobile-menu-items a {
    display: block;
    padding: 15px 0;
    color: #2E4792;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-items a:hover {
    color: #D43145;
    padding-left: 10px;
}


.mobile-menu-contact {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #FFD400;
}


.contact-info {
    display: flex;
    align-items: center;
    color: #2E4792;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info i {
    margin-right: 10px;
    color: #FFD400;
}


.mobile-book-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #D43145;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-book-btn:hover {
    background-color: #FFD400;
    color: #2E4792;
    transform: translateY(-2px);
}


.mobile-menu-footer {
    padding: 20px 0;
    text-align: center;
}


.mobile-logo-footer {
    margin-bottom: 5px;
}


.mobile-copyright {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}

.mobile-copyright p {
    margin: 2px 0;
}

.thyo-link {
    color: #2E4792;
    font-weight: 600;
}



.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0rem !important;
}





/* 
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
    color: #000000 !important;
    font-weight: 600;
    background-color: #f2faff;
  border-radius: 10px;
  overflow: hidden;
    transition: color 0.2s;
} */

/* .navbar-nav .nav-link{
    color: #000000 !important;
} */





.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.7rem 1.5rem 0.7rem 1.2rem;
  border-radius: 2rem 0.8rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.18);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  gap: 0.7rem;
}
.whatsapp-float i {
  font-size: 1.5rem;
}
.whatsapp-float span {
  margin-left: 0.2rem;
  font-family: 'Montserrat', sans-serif;
}
.whatsapp-float:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,0.28);
  transform: translateY(-3px) scale(1.04);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 575px) {
  .whatsapp-float {
    right: 12px;
    bottom: 16px;
    font-size: 1rem;
    padding: 0.6rem 1.1rem 0.6rem 0.9rem;
  }
  .whatsapp-float i {
    font-size: 1.2rem;
  }
}





/* css for footer */



.footer-main {
    /* background: linear-gradient(135deg, #2E4792 0%, #D43145 50%, #2E4792 100%); */
    background: linear-gradient(180deg, #2E4792 0%, #D43145 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-logo-section {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.2); */
}

.company-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.company-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.3;
}

.company-cert {
    font-size: 0.85rem;
    color: #ffd700;
    font-weight: 600;
    margin: 0;
    padding: 4px 8px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    display: inline-block;
}

.company-description,
.company-mission {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.whatsapp-contact {
    display: flex;
    justify-content: flex-start;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: #20b358;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-link i {
    font-size: 1.3rem;
    margin-right: 10px;
}

.footer-social .social-heading {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.social-icon.facebook { background: #3b5998; }
.social-icon.facebook:hover { background: #2d4373; }

.social-icon.instagram { 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}

.social-icon.twitter { background: #1da1f2; }
.social-icon.twitter:hover { background: #0d8bd9; }

.social-icon.linkedin { background: #0077b5; }
.social-icon.linkedin:hover { background: #005582; }

.social-icon.youtube { background: #ff0000; }
.social-icon.youtube:hover { background: #cc0000; }

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

/* .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffd700;
    border-radius: 2px;
} */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.footer-links a:hover {
    color: #ffd700;
    text-decoration: none;
    transform: translateX(8px);
}

.footer-links a i {
    width: 18px;
    margin-right: 10px;
    font-size: 0.85rem;
    color: #ffd700;
}

.contact-info {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 22px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
    text-decoration: none;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.location-map:hover {
    transform: scale(1.02);
}

.environmental-badge {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    color: #000;
    margin: 1rem 0 1rem 0;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.environmental-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.environmental-badge h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.environmental-badge p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* padding-top: 2rem; */
    /* margin-top: 2rem; */
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.designed-by {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.thyo-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.thyo-link:hover {
    color: #fff;
    text-decoration: underline;
}

.india-flag {
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Enhanced Responsive Design */
@media (max-width: 1199.98px) {
    .footer-logo {
        height: 55px;
    }
    
    .company-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 991.98px) {
    .footer-main .container {
        padding: 3rem 20px;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .footer-logo {
        height: 85px;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .footer-main .container {
        padding: 2.5rem 15px;
    }
    
    .footer-logo-section {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .footer-logo-section .d-flex {
        justify-content: center;
        text-align: left;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-tagline,
    .company-cert,
    .company-description,
    .company-mission {
        text-align: center;
    }
    
    .whatsapp-contact {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-heading {
        font-size: 1rem;
        text-align: start;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        /* justify-content: center; */
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
        align-items: center;
    }
    
    .environmental-badge {
        margin: 2rem 0 1.5rem 0;
        padding: 1rem;
    }
    
    .designed-by {
        margin-top: 0.3rem;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer-main .container {
        padding: 2rem 10px;
    }
    
    .footer-logo {
        height: 85px;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    .company-tagline {
        font-size: 0.8rem;
    }
    
    .footer-heading {
        font-size: 0.95rem;
        margin-top: 0rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 4px 0;
    }
    
    .whatsapp-link {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
    
    .whatsapp-link i {
        font-size: 1.1rem;
        margin-right: 8px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .environmental-badge {
        padding: 0.8rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .environmental-badge h6 {
        font-size: 0.9rem;
    }
    
    .environmental-badge p {
        font-size: 0.8rem;
    }
    
    .contact-item {
        /* margin-bottom: 1rem; */
        font-size: 0.85rem;
    }
    
    .contact-item i {
        font-size: 0.9rem;
    }
    
    .footer-logo-section .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo-section .ms-3 {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
}

@media (max-width: 375px) {
    .footer-main .container {
        padding: 1.5rem 8px;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .company-tagline {
        font-size: 0.75rem;
    }
    
    .whatsapp-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

