      * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    /* Soft gradient background */
    background: radial-gradient(circle at top right, #fff9e6 0%, #ffffff 40%, #eef2ff 100%);
    min-height: 100vh;
    color: #1a1a1a;
}
/* --- Existing Desktop Styles from before --- */
/* (Add these rules at the bottom of your CSS file) */

/* TABLET RESPONSIVE (Max 1024px) */
@media (max-width: 1024px) {
    header {
        padding: 20px 40px;
    }
    .hero h1 {
        font-size: 60px; /* Font thoda chota kiya */
    }
}

/* MOBILE RESPONSIVE (Max 768px) */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        position: relative;
    }

    /* Hide Desktop Nav Links initially on mobile */
    nav {
        display: none; 
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 100;
    }

    /* Show nav when 'active' class is added via JS */
    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column; /* Links ko upar-neeche kiya */
        background: transparent;
        gap: 10px;
    }

    nav ul li a {
        display: block;
        text-align: center;
        padding: 12px;
    }

    /* Hide Header Contact Button on very small screens to save space */
    .btn-nav {
        display: none; 
    }

    /* Hamburger Menu Icon */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        border-radius: 2px;
    }

    /* Hero Section Adjustments */
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 38px; /* Mobile ke liye perfect size */
        letter-spacing: -1px;
    }

    .sub-text {
        font-size: 15px;
        br { display: none; } /* Mobile par line break hata diya */
    }

    .btn-primary {
        width: 100%; /* Button full width on mobile */
        justify-content: center;
    }
}
/* --- Header Styles --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: sticky;
    top: 20px;
    border-radius: 58px;
    z-index: 1000;
    max-width: 1373px;
    background: white !important;
    margin: 0 auto;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease-in-out;
}
/* Jab page scroll hoga tab ye class activate hogi (via JS) */
header.scrolled {
    background: white !important; /* White background with blur */
    backdrop-filter: blur(10px) !important;
    border-radius: 50px !important; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 10px 40px; /* Scroll par thoda chota ho jayega */
    margin-top: 10px;
}

/* Baaki aapka purana CSS niche rahega... */
.logo { font-weight: 800; font-size: 24px; letter-spacing: -1px;     width: 12%;}
.logo span { font-size: 10px; display: block; margin-top: -5px; text-align: right; }
nav ul { display: flex; list-style: none; background: rgba(0, 0, 0, 0.05); padding: 6px; border-radius: 50px; }
/* ... (rest of your styles) */

nav ul li a {
    text-decoration: none;
    color: #666;
    padding: 8px 18px;
    font-size: 14px;
    transition: 0.3s;
}

nav ul li a.active {
    background: #2546e3;
    color: white;
    border-radius: 50px;
}

/* --- Buttons --- */
.btn-primary {
    background: #2546e3;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.arrow {
    background: white;
    color: #2546e3;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 200px 20px;
    margin-top: -8%;
    background: radial-gradient(circle at top right, #fff9e6 0%, #ffffff 40%, #eef2ff 100%);
}

.hero h1 {
    font-size: 100px;
    font-weight: 700;
    line-height: 110px;
    margin-bottom: 30px;
    letter-spacing: -6px;
/*     height: 311px; */
}

.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    color: #333;
}

.sub-text {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

/* --- Social Proof --- */
.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}

.rating {
    text-align: left;
}

.stars {
    color: #ffb800;
    display: block;
    font-size: 14px;
}

.score {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* brand */
/* --- Brand Section Styles --- */
.brand-section {
    padding: 60px 0;
    overflow: hidden;
    background: transparent;
}

/* Header with Lines */
.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 0 40px;
}

.brand-header p {
    color: #888;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.brand-header .line {
    height: 1px;
    background: #e0e0e0;
    flex-grow: 1;
    max-width: 300px;
}

/* Slider Container */
.logo-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

/* The Track that moves */
.logo-track {
    display: flex;
    width: calc(250px * 12); /* Logo width * total logos (including duplicates) */
    animation: scroll 30s linear infinite;
}

