/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Slider container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Slides */
.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

/* Active slide */
.hero-slider .slide.active {
    opacity: 1;
}

/* Ensure content stays above images */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Default */
.hero-title {
    font-size: 64px;
    font-weight: 800;
}





.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    z-index: 2;
    position: relative;
    padding-bottom: 100px;
    margin-left: 40px;
}

.hero-text {
    /* color: rgb(2, 8, 87); */
    margin-top: 140px;
    color: white;
}

.hero-title {
    font-size: 7.8rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 5px;
    /* margin-top: 20px; */
    /* margin-bottom: 10px; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title .highlight {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    /* color:  rgb(2, 8, 87); */
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.btn-primary-1 {
    /* background: rgb(2, 8, 87); */
    color: white;
    background: #12B7C1;
    width: 240px;
}

.btn-primary-1:hover {
    /* background: rgb(2, 8, 87); */
    background: #12B7C1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
    /* background: transparent; */
    color: rgb(2, 8, 87);
    /* border: 2px solid rgb(2, 8, 87); */
    background: #ffffff;
    /* color:  #12B7C1; */
    border: 2px solid #ffffff;
    width: 240px;
}

.btn-secondary:hover {
    background: white;
    /* color: rgb(2, 8, 87); */
    transform: translateY(-2px);
}

/* Hero Image */
img.fish-img {
    width: 100%;
    height: 100%;
    margin-top: 70px;

}

/* Responsive Design */

@media (max-width: 768px) {
    .header-wrapper {
        /* padding: 10px 15px 0; */
        min-height: 60px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background: #9be5f1;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 80px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        font-size: 16px;
        color: #2C3E50;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1100;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* Animate toggle (X icon) */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

}

/* Hide mobile slider by default */
.mobile-slider {
    display: none;
}

/* Show mobile slider only on small screens */
@media (max-width: 768px) {
    .desktop-slider {
        display: none;
    }

    .mobile-slider {
        display: block;
    }

    

}

@media (max-width: 480px) {


    .hero-content {
        display: flex;
        flex-direction: column;
        /* Stack text and image */
        align-items: center;
        justify-content: center;
        gap: 30px;
        /* space between text and image */
        margin-top: 60px;
        margin-left: 0px;
        text-align: center;
    }


    .header-container {
        padding: 12px 15px;
    }

    .logo-title {
        font-size: 16px;
    }

    .logo-subtitle {
        font-size: 8px;
    }

    /* Text Section */
    .hero-text {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-top: 8px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 12px 0 20px;
        text-align: center;
    }

    /* Buttons */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px;
        font-size: 1rem;
    }

    /* Image */
    .fish-img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    /* Optional: if you have a background overlay */
    .hero::after {
        height: 100px;
    }

    
}


/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .header-wrapper {
        padding: 12px 18px 0;
        min-height: 70px;
    }

    .nav-list {
        gap: 25px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero::after {
        height: 150px;
    }
}


/* about us / why choose us */
/* .container {
            max-width: 1600px !important;
            margin: 0 auto;
            padding: 0 60px;
            margin-left: 50px !important;
    margin-right: 50px !important;
           
        } */
.container {
    width: 100%;
    /* Ensure full width */
    max-width: 100%;
    /* Override the 1600px limit */
    margin: 0 auto;
    /* Center the container without fixed margins */
    padding: 0 15px;
    /* Default padding for smaller screens */
    box-sizing: border-box;
    /* Ensure padding doesn't add to width */
}

/* About Us Section */
.about-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    /* padding-bottom: 80px; */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text {
    padding-left: 20px;
}

.section-label {
    font-size: 14px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-size: 2.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-description:last-of-type {
    margin-bottom: 35px;
}

.shop-now-btn {
    background: #2c3e50;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-now-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

/* Why Choose Section */
.why-choose-section {
    padding: 20px 0;
    position: relative;
    padding-bottom: 60px;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border-radius: 30px;
    background: linear-gradient(to right, rgb(188, 244, 255) 0%, rgb(244, 253, 255) 100%);
    padding-left: 40px;
}

.why-choose-text {
    padding-right: 20px;
}

.why-choose-label {
    font-size: 14px;
    /* color: #4ecdc4; */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 40px;
    line-height: 1.2;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    /* background: #4ecdc4; */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.feature-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    /* border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}


@media (min-width: 769px) {
    .container {
        padding: 0 60px;
        /* Larger padding for desktop screens */
    }
}

@media (max-width: 1920px) {
    .container {
        width: 1600px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        /*padding: 0 40px !important;*/
        box-sizing: border-box !important;

    }

}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        /* Adjusted padding for tablets */
    }

    .about-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 30px;
    }

    .about-text,
    .why-choose-text {
        padding: 0;
    }

    .section-title,
    .why-choose-title {
        font-size: 2rem;
    }

    .about-section,
    .why-choose-section {
        padding: 60px 0;
    }

    .features-list {
        gap: 25px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title,
    .why-choose-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 15px;
    }

    .shop-now-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .about-section,
    .why-choose-section {
        padding: 50px 0;
    }
}

/* ----------------------------------------------------------------------------------------------------------- */
.popular-products-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header-left h3 {
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header-left h2 {
    color: #051769;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.view-all-btn {
    background-color: #051769;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: #051769;
    transform: translateY(-2px);
}

/* Fish Categories Carousel */
.fish-categories {
    margin-bottom: 50px;
    position: relative;
}

.categories-container {
    overflow: hidden;
    /* padding: 0 50px; */
}

.categories-scroll {
    display: flex;
    /* gap: 40px; */
    transition: transform 0.5s ease;
    align-items: center;
    justify-content: space-between;
    will-change: transform;
}

.category-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;

    /* min-width: 80px; */
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    transform: scale(1.1);
}

