* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styling */
.navbar-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:65px;
}

.navbar {
    background: #fff;
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-right: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: auto;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #d32f2f;
}

.contact-btn {
    background: linear-gradient(90deg, #b71c1c 0%, #00acc1 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    /* Replace with actual background image */
    background: url('https://srivaarahi.in/assets/images/banner/Ananta-hero-banner.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-flex {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 216px;
}

/* Hero Left Content */
.hero-text {
    flex: 1;
}

.tagline {
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.dot {
    width: 15px;
    height: 15px;
    border: 3px solid #d32f2f;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.services-list {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 30px;
}

.btn-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.btn-link i {
    margin-right: 8px;
    font-size: 12px;
}

/* Hero Right Card */
.hero-card {
    flex: 0 0 400px;
    border: 8px solid #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 25px;
    text-align: center;
}

.ananta-logo {
    margin-bottom: 15px;
}

.ananta-logo p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00acc1;
    margin-top: 5px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.card-content .subtitle {
    font-size: 12px;
    margin-bottom: 15px;
    color: #ccc;
}

.location {
    font-size: 12px;
    margin-bottom: 20px;
    color: #d32f2f;
}

.view-project-btn {
    background-color: #d32f2f;
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.view-project-btn i {
    font-size: 11px;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar-container {
        flex-direction: column;
    }
    .navbar {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
    .hero-flex {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    .hero-text h1 { font-size: 40px; }
    .hero-text p { margin: 0 auto 30px; }
    .hero-card { flex: none; width: 100%; max-width: 400px; }
    .tagline { justify-content: center; }
    .btn-link { justify-content: center; }
}



/* About Section Styling */
.about-section {
    background-color: #ffffff; /* Section background is white */
    padding: 100px 0;
    color: #333;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text { flex: 1; }
.about-image { flex: 1; }

.about-tag {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #1a2a3a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* Stats Styling */
.stats-row {
    display: flex;
    gap: 50px;
    margin: 40px 0;
}

.stat-item {
    padding-left: 20px;
    border-left: 3px solid #d32f2f; /* Red vertical line from image */
}

.stat-item h3 {
    font-size: 42px;
    color: #1a2a3a;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.red-btn {
    display: inline-flex;
    align-items: center;
    background-color: #d32f2f;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .about-flex { flex-direction: column; }
    .about-text h2 { font-size: 36px; }
}

/* Footer Styling */
.main-footer {
    background-color: #f4f7f9; /* Light grey background as seen in image */
    padding: 80px 0 50px 0;
    color: #777; /* Soft grey text for disclaimer */
    text-align: center;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px; /* Adjust based on your logo proportions */
    width: auto;
}

.footer-disclaimer {
    max-width: 1100px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: #888;
    text-align: center;
}

/* White Pill Copyright Bar */
.footer-copyright-bar {
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 40px;
    border-radius: 10px; /* Rounded corners */
    font-size: 14px;
    color: #555;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Very subtle shadow */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .footer-disclaimer p {
        font-size: 12px;
        text-align: justify;
    }
    
    .footer-copyright-bar {
        width: 90%;
        padding: 15px 20px;
        font-size: 12px;
    }
}
/* =========================================
   PORTFOLIO SECTION - MASTERPIECES
   ========================================= */

.portfolio-section {
    background-color: #f4f9ff; /* Light blue-white background */
    padding: 80px 0;
    text-align: center;
}

/* Section Header */
.section-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.portfolio-tag {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    height: 350px; /* Decreased height */
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

/* Card Overlay Content */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7)); /* Gradient for better text legibility */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    color: #fff;
    text-align: center;
}

.card-overlay h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.card-overlay p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 280px;
}

.details-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.details-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.details-link:hover {
    color: #d32f2f;
}

.details-link:hover i {
    transform: translateX(4px);
}

/* Bottom View Project Button */
.section-footer {
    margin-top: 30px;
}

.view-all-btn {
    background-color: #d32f2f;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.view-all-btn:hover {
    background-color: #b71c1c;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

/* Responsive Breakpoints */

/* Tablets */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .section-header h2 {
        font-size: 36px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 30px auto;
    }
    
    .portfolio-card {
        height: 300px; /* Even shorter for mobile */
    }

    .section-header h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

/* Ongoing Projects Section Styles */
.ongoing-projects {
    background-color: #242f3d; /* Dark Blue-Gray Theme */
    padding: 100px 0;
    color: #ffffff;
}

/* Header */
.ongoing-header {
    text-align: center;
    margin-bottom: 80px;
}

.featured-tag {
    color: #d32f2f;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ongoing-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 10px;
}

.ongoing-header .section-subtitle {
    color: #a0aec0;
    font-size: 16px;
}

/* Row Layout */
.project-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.project-row:last-child {
    margin-bottom: 0;
}

/* Image Card Styling */
.project-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.card-footer-content {
    padding: 30px;
}

.location-label {
    color: #d32f2f;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.card-footer-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.card-brief {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.6;
}

/* Matter (Text) Styling */
.project-info {
    flex: 1.1;
}

.project-info h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.desc-body p {
    color: #cbd5e0;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Meta Data Table */
.meta-table {
    display: flex;
    gap: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-bottom: 35px;
}

.meta-col {
    display: flex;
    flex-direction: column;
}

.meta-label {
    color: #718096;
    font-size: 13px;
    margin-bottom: 5px;
}

.meta-value {
    font-weight: 600;
    font-size: 16px;
}

/* Red View Project Button */
.project-btn {
    background-color: #d32f2f;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 0;
    width: 100%;
    max-width: 480px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.project-btn:hover {
    background-color: #b71c1c;
}

/* Responsive - Mobile & Tablet */
@media (max-width: 1024px) {
    .project-row {
        flex-direction: column !important; /* Stack everything on mobile */
        gap: 40px;
    }
    
    .project-card, .project-info {
        width: 100%;
    }

    .project-info h2 {
        font-size: 28px;
    }
}
/* Video Gallery Section Styling */
.video-gallery-section {
    background-color: #ffffff; /* White background as per image */
    padding: 100px 0;
    text-align: center;
}

.video-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.media-tag {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.video-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a2a3a;
    margin-bottom: 15px;
}

.video-subtitle {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Video Grid Layout */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two videos side by side */
    gap: 40px;
    padding: 0 20px;
}

/* The "Card" Look from the image */
.video-card {
    background: #fff;
    border: 10px solid #fff; /* Thick white border from image */
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Soft shadow */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

/* Aspect Ratio for YouTube Embeds */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px; /* Internal rounding */
}

/* Responsive Logic */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr; /* Stack videos on tablets and mobile */
        max-width: 600px;
        margin: 0 auto;
    }
    
    .video-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .video-gallery-section {
        padding: 60px 0;
    }
    
    .video-card {
        border: 6px solid #fff; /* Slightly thinner border on small phones */
    }
}

/* Testimonials Styling */
.testimonials-section {
    background-color: #f4f9ff;
    padding: 80px 0;
    text-align: center;
}

.testimonial-header {
    margin-bottom: 50px;
}

.testimonial-tag {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonial-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.testimonial-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
}

/* Slider Layout */
.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    width: 100%;
}

.testimonial-item {
    flex: 0 0 calc(50% - 15px); /* Show two cards on desktop */
    text-align: center;
}

.testimonial-bubble {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

/* Speech Bubble Tail */
.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.02));
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-bubble p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    font-style: normal;
}

.author-info h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Arrows */
.slider-arrow {
    background: none;
    border: none;
    color: #d32f2f;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-arrow:hover {
    transform: scale(1.2);
}

.slider-dots {
    margin-top: 30px;
}

.slider-dots .dot {
    height: 8px;
    width: 8px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

.slider-dots .dot.active {
    background-color: #333;
    width: 12px;
    border-radius: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .testimonial-item {
        flex: 0 0 100%; /* Show one card on tablets/phones */
    }
    .testimonial-slider-wrapper {
        padding: 40px 20px;
    }
}
/* FAQ Section Styling */
.faq-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-tag {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a2a3a;
    margin-bottom: 15px;
}

.faq-header p {
    color: #666;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Accordion Container */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Soft shadow like image */
    border: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-icon {
    margin-right: 15px;
    font-size: 14px;
    color: #333;
    width: 20px;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Answer Styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    background-color: #fff;
    padding: 0 25px 0 60px; /* Aligned with text */
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 200px; /* Sufficient height for text */
    padding: 0 25px 20px 60px;
}

.faq-item.active .faq-question h3 {
    font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .faq-header h2 { font-size: 32px; }
    .faq-question h3 { font-size: 14px; }
}
/* Advantage Section Styling */
.advantage-section {
    background-color: #f4f9ff; /* Light blue-white background from image */
    padding: 100px 0;
    text-align: center;
}

.advantage-header {
    margin-bottom: 60px;
}

.advantage-tag {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.advantage-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a2a3a;
    margin-bottom: 15px;
}

.advantage-header p {
    color: #666;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid Layout */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 25px;
}

/* Advantage Card Styling */
.advantage-card {
    background: #ffffff;
    padding: 25px 25px;
    border-radius: 25px; /* Rounded corners like image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Subtle soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 40px;
    color: #d32f2f; /* Red icon color */
    margin-bottom: 25px;
}

.advantage-card h3 {
    font-size: 18px;
    color: #1a2a3a;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.advantage-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* Responsive Adjustments */

/* Tablets */
@media (max-width: 1024px) {
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    }
}

/* Mobile Phones */
@media (max-width: 600px) {
    .advantage-grid {
        grid-template-columns: 1fr; /* Stack 1x1 */
    }
    
    .advantage-header h2 {
        font-size: 32px;
    }
    
    .advantage-section {
        padding: 60px 0;
    }
}
/* Blog Section Styling */
.blog-section {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.blog-header {
    margin-bottom: 60px;
}

.blog-tag {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.blog-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a2a3a;
    margin-bottom: 15px;
}

.blog-header p {
    color: #666;
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 35px; /* Large rounded corners from image */
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.blog-img {
    width: 100%;
    padding: 20px; /* Padding inside the card for the image */
}

.blog-img img {
    width: 100%;
    border-radius: 25px; /* Rounded image corners */
    display: block;
    object-fit: cover;
}

.blog-content {
    padding: 10px 30px;
}

.blog-content h3 {
    font-size: 20px;
    color: #1a2a3a;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .blog-header h2 {
        font-size: 32px;
    }
}
/* Contact Section Styling */
.contact-section {
    background-color: #ffffff;
    padding: 100px 0;
    color: #333;
}

.contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* Left Content */
.contact-info {
    flex: 1;
}

.contact-tag {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #1a2a3a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 45px;
    max-width: 500px;
}

/* Info Items */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    background-color: #fff;
    color: #d32f2f;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.info-text h4 {
    font-size: 18px;
    color: #1a2a3a;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Form Card */
.contact-form-card {
    flex: 0 0 450px;
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08); /* Stronger shadow like image */
    border: 1px solid #f0f0f0;
}

.form-logo {
    text-align: center;
    margin-bottom: 30px;
}

.form-logo img {
    height: 40px;
    display: block;
    margin: 0 auto 5px;
}

.form-logo span {
    font-size: 10px;
    text-transform: uppercase;
    color: #00acc1;
    letter-spacing: 1px;
}

.contact-form-card h3 {
    font-size: 24px;
    color: #1a2a3a;
    margin-bottom: 5px;
}

.contact-form-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* Form Inputs */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 14px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9; /* Light grey inputs */
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.submit-btn {
    width: auto;
    background-color: #d32f2f;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #b71c1c;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-flex {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-form-card {
        width: 100%;
        flex: none;
    }
    
    .contact-info h2 {
        font-size: 36px;
    }
}
/* Updated Site Footer Styling */
.site-footer {
    background-color: #f4f9ff; /* Light blue tint matching image */
    padding: 80px 0 0 0;
    color: #555;
    border-top: 1px solid #eef2f6;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

/* Brand Column Adjustments */
.brand-col {
    flex: 2; /* Makes the description column wider */
    max-width: 450px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 25px;
    display: block;
}

.brand-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    max-width: 380px;
}

/* Heading & Links Styling */
.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d32f2f; /* Brand Red on hover */
}

/* Bottom Bar Styling */
.footer-bottom {
    background-color: #e9f2fb; /* Slightly darker light blue/grey bar */
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #555;
    margin: 0;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-flex {
        flex-direction: column;
        gap: 50px;
        text-align: left;
    }
    
    .brand-col {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-flex {
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 25px;
    }
}
/* 1. Default State: Hide Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    margin-left: auto; /* Pushes hamburger to the right on mobile */
}

/* 2. Mobile Menu Styles (Less than 1025px) */
@media (max-width: 1024px) {
    .navbar-container {
        width: 90%; /* Increase width for tablet/mobile */
        gap: 20px;
    }

    .hamburger {
        display: block; /* Show hamburger */
    }

    .nav-links {
        position: absolute;
        top: 70px; /* Position below the white navbar */
        right: 0;
        background-color: #ffffff;
        width: 250px;
        flex-direction: column;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        padding: 20px 0;
        display: none; /* Hidden by default */
        text-align: left;
    }

    .nav-links.active {
        display: flex; /* Show when 'active' class is toggled */
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 30px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    /* Keep Contact Button visible but adjust size */
    .contact-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
/* Banner (Hero) Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero {
        height: auto; /* Let content dictate height on mobile */
        min-height: 100vh;
        padding: 140px 0 60px 0; /* Space for navbar + bottom padding */
        display: block; /* Change from flex to block for easier scrolling */
    }

    .hero-flex {
        flex-direction: column; /* Stack text above card */
        gap: 50px; /* Reduce the large 216px gap */
        text-align: center;
        align-items: center;
    }

    .hero-text {
        width: 100%;
    }

    .tagline {
        justify-content: center; /* Center the tag with the dot */
    }

    .hero-text h1 {
        font-size: 34px; /* Scale down from 60px */
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-text p {
        margin: 0 auto 25px; /* Center paragraph */
        font-size: 14px;
        max-width: 100%;
    }

    .btn-link {
        justify-content: center; /* Center the "Know About Us" link */
        margin-bottom: 20px;
    }

    .hero-card {
        flex: none;
        width: 100%;
        max-width: 420px; /* Prevent card from being too wide on tablets */
        margin: 0 auto;
        border-width: 4px; /* Thinner border for smaller screens */
    }

    .card-image img {
        height: 320px; /* Reduce image height to save vertical space */
    }

    .card-content {
        padding: 15px;
    }

    .card-content h3 {
        font-size: 16px;
    }
}

/* Extra small devices (Phones) */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-card {
        max-width: 100%;
    }
}