.logo-item {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
/*     filter: grayscale(100%); /* Logos ko black & white rakha hai jaisa image mein hai */ */
    opacity: 1;
    transition: 0.3s;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item img {
    height: 35px; /* Logo ki height image ke hisab se set ki hai */
    max-width: 150px;
}

/* --- KEYFRAMES FOR INFINITE SCROLL --- */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); } /* Adhe logos ke baad repeat hoga */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .brand-header {
        gap: 10px;
    }
    .brand-header p {
        font-size: 11px;
    }
    .logo-item {
        width: 150px; /* Mobile par width kam kar di */
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 6)); }
    }
}

/* 3rd section */
/* --- Brand Section --- */
.brand-section {
    padding: 40px 0;
    text-align: center;
}
.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.brand-header p {
    color: #888;
    font-size: 14px;
}
.brand-header .line {
    height: 1px;
    background: #eee;
    width: 200px;
}
.logo-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}
.logo-row img { height: 30px; }

/* --- Strategy Section --- */
.strategy-section {
    padding: 50px 20px;
    text-align: center;
}
.strategy-section h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* Pills Styles */
.pill-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 80px;
}
.pill {
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
}
.serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 48px;
    line-height: 50px;
}

.purple { background: #f3ebff; color: #a855f7; }
.blue { background: #e0f2fe; color: #3b82f6; }
.orange { background: #fff7ed; color: #f97316; }

/* Stats Grid */
.stats-grid {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}
.number-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 130px;
    font-weight: 700;
    line-height: 1;
}
.plus {
    font-size: 30px;
    margin-top: 10px;
    margin-right: 5px;
}
.stat-item p {
    color: #2546e3; /* Blue color for text as per image */
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-grid { flex-direction: column; gap: 40px; }
    .strategy-section h2 { font-size: 24px; }
    .pill-container { flex-direction: column; align-items: center; }
}


/* 4th */
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:ital,wght@1,600&display=swap');

.services-wrapper {
    padding: 80px 5%;
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.main-heading {
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    color: #1a1a1a;
}

.italic-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}

/* Bento Grid Setup */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    padding: 40px;
    border-radius: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.icon-box {
    width: 45px;
    height: 45px;
/*     background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Wide card spanning 2 columns */
.wide {
    grid-column: span 2;
}

/* Blue CTA Bar */
.footer-cta-bar {
    background-color: #2546E3;
    border-radius: 20px;
    padding: 35px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.footer-cta-bar p {
    font-size: 24px;
    font-weight: 600;
    max-width: 500px;
    margin: 0;
    line-height: 1.4;
}

.cta-actions {
    display: flex;
    gap: 15px;
}

.btn-filled {
    background: #ffffff;
    color: #2546E3;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow-icon {
    background: rgba(0, 0, 0, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-filled .arrow-icon {
    background: #2546E3;
    color: white;
}

/* Responsive (Mobile & Tablet) */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .wide {
        grid-column: span 1;
    }
    .footer-cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .main-heading {
        font-size: 32px;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-filled, .btn-outline {
        justify-content: center;
    }
}


/* 5th  */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:ital,wght@1,400&display=swap');

.portfolio-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    
}

/* Heading Style */
.portfolio-main-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    line-height: 57px;
    margin-bottom: 60px;
    letter-spacing: -3px;
}

.accent-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #333333;
}

/* Grid Layout */
.projects-display-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}

/* Individual Project Card */
.project-item {
    display: flex;
    flex-direction: column;
}

.img-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    line-height: 0;
    transition: transform 0.3s ease;
}

.img-wrapper:hover {
    transform: translateY(-8px);
}

.img-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Title & Tags */
.item-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: #f3f4f6; /* Light gray background */
    color: #4b5563; /* Darker gray text */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

/* --- Responsive (Mobile & Tablet) --- */
@media (max-width: 992px) {
    .portfolio-main-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .projects-display-grid {
        grid-template-columns: 1fr; /* Mobile par single column */
        gap: 40px;
    }
    
    .portfolio-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .img-wrapper {
        border-radius: 16px;
    }
}

/* 6th section */
/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Playfair+Display:ital,wght@1,400&display=swap');

.testimonial-wrapper {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
   
}

/* Heading */
.testimonial-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    line-height: 1.2;
}