.category-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: capitalize;
}

.feature-product-icon {
    width: 90px;
    height: 65px;
    /* background: #4ecdc4; */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #051769;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #2a4d7a;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.categories-scroll {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.category-item {
    /* min-width: 10%;  */
    text-align: center;
    box-sizing: border-box;
    margin-right: 40px;
}


/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Discount Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFD700;
    color: #333;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-badge::before {
    content: '🔥';
    font-size: 14px;
}

/* Product info overlay */
.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    z-index: 2;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-price {
    margin-bottom: 12px;
}

.current-price {
    font-weight: 700;
    color: #FFE066;
    font-size: 16px;
}

/* Actions */
.product-actions {
    display: flex;
    gap: 8px;
}

.product-actions .btn {
    padding: 8px 12px;
    font-size: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background: #051769;
    color: white;
    flex: 1;
}

.btn-primary:hover {
    background: #3db8b3;
}

.btn-cart {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cart:hover {
    background: rgba(255, 255, 255, 0.3);
}


/* Actions */
.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    padding: 8px 14px;
    font-size: 11px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy {
    background: #FFE066;
    color: #333;
    flex: 1;
}

.btn-cart {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}


@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header-left h2 {
        font-size: 28px;
    }

    .categories-scroll {
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* .carousel-btn {
                display: none;
            } */
}


/* ------------------------------------------------------------------------------------------------------ */
.promotional-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.promotional-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: 500px;
}

/* Left Combined Banner - 50% Deal + Fish Display */
.left-combined-banner {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    position: relative;
}

/* Deal Section (Left part of left banner) */
.deal-section {
    padding: 140px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}



.deal-header {
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-percentage {
    font-size: 80px;
    font-weight: 900;
    color: #3498db;
    line-height: 0.8;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

.deal-description {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.shop-now-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-now-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

/* Fish Display Section (Right part of left banner) */
.fish-display-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fish-arrangement {
    width: 100%;
    height: 100%;
    background-image: url('../img/home/new.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Right Banner - Salaya Fish Offer */
.salaya-banner {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.salaya-image {
    flex: 1;
    background-image: url('../img/home/image-11.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.salaya-info {
    padding: 20px;
    background: white;
}

.salaya-offer {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 5px;
}

.salaya-percentage {
    font-size: 42px;
    font-weight: 800;
    color: #3498db;
    line-height: 1;
}

.salaya-fish {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.daily-offer {
    color: #ff6b6b;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.price-section {
    background-color: #2c5282;
    margin: 0 -20px -20px -20px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.weight-price {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.shop-now-small {
    background-color: white;
    color: #2c5282;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-now-small:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promotional-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 30px;
    }

    .left-combined-banner {
        height: 300px;
        grid-template-columns: 1fr 1.2fr;
    }

    .salaya-banner {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .promotional-section {
        padding: 40px 0;
    }

    .left-combined-banner {
        grid-template-columns: 1fr;
        height: auto;
    }

    .deal-section {
        padding: 30px 25px;
    }

    .fish-display-section {
        min-height: 200px;
    }

    .deal-percentage {
        font-size: 60px;
    }

    .salaya-percentage {
        font-size: 36px;
    }

    .salaya-fish {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .deal-section {
        padding: 25px 20px;
    }

    .deal-percentage {
        font-size: 50px;
    }

    .salaya-percentage {
        font-size: 32px;
    }

    .salaya-info {
        padding: 15px;
    }
}


/* ----------------------------------------------------------------------------------------------- */

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #051769;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    min-height: 500px;
    margin-top: 20px;
}

.map-section {
    flex: 1;
    position: relative;
    background: #051769;
    padding: 40px 40px;
}

.map-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px 0 0 20px;
}

.form-section {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 20px;
}

.form-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 1920px) {
    .contact-container {
        max-width: 1600px;
        margin: 0 auto;
        background-color: #051769;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        display: flex;
        min-height: 500px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        /* margin: 10px; */
    }

    .map-section {
        height: 300px;
    }

    .map-iframe {
        border-radius: 20px 20px 0 0;
    }

    .form-section {
        padding: 40px 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-title {
        font-size: 1.8rem;
    }
}

/* Custom scrollbar for textarea */
.form-textarea::-webkit-scrollbar {
    width: 6px;
}

.form-textarea::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.form-textarea::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.form-textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}


.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e6f7ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.trust-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Text Area */
.trust-text {
    flex: 1;
}

.trust-label {
    background: #00a8cc;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.trust-text h2 {
    font-size: 42px;
    color: #003049;
    margin-bottom: 20px;
}

.trust-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Stats */
.trust-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    /* flex-wrap: wrap; */
}

.stat-box {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    margin-left: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-8px);
}

.stat-box h3 {
    color: #00a8cc;
    font-size: 24px;
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 14px;
    color: #777;
}

/* Button */
.trust-btn {
    display: inline-block;
    background: #0077b6;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.trust-btn:hover {
    background: #023e8a;
}

/* Image */
.trust-image {
    flex: 1;
    position: relative;
}

.trust-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #ff6b6b;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .trust-stats {
    /* display: flex; */
    gap: 0px;
    margin-bottom: 30px;
    /* flex-wrap: wrap; */
}
    .stat-box {
    background: #ffffff;
    /* padding: 20px 25px; */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
}

}

/* Responsive */
@media (max-width: 992px) {
    .trust-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
}