/* style.css - KALPATARU GREEN | Premium Agriculture Export */
/* ======================================================== */

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CSS RESET & BASE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary: #ff9800;
    --accent: #8bc34a;
    --text: #333333;
    --text-light: #666666;
    --background: #f9f9f9;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --border: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --gold: #ffd700;
    --navy: #1a237e;
    --teal: #00695c;
    --glass: rgba(255, 255, 255, 0.98);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CSS RESET & BASE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER TOP STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.header-top {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--teal) 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-tagline {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.top-cta:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER TOP STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER MIDDLE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.header-middle {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.header-middle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 250px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.brand-text h1 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.brand-text p {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
}

.contact-info {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 160px;
}

.contact-item:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.contact-item:hover .contact-details h4,
.contact-item:hover .contact-details p {
    color: var(--white);
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

.contact-details h4 {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 2px;
    font-weight: 600;
}

.contact-details p {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER MIDDLE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! NAVIGATION PILL STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.header-nav {
    position: relative;
    padding: 0;
    margin-top: -20px;
    z-index: 1000;
    overflow: visible !important;
}

.nav-pill-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 20px 35px;
    margin: 0 25px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08), 0 12px 35px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: visible;
    min-height: 75px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 20px;
}

.main-nav {
    display: flex;
    gap: 5px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);
    border-color: transparent;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 15px;
    min-width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1100;
    margin-top: 10px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 12px 15px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    color: var(--white);
    transform: translateX(5px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.nav-search {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.appointment-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #ffeb3b 100%);
    color: var(--navy);
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: var(--navy);
    cursor: pointer;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! NAVIGATION PILL STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 0 120px;
    text-align: center;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background: #e68900;
    transform: translateY(-2px);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GENERAL SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--secondary);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GENERAL SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.service-area {
    background-color: #f6f6f6;
    padding: 80px 0;
}

.sg-section-subtitle {
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 600;
}

.sg-section-title {
    font-size: 36px;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 50px;
    text-align: center;
}

.sg-section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--secondary);
    margin: 15px auto 0;
}

.sg-service-box {
    background-color: var(--white);
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

.sg-service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sg-service-box-img {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.sg-service-box-content {
    padding: 30px;
    text-align: center;
}

.sg-service-box-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
}

.sg-service-box-text {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.sg-theme-radius-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sg-theme-radius-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--teal) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    color: var(--white);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! WHY CHOOSE US STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.why-choose {
    background: var(--white);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 15px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! WHY CHOOSE US STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.gallery {
    background: var(--gray-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(46, 125, 50, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CTA SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
    padding: 70px 0;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 18px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CTA SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 14px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SCROLL TO TOP BUTTON STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SCROLL TO TOP BUTTON ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE MEDIA QUERIES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: var(--glass);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 15px;
        z-index: 1000;
    }
    .main-nav.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .sg-section-title {
        font-size: 28px;
    }
    .hero-title {
        font-size: 32px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE MEDIA QUERIES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/* ======================================================== */
/* LOGO REPLACEMENT - HIDE OLD LOGO & ADD NEW LARGE LOGO */
/* ======================================================== */

/* Hide the old logo image completely */
.brand-logo img {
    display: none !important;
}

/* Remove any existing backgrounds and styles */
.brand-logo {
    background: none !important;
    background-color: transparent !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

/* Hide the brand text completely - TEXT REMOVED */
.brand-text {
    display: none !important;
}

/* Make brand container flexible for logo only */
.brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

/* Add new logo as an actual img tag - REPLACES everything */
.brand-logo::after {
    content: '';
    display: block;
    width: 180px;
    height: auto;
    background-image: url('img/websitenewlogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
}

/* Alternative: Direct image insertion if you prefer */
.brand-logo {
    position: relative;
}

.brand-logo:empty::before {
    content: '';
    display: block;
    width: 200px;
    height: 80px;
    background-image: url('img/websitenewlogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* For better sizing - ADJUST THESE VALUES */
.brand {
    flex: 1;
}

.brand-logo {
    width: 220px !important;
    height: 80px !important;
    background: url('img/websitenewlogo.png') no-repeat center center !important;
    background-size: contain !important;
    background-color: transparent !important;
}




/* ======================================================== */
/* LOGO REPLACEMENT - HIDE OLD LOGO & ADD NEW LARGE LOGO */
/* ======================================================== */

/* Hide the old logo image completely */
.brand-logo img {
    display: none !important;
}

/* Remove any existing backgrounds and styles */
.brand-logo {
    background: none !important;
    background-color: transparent !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

/* Hide the brand text completely - TEXT REMOVED */
.brand-text {
    display: none !important;
}

/* Make brand container flexible for logo only */
.brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

/* For better sizing - ADJUST THESE VALUES */
.brand {
    flex: 1;
}

.brand-logo {
    width: 320px !important;    /* ← 220px se 320px kiya */
    height: 100px !important;   /* ← 80px se 100px kiya */
    background: url('img/websitenewlogo.png') no-repeat center center !important;
    background-size: contain !important;
    background-color: transparent !important;
}

/* ======================================================== */
/* RESPONSIVE LOGO - MOBILE PE BHI BADA */
/* ======================================================== */

@media (max-width: 768px) {
    .brand-logo {
        width: 260px !important;   /* Mobile pe bhi bada */
        height: 80px !important;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        width: 220px !important;   /* Chhoti screen pe thoda adjust */
        height: 70px !important;
    }
}



/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT SPECIFICATIONS CSS STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.product-spec-section {
    padding: 70px 0;
    background: #f9fafc;
}

.product-spec-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 30px;
}

.product-spec-image {
    flex: 1 1 40%;
    min-width: 280px;
}

.product-spec-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.product-spec-content {
    flex: 1 1 50%;
    padding: 10px 10px 10px 20px;
}

.product-spec-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.product-spec-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c49a6c;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #c49a6c;
    padding-bottom: 10px;
    display: inline-block;
}

.product-spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.product-spec-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #333;
    display: flex;
    flex-wrap: wrap;
}

.product-spec-list li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #1e3c72;
    width: 140px;
    flex-shrink: 0;
}

.product-spec-btn-wrap {
    margin-top: 10px;
}

.product-spec-btn {
    display: inline-block;
    background: #c49a6c;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #c49a6c;
    letter-spacing: 0.5px;
}

.product-spec-btn:hover {
    background: #1e3c72;
    border-color: #1e3c72;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 60, 114, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .product-spec-wrapper {
        flex-direction: column;
        padding: 20px;
    }
    .product-spec-content {
        padding: 0;
    }
    .product-spec-title {
        font-size: 1.6rem;
    }
    .spec-label {
        width: 120px;
    }
    .product-spec-btn {
        width: 100%;
        text-align: center;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT SPECIFICATIONS CSS ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 70px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Info Box */
.contact-info-box {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    color: #1a2a3a;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #5a6a7a;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #eef3f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b7a4b;
    font-size: 20px;
    transition: 0.3s;
}

.info-item:hover .info-icon {
    background: #2b7a4b;
    color: #fff;
}

.info-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a2a3a;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 15px;
    color: #4a5a6a;
    line-height: 1.5;
    margin: 0;
}

.info-text a {
    color: #2b7a4b;
    text-decoration: none;
    font-weight: 500;
}

.info-text a:hover {
    text-decoration: underline;
}

.contact-social {
    margin-top: 10px;
    display: flex;
    gap: 12px;
}

.contact-social .social-link {
    width: 42px;
    height: 42px;
    background: #eef3f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2a3a;
    font-size: 16px;
    transition: 0.3s;
}

.contact-social .social-link:hover {
    background: #2b7a4b;
    color: #fff;
    transform: translateY(-3px);
}

/* Right Form Box */
.contact-form-box {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 28px;
    color: #1a2a3a;
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: #fafbfc;
    transition: 0.3s;
    outline: none;
    color: #1a2a3a;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2b7a4b;
    box-shadow: 0 0 0 4px rgba(43, 122, 75, 0.1);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px 20px;
    background: #2b7a4b;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #1f5f3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 122, 75, 0.25);
}

.submit-btn i {
    font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    .contact-info-box,
    .contact-form-box {
        padding: 25px 20px;
    }
    .section-title {
        font-size: 26px;
    }
    .contact-form-box h3 {
        font-size: 24px;
    }
    .info-item {
        gap: 14px;
    }
    .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 17px;
    }
    .submit-btn {
        font-size: 15px;
        padding: 14px;
    }
}