.testimonial-title span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

/* Grid Layout */
.testimonial-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Base Card Style */
.feedback-card {
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.feedback-card .category-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    opacity: 0.7;
    font-weight: 500;
}

/* Card 1: Image Overlay Card */
.card-dark-bg {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.7)), 
                url('http://kiorrastudio.com/wp-content/uploads/2025/12/pyonwhKGuXGqq9SJa9F42EzArSU.avif');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.quote-text-large {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

/* Card 2: Yellow Stat Card */
.card-yellow {
    background-color: #F3E97E;
    color: #1a1a1a;
}

.big-percentage {
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 20px;
    font-weight: 500;
}

/* Card 3: Small Dark Card with Image */
.card-black {
    background-color: #1a1a1a;
    color: #ffffff;
}

.mini-img-preview {
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
}

/* Card 4: Light Purple Text Card */
.card-purple {
    background-color: #E2D4F5;
    color: #1a1a1a;
}

.quote-text-medium {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.user-info {
    margin-top: auto;
}

.user-name {
    display: block;
    font-weight: 700;
}

.user-brand {
    font-size: 14px;
    opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .testimonial-bento-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-title {
        font-size: 34px;
    }
}

/* 7th section */
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:ital,wght@1,400&display=swap');

.faq-wrapper {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Heading */
.faq-main-heading {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 60px;
}

.faq-main-heading span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

/* Accordion List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Card */
.faq-card {
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 25px 30px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    cursor: pointer;
}

/* Active State Styles (matching the first item in image) */
.faq-card.active {
    background-color: #f6f6f6; /* Light gray background */
    border-color: transparent;
}

.faq-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-top h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.faq-toggle {
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
}

/* Content Area */
.faq-content {
    margin-top: 15px;
    display: none; /* Only show when active */
}

.faq-card.active .faq-content {
    display: block;
}

.faq-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    max-width: 85%;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-main-heading {
        font-size: 32px;
    }
    .faq-top h3 {
        font-size: 18px;
    }
    .faq-card {
        padding: 20px;
    }
}

/* cta section */
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:ital,wght@1,400&display=swap');

.final-cta-wrapper {
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.cta-banner-card {
    /* Exact Soft Gradient from Image */
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #fff9f0 100%);
    border-radius: 30px;
    padding: 100px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Heading Styling */
.cta-banner-heading {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.cta-banner-heading span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

/* Subtext Styling */
.cta-banner-subtext {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Button Styling */
.cta-blue-button {
    background-color: #2546e3;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-blue-button:hover {
    background-color: #1e3bb5;
    transform: translateY(-2px);
}

.cta-btn-arrow {
    background-color: #ffffff;
    color: #2546e3;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .cta-banner-heading {
        font-size: 42px;
    }
    .cta-banner-card {
        padding: 80px 20px;
    }
}

@media (max-width: 600px) {
    .cta-banner-heading {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    .cta-banner-subtext {
        font-size: 16px;
    }
    .cta-banner-subtext br {
        display: none; /* Mobile par line break hata diya */
    }
    .cta-blue-button {
        width: 100%;
        justify-content: center;
    }
}
/* footer */
/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.main-footer {
    padding: 80px 7% 40px 0%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    border-top: 1px solid #f0f0f0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* First column is wider */
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Brand Info Column */
.footer-logo {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 20px;
    width: 45%;
}

.footer-logo span {
    font-size: 10px;
    display: block;
    margin-top: -5px;
    text-align: right;
    width: fit-content;
}

.footer-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666666;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #2546e3;
    color: #ffffff;
    border-color: #2546e3;
}

/* Common Column Styles */
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #666666;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #2546e3;
}

.contact-email {
    font-size: 15px;
    color: #666666;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

/* --- Responsive (Mobile & Tablet) --- */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-desc {
        margin: 0 auto 25px auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col h4 {
        margin-top: 20px;
    }
}