/* style.css */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    /* CSS Variables */
:root {
    --primary-blue: #0066cc;
    --secondary-blue: #004d99;
    --dark-blue: #003366;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
     font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.call-btn{
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.call-btn:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Header Top */
.header-top {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5px 0;
    display: flex;
    text-decoration: none;
    justify-content: space-around;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

/* Navigation Bar */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 2px 0;
    position: relative;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto; /* Don't grow or shrink */
    min-width: 250px; /* Set a minimum width for the logo section */
}

.nav-logo {
    height: 90px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.nav-logo img {
    height: 100%;
    width: auto;
    max-height: 90px;
    object-fit: contain; /* Ensures logo maintains aspect ratio */
}


/* Navigation Links - Desktop */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 30px;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
}

/* Call Button */
.call-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.call-btn:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Menu Toggle - Hidden on Desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 8px;
    position: relative;
    z-index: 1002; /* Above everything */
}

.menu-toggle .bar {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Menu Toggle Animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== */
/* MOBILE RESPONSIVE */
/* ==================== */

@media (max-width: 768px) {
    /* Hide header top on mobile */
    .header-top {
        display: none;
    }
    
    /* Adjust navbar padding */
    .navbar {
        padding: 10px 0;
        min-height: 60px;
    }
    
    /* Show menu toggle on mobile */
    .menu-toggle {
        display: block !important;
        order: 3; /* Move to end */
        margin-left: auto;
    }
    
    /* Hide call button on mobile */
    .call-btn {
        display: none;
    }
    
    /* Logo adjustments for mobile */
    .logo {
        order: 1;
    }
    
    .nav-logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-placeholder {
        font-size: 18px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        font-size: 12px;
    }
    
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .navbar {
        min-height: 50px;
    }
    
    .nav-links {
        top: 50px !important;
    }
    
    .nav-logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 14px;
    }
    
    .menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .menu-toggle .bar {
        width: 20px;
        height: 2.5px;
    }
}
/* Responsive Design */
@media (max-width: 1200px) {
    .nav-links {
        gap: 20px;
    }
    
    .logo {
        min-width: 220px;
    }
}

@media (max-width: 992px) {
    .navbar {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .logo {
        flex: 1;
        min-width: auto;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        margin: 20px 0 0;
        justify-content: flex-start;
        overflow-x: auto; /* Allow horizontal scrolling on mobile */
        padding-bottom: 10px;
    }
    
    .call-btn {
        order: 2;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .nav-logo {
        height: 70px;
    }
    
    .nav-logo img {
        max-height: 70px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    .nav-links {
        position: fixed;
        top: 140px;
        left: 0;
        background-color: var(--white);
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.5s ease;
        z-index: 1000;
        height: auto;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        margin: 0;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .call-btn {
        display: none; /* Hide call button on mobile, use floating button instead */
    }
}

@media (max-width: 576px) {
    .logo {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-logo {
        margin-right: 0;
        margin-bottom: 10px;
        height: 60px;
    }
    
    .nav-logo img {
        max-height: 60px;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
}
/* Hero Slider */
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slider {
    height: 100vh;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/img/slider/1.webp');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/img/slider/2.webp');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/img/slider/3.webp');
}

.slide:nth-child(4) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/img/slider/4.webp');
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 80%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: var(--primary-blue);
}

/* QR Code */
.qr-code {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.qr-container h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.qr-img {
    width: 100px;
    height: 100px;
    background-color: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.qr-placeholder {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.qr-container p {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Why Choose Us */
.why-choose-us {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.features {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.feature {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 2rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.feature p {
    color: var(--medium-gray);
}

/* Special Icons */
.special-icons {
    padding: 60px 0;
    background-color: var(--white);
}

.icons-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.icon-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.icon-item:hover .icon-circle {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.icon-item h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.icon-item p {
    color: var(--medium-gray);
    font-weight: 600;
}

/* Products */
.products {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 1.8rem;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.product-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Brands */
.brands {
    padding: 60px 0;
    background-color: var(--white);
}

.brands-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-logo img {
    background-color: var(--light-gray);
    padding: 20px 30px;
    border-radius: 8px;
    font-weight: 700;
    height: 120px;
    width: auto;
  object-fit: cover;
    color: var(--dark-gray);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
}



/* Reviews */
.reviews {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.reviews-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.review-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
}

.review-card p {
    color: var(--medium-gray);
    font-style: italic;
}

/* Trending */
.trending {
    padding: 60px 0;
    background-color: var(--white);
}

.trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tag {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tag:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: #061424;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-blue);
    bottom: 0;
    left: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-description {
    color: #cccccc;
    margin: 20px 0;
    line-height: 1.7;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #cccccc;
}

.contact-details i {
    margin-right: 10px;
    color: var(--primary-blue);
    margin-top: 5px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
    font-size: 0.9rem;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.call-float {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-float:hover {
    background-color: var(--secondary-blue);
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .reviews-container {
        flex-direction: column;
    }
    
    .hero {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info a {
        margin: 0 10px;
    }
    
    .nav-links {
        position: fixed;
        top: 100px;
        left: 0;
        background-color: var(--white);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.5s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .call-btn {
        display: none;
    }
    
    .hero {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .qr-code {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto 0;
        width: 200px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .icon-item {
        min-width: 150px;
    }
    
    .brand-logo img{
        min-width: 120px;
        padding: 15px 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .trending-tags {
        justify-content: flex-start;
    }
    
    .footer-content {
        flex-direction: column;
    }
}


/* Page Header */
.page-header {
    position: relative;
    background: url("assets/img/bg/1.jpg") center/cover no-repeat;
    min-height: 280px;
    display: flex;
    align-items: center;
    color: #fff;
     margin-top: 120px;
}

/* Dark overlay */
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Content */
.page-header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 20px;
}

/* Title */
.page-header h1 {
    /* font-family: 'Poppins', sans-serif; */
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    display: flex;
    justify-content: center;
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #7bbfff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #eaeaea;
    font-weight: 500;
}

/* Separator */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #ccc;
    margin: 0 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        min-height: 220px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 200px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

/* about section */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
:root {
    /* Colors */
    --primary-blue: #0066cc;
    --secondary-blue: #004d99;
    --accent-blue: #0056b3;
    --dark-blue: #003366;
    --light-blue: #e6f2ff;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --charcoal: #1a1a1a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    --gradient-light: linear-gradient(135deg, var(--light-blue), #d1e7ff);
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Font Weights */
    --thin: 300;
    --regular: 400;
    --medium: 500;
    --semi-bold: 600;
    --bold: 700;
    --extra-bold: 800;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}
/* About Content Sections */
.about-content {
    padding: 100px 0;
}

.content-section {
    margin-bottom: 100px;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: var(--extra-bold);
    color: rgba(0, 102, 204, 0.1);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-top: 10px;
}

.section-body {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.section-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
    background: var(--white);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Vision & Mission Section */
.vision-mission-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.vm-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vision-card {
    border-top: 5px solid var(--primary-blue);
}

.mission-card {
    border-top: 5px solid var(--secondary-blue);
}

.vm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.vm-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: var(--extra-bold);
    color: rgba(0, 102, 204, 0.1);
}

.vm-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.vm-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin-bottom: 25px;
    border-radius: 2px;
}

.vm-text {
    margin-bottom: 20px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.vm-list {
    list-style: none;
    margin-top: 25px;
}

.vm-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark-gray);
}

.vm-list i {
    color: var(--primary-blue);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Values Section */
.values-section {
    margin-bottom: 100px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
    transition: all var(--transition-medium);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.value-text {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    margin-bottom: 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 102, 204, 0.9), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--white);
}

.overlay-content p {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.team-info {
    padding: 30px;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.team-position {
    color: var(--primary-blue);
    font-weight: var(--semi-bold);
    margin-bottom: 15px;
    font-size: 1rem;
}

.team-desc {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1503387769-00a112127ca0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: var(--bold);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.primary-btn {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.primary-btn:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* =========================== */
/* RESPONSIVE DESIGN */
/* =========================== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero::before {
        width: 50%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .vision-mission-section,
    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-body {
        padding: 40px 30px;
    }
    
    .vm-card {
        padding: 40px 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .about-content {
        padding: 80px 0;
    }
    
    .content-section {
        margin-bottom: 80px;
    }
    
    .section-number {
        font-size: 4rem;
        top: -25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .years {
        font-size: 2.5rem;
    }
    
    .badge-content {
        padding: 15px 25px;
    }
    
    .main-image {
        height: 400px;
    }
    
    .back-home-btn {
        top: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 40px;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-body {
        padding: 30px 20px;
    }
    
    .stat-card,
    .value-card {
        padding: 25px 20px;
    }
    
    .vm-card {
        padding: 30px 20px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .back-home-btn {
        top: 15px;
        left: 15px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}


/* products */
 .products-section {
    padding: 60px 0;
    background: #f9fbfd;
    /* max-width: 1200px; */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0b5ed7;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 70px;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-image img {
    width: 100%;
    max-width: 480px;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-content {
    max-width: 520px;
}

.product-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #1f2b4d;
}

.product-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .product-row,
    .product-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .product-content h3 {
        font-size: 24px;
    }
}


/* gallery section */
/* Gallery Section */
.gallery {
    padding: 70px 0;
    background: #f9fbfd;
}

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0b5ed7;
    margin-bottom: 40px;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 9999;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(255,255,255,0.2);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid img {
        height: 200px;
    }

    .section-title {
        font-size: 28px;
    }
}


/* Form Section */
.form {
    padding: 60px 0;
    background: linear-gradient(135deg, #f4f8ff, #ffffff);
    justify-content: center;
    align-items: center;
}

/* Form Card */
.form .section-title {
    max-width: 850px;
    margin: auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.form .container {
    display: flex;
    justify-content: center;
}

.form .section-title {
    width: 100%;
    max-width: 850px;
}
/* Title */
.form .section-title h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0b5ed7;
    margin-bottom: 40px;
}

/* Inputs */
.form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #dce3f1;
    padding: 12px 16px;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: none;
}

.form-control:focus {
    border-color: #0b5ed7;
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
}

/* Description field */
#desc {
    height: 55px;
}

/* Spacing */
.form-group {
    margin-bottom: 22px;
}

/* Captcha image */
.form img {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* Captcha text */
.form .form-group span,
.form .form-group small,
.form .form-group {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
}

/* Button */
.form .btn-primary {
    width: 100%;
    height: 52px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #0b5ed7, #0a58ca);
    border: none;
    transition: 0.3s;
}

.form .btn-primary:hover {
    background: linear-gradient(135deg, #0a58ca, #084298);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(11, 94, 215, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .form .section-title {
        padding: 35px 25px;
    }

    .form .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .form .section-title {
        padding: 30px 20px;
    }

    .form-control {
        height: 48px;
    }
}


/* contact */
/* Section padding */
.section-padding {
    padding: 60px 0;
    background: #ffffff;
}

/* Section title */
.section-title h2 {
    /* font-family: 'Poppins', sans-serif; */
    font-size: 36px;
    font-weight: 700;
    color: #0b5ed7;
    text-align: center;
}
.section-padding .section-title {
    text-align: center;
    width: 100%;
}

/* Contact card */
.contact-info-card {
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover effect */
.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Icon */
.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b5ed7, #084298);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 28px;
    color: #ffffff;
}

/* Headings */
.contact-info-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2b4d;
}

/* Text */
.contact-info-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Buttons */
.btn-elegant,
.btn-gold {
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* Elegant button */
.btn-elegant {
    background: #ffffff;
    color: #0b5ed7;
    border: 2px solid #0b5ed7;
}

.btn-elegant:hover {
    background: #0b5ed7;
    color: #ffffff;
}

/* Gold button */
.btn-gold {
    background: linear-gradient(135deg, #0b5ed7, #033277);
    color: #ffffff;
    border: none;
}

.btn-gold:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .contact-info-card {
        padding: 30px 20px;
    }
}


.top1 {
  position: fixed;
  z-index: 999;
  bottom: 10%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top2 {
  position: fixed;
  z-index: 999;
  bottom: 16%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top3 {
  position: fixed;
  z-index: 999;
  bottom: 22%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top4 {
  position: fixed;
  z-index: 999;
  bottom: 28%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top5 {
  position: fixed;
  z-index: 999;
  bottom: 34%;
  right: 10px;
  width: 35px;
  height: auto;
}


.top6 {
  position: fixed;
  z-index: 999;
  bottom: 40%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top7 {
  position: fixed;
  z-index: 999;
  bottom: 46%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top8 {
  position: fixed;
  z-index: 999;
  bottom: 52%;
  right: 10px;
  width: 35px;
  height: auto;
}
