/* =========================================
   1. CORE & RESET
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* =========================================
   2. NAVBAR & NAVIGATION
   ========================================= */
.siva-navbar {
    background: #000 !important; /* Pure black for original feel */
    height: 70px; /* Reduced height to match previous design */
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo span { color: #f39c12; } /* Orange/Gold color */

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    transition: 0.3s;
    display: block;
}

.nav-links:hover { color: #f39c12; }

/* Hamburger Menu Icon */
.menu-toggle {
    display: none; /* Hide on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Dropdowns & Submenus */
.nav-item-dropdown { position: relative; }

/* Desktop-il matum hover panna open aagum */
@media (min-width: 769px) {
    .dropdown-content, .nested-submenu {
        display: none;
        position: absolute;
        background-color: #111;
        min-width: 200px;
        top: 100%;
        left: 0;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
        list-style: none;
        padding: 10px 0;
    }

    /* Nested Menu (Monuments) Right side-il thirakka */
    .has-submenu .nested-submenu {
        top: 0;
        left: 100%;
    }

    .nav-item-dropdown:hover > .dropdown-content { display: block; }
    .has-submenu:hover > .nested-submenu { display: block; }
}

/* Common Dropdown Links */
.dropdown-content li a, .nested-submenu li a {
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content li a:hover { background: #f39c12; color: #000; }

/* =========================================
   MOBILE RESPONSIVE NAVIGATION (FIXED)
   ========================================= */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-menu {
        display: none; /* JS control panna active class add aagum */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        border-top: 1px solid #222;
    }

    .nav-menu.active { display: flex; }

    .nav-links {
        padding: 15px 20px;
        border-bottom: 1px solid #111;
    }

    /* Mobile-il sub-menu gap illamal irukka */
    .dropdown-content, .nested-submenu {
        position: static;
        display: none; /* JS open class add panna show aagum */
        background: #111;
        box-shadow: none;
    }

    .dropdown-content.open, .nested-submenu.open { display: block !important; }

    .dropdown-content li a { padding-left: 40px; }
    .nested-submenu li a { padding-left: 60px; }
}

/* =========================================
   3. HERO VIDEO SLIDER
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    background: #000;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.slide-badge {
    width: 110px;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-content h1 span { color: #f39c12; }

.btn-slider {
    background: #f39c12;
    color: #1a1a1a;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-slider:hover { background: #fff; }

/* =========================================
   4. ABOUT SECTION
   ========================================= */
.about-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.about-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 15px 15px 0px #f39c12;
}

.main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #1a1a1a;
}

.main-title span { color: #f39c12; }

/* =========================================
   5. MOBILE VIEW (960px)
   ========================================= */
@media screen and (max-width: 960px) {
    .menu-toggle { display: flex; } /* Show hamburger icon */

    .nav-menu {
        position: fixed;
        left: -100%; 
        top: 80px;
        flex-direction: column;
        background: #1a1a1a;
        width: 100%; 
        height: 100vh;
        transition: 0.4s;
        text-align: center;
    }

    .nav-menu.active { left: 0; } /* Show menu when active */

    .nav-links {
        padding: 20px;
        font-size: 1.3rem;
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-slider { height: 60vh; }

    .dropdown-content {
        position: relative;
        text-align: center;
        width: 100%;
        box-shadow: none;
    }
}
/* =========================================
   1. HERO VIDEO SLIDER (Height Fix)
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh; /* 100vh-il irunthu 70vh-ku kuraitthullen - Video ippo correct size-il irukkum */
    background: #000;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

/* =========================================
   2. STATS & GRAPHS (Alignment Fix)
   ========================================= */
.stats-dashboard {
    padding: 60px 20px;
    background-color: #111;
    color: #fff;
    text-align: center;
}

.stats-dashboard .container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap; /* Elements sariyaaga align aaga */
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: #1b1b1b;
    padding: 30px;
    border-radius: 15px;
    flex: 1; /* Equal width charts */
    min-width: 300px; /* Mobile-il oru card perusa theriya */
    max-width: 550px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.chart-container {
    position: relative;
    height: 250px; /* Graph height-ai sariyaaga fix seithullen */
    width: 100%;
    margin-bottom: 20px;
}

.counter-box {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.counter-item .count {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffcc00;
    display: block;
}

/* =========================================
   3. MOBILE RESPONSIVE FIX
   ========================================= */
@media screen and (max-width: 768px) {
    .hero-slider {
        height: 50vh; /* Mobile-il innum konjam chinna video height */
    }

    .stats-grid {
        flex-direction: column; /* Mobile-il cards ondrukku keezh ondru varum */
        align-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }
}
/* =========================================
   1. HERO VIDEO SLIDER (Fit & Gap Fix)
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh; /* Laptop height */
    background: #000;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ithu thaan video-vai stretch aagama fit pannum */
    z-index: 1;
}

/* Video-vukku mela irukkum dark layer */
.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay to make text readable */
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

/* =========================================
   2. MOBILE VIEW GAP FIX
   ========================================= */
@media screen and (max-width: 768px) {
    .hero-slider {
        height: 50vh; /* Mobile height */
        margin-top: 0; /* Gap mela irunthaal ithu sari pannum */
    }

    .siva-navbar {
        border-bottom: none; /* Navbar gap fix */
    }

    /* Container gaps-ai reset panna */
    .container, .nav-container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
    }

    /* Sections-ku naduvil ulla gap-ai kuraikka */
    .about-section, .stats-dashboard, .product-scroll-container {
        padding-top: 50px;
        padding-bottom: 50px;
        margin: 0;
    }

    .about-grid {
        gap: 20px;
    }
}

/* =========================================
   3. GRAPH ALIGNMENT (Side-by-Side)
   ========================================= */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.stat-card {
    background: #1b1b1b;
    padding: 20px;
    border-radius: 12px;
    flex: 1 1 450px; /* Laptop-il side-by-side, mobile-il full width */
    max-width: 550px;
}

.chart-container {
    height: 250px; /* Responsive height for charts */
    width: 100%;
}@media screen and (max-width: 960px) {
    /* Navbar Toggle Setup */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #1a1a1a;
        width: 100%;
        height: calc(100vh - 80px); /* Full screen minus navbar height */
        transition: 0.4s ease;
        padding-top: 20px;
        overflow-y: auto; /* Menu perusa iruntha scroll aagum */
    }

    .nav-menu.active {
        left: 0;
    }

    /* Main Menu Items */
    .nav-links {
        padding: 15px 0;
        width: 100%;
        display: block;
        text-align: center;
        font-size: 1.2rem;
    }

    /* Submenu (Dropdown) Styling */
    .nav-item-dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        display: none; /* JavaScript toggle panni block-aagum */
        position: relative; /* Absolute-ai relative-aaga mathanum */
        width: 100%;
        background: #252525; /* Subtle background color difference */
        top: 0;
        box-shadow: none;
        padding: 10px 0;
    }

    .dropdown-content li {
        width: 100%;
    }

    .dropdown-content li a {
        padding: 12px 0 !important;
        font-size: 1rem !important;
        text-align: center;
        color: #ffcc00; /* Submenu items highlight kaga gold color */
        border-bottom: 1px solid #333;
        width: 80%; /* Center-il neat-ah theriya */
        margin: 0 auto;
    }

    .dropdown-content li:last-child a {
        border-bottom: none;
    }
}
.product-scroll-container {
    padding: 60px 0;
    background: #fff;
    overflow: hidden; /* Ithuvae romba mukkiyam */
    width: 100%;
}

.scroll-title {
    text-align: center;
    margin-bottom: 30px;
}

.product-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.product-track {
    display: flex;
    /* 250px (image) + 30px (margin) = 280px per slide. 
       5 slides irunthaal: 280 * 5 = 1400px. 
       Infinite loop-kaga athai double pannanum: 2800px */
    width: 2800px; 
    animation: scrollInfinite 20s linear infinite;
}

.product-slide {
    width: 250px;
    height: 180px;
    margin: 0 15px;
    flex-shrink: 0; /* Image size kuraiyama irukka */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Intha animation ezhuthunathaal thaan scroll aagum --- */
@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Moththa track-il paathi thooram nagarnthaal loop continuous-ah theriyum */
        transform: translateX(-1400px); 
    }
}

/* Mouse vecha stop aaga */
.product-slider:hover .product-track {
    animation-play-state: paused;
}
.product-slide {
    width: 300px;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 15px; /* Curved corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-slide:hover {
    transform: translateY(-10px); /* Hover pannum pothu mela varum */
    border-color: #ffcc00;
}

.product-slide img {
    border-radius: 10px;
    margin-bottom: 10px;
}
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.modern-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: 0.3s ease;
    text-align: center;
}

.modern-card:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
}

.card-icon {
    font-size: 40px;
    color: #ffcc00;
    margin-bottom: 20px;
}

.card-info .count {
    font-size: 3rem;
    font-weight: bold;
    color: #1a1a1a;
    display: block;
    line-height: 1;
}

.card-info p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flag-icons p {
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.stock-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #27ae60; /* Green color for 'Live' */
    font-weight: bold;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}/* Milestone Section - Light Theme */
.stats-milestone {
    padding: 100px 0;
    background-color: #fcfcfc; /* Very light grey/white background */
    text-align: center;
    border-top: 1px solid #eee;
}

.milestone-header {
    margin-bottom: 60px;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.milestone-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Soft shadow */
    transition: 0.4s ease;
    border: 1px solid #f0f0f0;
}

.milestone-card:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.m-icon {
    font-size: 35px;
    color: #ffcc00;
    margin-bottom: 20px;
}

.m-data .count {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    line-height: 1;
}

.m-data p {
    font-size: 1rem;
    color: #666;
    font-weight: bold;
    margin-top: 10px;
}

.m-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .m-data .count { font-size: 2.8rem; }
    .stats-milestone { padding: 60px 0; }
}
/* =========================================
   FOOTER STYLES
   ========================================= */
.siva-footer {
    background: #111; /* Dark professional background */
    color: #fff;
    padding: 80px 0 20px;
    border-top: 3px solid #ffcc00;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #ffcc00;
}

.footer-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ffcc00;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #999;
}

.contact-item i {
    color: #ffcc00;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #ffcc00;
    color: #111;
    transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .siva-footer {
        text-align: center;
        padding: 50px 0 20px;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-item {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}
/* =========================================
   TOP PRODUCTS SCROLL SECTION
   ========================================= */
.top-products-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.top-product-header {
    text-align: center;
    margin-bottom: 40px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: #ffcc00;
    margin: 10px auto;
}

/* =========================================
   PRODUCT SCROLL - ALIGNMENT & GAP FIX
   ========================================= */
.product-scroll-container {
    padding: 80px 0; /* Mela keezhe nalla gap */
    background: #ffffff;
    overflow: hidden;
    width: 100%;
}

.scroll-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 800;
}

.product-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.product-track {
    display: flex;
    /* (Card width 300px + Margin 20px) * Number of items */
    /* Infinite loop continuous-ah theriya track width correct-ah irukanum */
    width: calc(320px * 10); 
    animation: scrollInfinite 25s linear infinite;
}

.product-slide {
    width: 300px;
    margin: 0 10px; /* Side gaps correct-ah irukka */
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.product-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.product-slide:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
}

/* --- Smooth Infinite Animation --- */
@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 5)); } /* Exactly half the track */
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .product-slide {
        width: 250px; /* Mobile-il konjam chinna size */
    }
    .product-track {
        width: calc(270px * 10);
    }
    @keyframes scrollInfinite {
        100% { transform: translateX(calc(-270px * 5)); }
    }
}

/* Infinite Animation */
@keyframes scrollProducts {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1240px); } /* Half of total width */
}

/* Pause on hover */
.product-slider:hover .product-track {
    animation-play-state: paused;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .top-products-section { padding: 40px 0; }
    .product-slide { width: 220px; height: 150px; }
    .product-track { width: 2000px; }
    @keyframes scrollProducts {
        100% { transform: translateX(-1000px); }
    }
}
/* Modern About Section */
.about-modern-section {
    padding: 100px 5%;
    background: #fdfdfd;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Visual Effects */
.about-visual {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 80%; height: 80%;
    border: 5px solid #ffcc00;
    z-index: 0;
}

.image-frame img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1a1a1a;
    color: #ffcc00;
    padding: 25px;
    text-align: center;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge .years { font-size: 2.5rem; font-weight: bold; display: block; }

/* Text Content & Reveal Styles */
.reveal-subtitle {
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.reveal-title {
    font-size: 3rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
}

.reveal-title span { display: block; color: #777; font-weight: 400; font-size: 2rem; }

.reveal-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #1a1a1a;
}

.feature-item i { color: #ffcc00; font-size: 1.2rem; }

.btn-modern {
    display: inline-block;
    padding: 15px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.4s;
}

.btn-modern:hover {
    background: #ffcc00;
    color: #1a1a1a;
    transform: translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 960px) {
    .about-wrapper { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .image-frame::before { display: none; }
    .about-features { justify-content: center; }
}
/* Global Reach Section */
.global-reach-section {
    padding: 100px 0;
    background: #0f0f0f; /* Deep Dark Background */
    color: #fff;
    overflow: hidden;
}

.global-header {
    text-align: center;
    margin-bottom: 60px;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: #ffcc00;
    margin: 15px auto;
}

.global-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Map Animation Styles */
.map-container {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
}

.globe-bg {
    font-size: 280px;
    color: #ffcc00;
    opacity: 0.1;
}

.pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffcc00;
    border-radius: 50%;
    box-shadow: 0 0 15px #ffcc00;
    animation: pulseWave 2s infinite;
}

.pulse span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: bold;
    color: #ffcc00;
    white-space: nowrap;
}

/* Map Points Positioning */
.p-usa { top: 30%; left: 25%; }
.p-europe { top: 25%; left: 52%; }
.p-uae { top: 45%; left: 62%; }
.p-singapore { top: 55%; left: 78%; }
.p-australia { top: 75%; left: 85%; }

@keyframes pulseWave {
    0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
    100% { box-shadow: 0 0 0 20px rgba(255, 204, 0, 0); }
}

/* Stats Cards */
.reach-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #ffcc00;
    transition: 0.3s;
}

.reach-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.reach-icon {
    font-size: 30px;
    color: #ffcc00;
}

.reach-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.reach-info p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 960px) {
    .global-grid { grid-template-columns: 1fr; }
    .map-container { height: 300px; }
    .globe-bg { font-size: 200px; }
}

/* Section Base */
.why-choose-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: #ffcc00;
    margin: 15px auto;
}

/* Grid Alignment Fix */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Ithu thaan 5th card-ai center-il vaikkum */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex: 1 1 350px; /* Cards scale aagum, aana 350px mela pogaathu */
    max-width: 380px;
    transition: 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

/* Icon Style */
.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 15px;
    }
    .feature-card {
        flex: 1 1 100%; /* Mobile-il single column column */
    }
}


/* Navy Theme Styles */
.global-reach-navy {
    padding: 100px 0;
    background: #f0f2f5; /* Clean Silver-Grey Background */
}

.navy-header { text-align: center; margin-bottom: 60px; }
.navy-title { color: #001f3f; font-size: 3rem; font-weight: 900; letter-spacing: -1px; }
.navy-title span { color: #536dfe; } /* Electric Blue highlight */
.silver-bar { width: 100px; height: 5px; background: #001f3f; margin: 15px auto; border-radius: 5px; }

.navy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Perspective Map Box */
.map-perspective {
    perspective: 1000px;
}

.navy-map-card {
    background: #001f3f;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    transform: rotateY(-15deg);
    transition: 0.6s;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.2);
}

.navy-map-card:hover {
    transform: rotateY(0deg) scale(1.02);
}

.silver-globe {
    font-size: 200px;
    color: #fff;
    opacity: 0.1;
}

/* Metallic Silver Cards */
.silver-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    transition: 0.4s;
}

.silver-card:hover {
    border-color: #536dfe;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(83, 109, 254, 0.1);
}

.navy-icon {
    font-size: 2.5rem;
    color: #001f3f;
}

/* Location Dots */
.location-dot {
    position: absolute;
    width: 10px; height: 10px;
    background: #536dfe;
    border-radius: 50%;
    box-shadow: 0 0 15px #536dfe;
}

.location-dot span {
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%);
    color: #fff; font-size: 10px; white-space: nowrap;
}

.l-1 { top: 30%; left: 20%; } .l-2 { top: 45%; left: 55%; }

/* Minimalist About Section */
.about-minimal {
    padding: 120px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.minimal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

/* Header Side */
.min-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d4af37;
    font-weight: 700;
}

.min-title {
    font-size: 4rem;
    color: #111;
    line-height: 1.1;
    margin: 20px 0 40px;
    font-weight: 900;
}

.min-title span {
    color: #999;
    font-weight: 300;
}

.min-exp-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.min-exp-box strong {
    font-size: 5rem;
    color: #111;
    border-right: 2px solid #ffcc00;
    padding-right: 20px;
    line-height: 1;
}

.min-exp-box p {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #666;
}

/* Content Side */
.lead-text {
    font-size: 1.4rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.body-text {
    color: #777;
    line-height: 1.8;
    margin-bottom: 40px;
}

.min-features {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-bottom: 40px;
}

.min-f-item {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.min-f-item span {
    color: #ffcc00;
    margin-right: 10px;
}

/* Button Style */
.min-btn {
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
    transition: 0.3s;
}

.min-btn:hover {
    gap: 20px;
    color: #ffcc00;
}

/* Mobile Responsive */
@media (max-width: 960px) {
    .minimal-grid { grid-template-columns: 1fr; gap: 50px; }
    .min-title { font-size: 3rem; }
    .min-exp-box strong { font-size: 4rem; }
}
/* =========================================
   FINAL PADDING & ALIGNMENT FIX
   ========================================= */

/* 1. Global Container - Side gaps-ai control panna */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px; /* Desktop side padding */
    width: 100%;
}

/* 2. Global Section Spacing - Ovvoru section-kku naduvil breathing space */
section {
    padding: 100px 0; /* Mela matrum keezhe sariyaana gap */
    position: relative;
    overflow: hidden;
}

/* 3. Mobile Padding Fix (Edge-to-Edge issue-ai sari panna) */
@media screen and (max-width: 768px) {
    section {
        padding: 60px 0; /* Mobile-il padding-ai konjam kuraikalaam */
    }
    
    .container {
        padding: 0 20px; /* Mobile screen edge-il content ottaamal irukka */
    }

    /* Grid layouts-ai mobile-il single column-aaka */
    .minimal-grid, .navy-grid, .about-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .min-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .navy-map-card {
        transform: none !important; /* Mobile-il tilt-ai remove panna */
        padding: 30px 15px;
    }
}

/* 4. Feature Cards Centering Fix */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 5 cards irunthaalum sariyaaga center-il varum */
    gap: 30px;
}

/* 5. Minimalist Header Adjustment */
.min-header {
    padding-right: 20px;
}

@media (max-width: 960px) {
    .min-header {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .min-exp-box {
        justify-content: center;
    }
}
/* Product Scroll Fix */
.top-products-section.full-width-scroll {
    width: 100vw;
    max-width: 100%;
    padding: 60px 0;
    background: #fff;
    overflow-x: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.product-slider {
    width: 100vw;
    padding: 40px 0; /* Vertical padding gap fix */
}

.product-track {
    display: flex;
    /* Track width = (Card width + gap) * Total Items */
    width: calc(320px * 16); 
    animation: scrollProducts 30s linear infinite;
}

.product-slide {
    width: 300px;
    height: auto; /* Height auto-va iruntha thaan name theriyaum */
    margin: 0 10px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden; /* Image corners round-ah irukka */
    border: 1px solid #eee;
}

.product-img-box {
    width: 100%;
    height: 200px; /* Image height mattum fixed */
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name Label - Image-kku kila sariyaaga theriya */
.product-name-label {
    padding: 15px 10px;
    background: #ffffff;
    text-align: center;
    border-top: 1px solid #f5f5f5;
}

.product-name-label h3 {
    font-size: 0.95rem;
    color: #333;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation */
@keyframes scrollProducts {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 8)); } /* Moves half the track */
}

/* Pause on hover */
.product-slider:hover .product-track {
    animation-play-state: paused;
}

@keyframes scrollProducts {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1280px); } /* Exactly half of the track */
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .product-slide { width: 220px; }
    .product-track { width: 1920px; }
    @keyframes scrollProducts {
        100% { transform: translateX(-960px); }
    }
}
/* Stats Milestone - Burgundy & Gold Theme */
.stats-burgundy-gold {
    background: linear-gradient(135deg, #4a0404 0%, #2b0202 100%); /* Deep Burgundy Gradient */
    padding: 100px 0;
    color: #fff;
}

.stats-burgundy-gold .sub-title {
    color: #d4af37; /* Deep Gold */
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.stats-burgundy-gold .main-title {
    color: #fff;
    font-size: 2.8rem;
}

.stats-burgundy-gold .main-title span {
    color: #d4af37;
}

.milestone-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.stats-burgundy-gold .milestone-card {
    background: rgba(255, 255, 255, 0.05); /* Very subtle transparent white */
    backdrop-filter: blur(5px);
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2); /* Gold border with low opacity */
    flex: 1 1 240px;
    max-width: 270px;
    text-align: center;
    transition: 0.4s ease-in-out;
}

.stats-burgundy-gold .milestone-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-10px) scale(1.05);
    border-color: #d4af37;
}

.m-icon-circle {
    width: 70px;
    height: 70px;
    background: #d4af37;
    color: #2b0202;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.stats-burgundy-gold .m-data .count {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    display: block;
}

.stats-burgundy-gold .m-data p {
    color: #d1d1d1;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.m-line {
    width: 30px;
    height: 2px;
    background: #d4af37;
    margin: 0 auto;
    transition: 0.4s;
}

.milestone-card:hover .m-line {
    width: 60px;
}
/* About Section - Forest Green Theme */
.about-premium-green {
    background-color: #062c21; /* Deep Forest Green */
    position: relative;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

/* Subtle pattern overlay */
.about-overlay-texture {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.3;
    z-index: 1;
}

.about-premium-green .container {
    position: relative;
    z-index: 2;
}

/* Image Styling */
.img-border-box {
    position: relative;
    padding: 15px;
}

.img-border-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 60%; height: 60%;
    border-top: 4px solid #d4af37; /* Gold */
    border-left: 4px solid #d4af37;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.4);
}

/* Content Styling */
.about-premium-green .sub-title {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-premium-green .main-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.about-premium-green .main-title span {
    color: #d4af37;
    font-weight: 300;
    display: block;
}

.about-premium-green .description {
    color: #a0acab;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Mini Features */
.about-mini-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #d4af37;
}

/* Button Styling */
.btn-champagne {
    display: inline-block;
    padding: 15px 35px;
    background: #d4af37;
    color: #062c21;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-champagne:hover {
    background: #fff;
    transform: translateY(-5px);
}

/* Mobile Fix */
@media (max-width: 960px) {
    .about-premium-green .main-title { font-size: 2.2rem; }
    .about-mini-features { flex-direction: column; gap: 15px; }
}
