 :root {
            --primary: #d00e0a;
            --dark: #0A0A0A;
            --grey: #121212;
            --text-main: #FFFFFF;
            --text-dim: #A0A0A0;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--dark); color: var(--text-main); overflow-x: hidden; }
html{
    scroll-behavior:smooth;
}

section{
    scroll-margin-top:90px;
}
        /* --- NAVIGATION --- */
        nav {
            padding: 20px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 10, 0.95);
            position: sticky;
            top: 0; z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .logo { font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
        .logo img { height: 45px; }
.logo span{
    color:#fff;
    font-weight:800;
}
        .nav-links { display: flex; align-items: center; }
        .nav-links a {
            color: #FFFFFF;
            text-decoration: none;
            margin-left: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex; align-items: center; gap: 8px;
            padding: 10px 5px;
            position: relative;
            transition: 0.3s;
        }

        /* Active Menu: Transparent with Bottom Line Animation */
        .nav-links a.active, .nav-links a:hover:not(.btn-duo) {
            color: var(--primary);
            background: transparent !important; /* Box remove panniyachu */
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: 0.3s ease-in-out;
            transform: translateX(-50%);
        }

        .nav-links a.active::after, .nav-links a:hover:not(.btn-duo)::after {
            width: 80%; /* Active/Hover-la mattum line varum */
        }

        /* --- GEOMETRIC BUTTON --- */
        .btn-duo {
            padding: 12px 30px !important;
            background: var(--primary);
            color: #fff !important;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            display: inline-block;
            border: 2px solid var(--primary);
            cursor: pointer;
            clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
            transition: 0.3s ease-in-out;
        }

        .btn-duo:hover {
            background: transparent !important;
            color: var(--primary) !important;
            clip-path: polygon(0% 0%, 88% 0%, 100% 100%, 12% 100%);
        }

        /* --- MOBILE DRAWER --- */
        .menu-btn { display: none; font-size: 1.6rem; cursor: pointer; color: #fff; }
        .drawer {
            position: fixed; top: 0; right: -100%;
            width: 300px; height: 100vh;
            background: var(--grey); z-index: 2000;
            padding: 60px 20px; transition: 0.4s;
        }
        .drawer.active { right: 0; }
        .drawer a { display: flex; align-items: center; gap: 15px; color: white; text-decoration: none; padding: 15px 10px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .close-btn { position: absolute; top: 25px; right: 25px; font-size: 1.8rem; cursor: pointer; color: var(--primary); }

        /* --- ENHANCED HERO --- */
        .hero {
            min-height: 90vh; 
            display: flex; align-items: center; padding: 0 8%;
            background: radial-gradient(circle at 75% 40%, rgba(239, 35, 60, 0.12), transparent 45%);
            position: relative;
        }
        
        /* Subtle Grid Pattern Background */
        .hero::before {
            content: '';
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: -1;
        }

        .hero-text { flex: 1.2; }
        .hero-text h1 { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.05; font-weight: 800; margin-bottom: 25px; letter-spacing: -1px; }
        .hero-text h1 span { color: var(--primary); }
        .hero-text p.desc { font-size: 1.2rem; color: var(--text-dim); margin-bottom: 40px; max-width: 580px; line-height: 1.7; }
        
        .hero-img { flex: 0.8; text-align: right; display: flex; justify-content: center; position: relative; }
        .hero-img img { 
            width: 100%; max-width: 520px; 
            filter: drop-shadow(0 0 30px rgba(239,35,60,0.3)); 
            animation: float 5s ease-in-out infinite; 
        }

        @keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.02); } }

        /* --- POPUP --- */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
            display: none; justify-content: center; align-items: center; z-index: 3000;
        }
        .modal-content {
            background: #111; padding: 40px; border-radius: 15px; width: 95%; max-width: 450px;
            position: relative; border-top: 5px solid var(--primary); box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }
        .modal-close { position: absolute; top: 15px; right: 20px; font-size: 1.8rem; cursor: pointer; color: var(--text-dim); }

        input, textarea { width: 100%; padding: 15px; background: #1a1a1a; border: 1px solid #333; color: white; margin-bottom: 15px; font-family: inherit; border-radius: 8px; outline: none; transition: 0.3s; }
        input:focus { border-color: var(--primary); }

        @media (max-width: 1100px) {
            .hero { flex-direction: column-reverse; text-align: center; padding-top: 80px; padding-bottom: 50px; }
            .hero-text h1 { margin-top: 40px; }
            .hero-text p.desc { margin-left: auto; margin-right: auto; }
        }

        @media (max-width: 968px) {
            .nav-links { display: none; }
            .menu-btn { display: block; }
        }
		
/* Hero Slider Container */
.hero-slider {
    width: 100%;
    min-height: 90vh;
    background: radial-gradient(circle at 75% 40%, rgba(239, 35, 60, 0.12), transparent 45%);
    position: relative;
    overflow: hidden;
}

.swiper-slide.hero {
    display: flex;
    align-items: center;
    padding: 0 8%;
    visibility: hidden; /* Prevent content jump */
}

.swiper-slide-active.hero {
    visibility: visible;
}

/* Animations for Slider Content */
.swiper-slide-active .hero-text h1 {
    animation: fadeInUp 0.8s both 0.2s;
}
.swiper-slide-active .hero-text p {
    animation: fadeInUp 0.8s both 0.4s;
}
.swiper-slide-active .hero-img img {
    animation: zoomIn 1s both 0.3s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Dynamic Arrows Style */
.duo-arrow {
    color: var(--primary) !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(239, 35, 60, 0.3);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    transition: 0.3s;
}

.duo-arrow:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.duo-arrow:hover {
    background: var(--primary);
    color: #000 !important;
}

/* Pagination Dots */
.duo-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
}
.duo-pagination .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 25px;
    border-radius: 5px;
    opacity: 1;
}

.hero-btns { display: flex; gap: 20px; align-items: center; }
.subtitle { color: var(--primary); font-weight: 700; letter-spacing: 4px; margin-bottom: 15px; text-transform: uppercase; font-size: 0.9rem; }
.service-link { color: #fff; text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; text-transform: uppercase; }

@media (max-width: 768px) {
    /* Banner Heading Size Reduce */
    .hero-text h1 {
        font-size: 2.2rem !important; /* Mobile-ku etha periya size */
        line-height: 1.2;
        margin-bottom: 15px;
    }

    /* Subtitle (Empowering Your Future) Size */
    .subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 10px !important;
    }

    /* Description Text Size */
    .hero-text p.desc {
        font-size: 0.95rem !important;
        line-height: 1.5;
        margin-bottom: 25px !important;
        padding: 0 10px; /* Sides-la gap */
    }

    /* Slider Buttons Container */
    .hero-btns {
        flex-direction: row; /* Horizontal-ave irukatum */
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    /* Buttons Size and Padding Optimization */
    .btn-duo {
        padding: 10px 18px !important;
        font-size: 0.75rem !important;
        clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%) !important;
    }

    .service-link {
        font-size: 0.75rem !important;
        gap: 5px !important;
    }

    /* Slider Navigation Arrows - Mobile-la size koraivom */
    .duo-arrow {
        width: 35px !important;
        height: 35px !important;
    }
    
    .duo-arrow:after {
        font-size: 0.8rem !important;
    }

    /* Hero Section Vertical Padding */
    .hero {
        padding: 40px 5% !important;
        min-height: auto !important;
        height: 90vh; /* Screen height-ku fit aagum */
    }
}
/****************************/

.about-section {
    padding: 100px 8%;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Geometric Image Container */
.about-image-side {
    position: relative;
    z-index: 1;
}

.main-about-img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 50px rgba(239, 35, 60, 0.2));
    position: relative;
    z-index: 2;
}

.shape-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary), transparent);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 1;
}

/* --- CIRCLE EXPERIENCE BADGE --- */
.experience-badge {
    position: absolute;
    bottom: -10px;
    right: 10px;
    width: 140px;
    height: 140px;
    background: var(--primary);
    border-radius: 50%; /* Circle Design */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 0 30px rgba(239, 35, 60, 0.4);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    /* Pulse Animation */
    animation: circlePulse 3s infinite ease-in-out;
}

.experience-badge h3 { 
    font-size: 2.2rem; 
    color: #fff; 
    line-height: 1; 
    margin: 0;
    font-weight: 800;
}

.experience-badge p { 
    font-size: 0.65rem; 
    text-transform: uppercase; 
    font-weight: 700; 
    color: #000; 
    margin: 5px 0 0;
    letter-spacing: 1px;
}

/* --- ANIMATIONS --- */
@keyframes circlePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.6);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(239, 35, 60, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 35, 60, 0);
    }
}

/* Image Hover effect */
.about-image-side:hover .main-about-img {
    transform: translateY(-10px);
    transition: 0.5s ease;
}

/* Text Content Styling */
.about-text-side h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 15px 0 25px;
    font-weight: 800;
}

.about-text-side h2 span { color: var(--primary); }

.about-features {
    margin: 40px 0;
}

.feat-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary);
    transition: 0.3s;
}

.feat-item:hover {
    background: rgba(239, 35, 60, 0.05);
    transform: translateX(10px);
}

.feat-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.feat-txt h4 { font-size: 1.2rem; margin-bottom: 5px; }
.feat-txt p { color: var(--text-dim); font-size: 0.9rem; }

/* Responsive */
/* Responsive Fixes - Mobile View Experience Badge */
@media (max-width: 968px) {
    .about-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 50px; 
    }
    
    .feat-item { text-align: left; }
    
    .about-text-side h2 { font-size: 2.2rem; }

    /* Mobile-la image center-la irukka */
    .about-image-side {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    /* Mobile-la badge size and position sari panna */
    .experience-badge {
        width: 100px; /* Size koraichachu */
        height: 100px;
        bottom: 10px;
        right: 10%; /* Right side gap adjust panniruken */
    }

    .experience-badge h3 { 
        font-size: 1.6rem; 
    }
    
    .experience-badge p { 
        font-size: 0.5rem; 
    }
}

.services-section {
    padding: 60px 8%;
    background: #050505; /* Blackish Bg */
}

/* Title Line Animation */
.title-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 10px;
}

.services-grid {
    display: grid;
    /* Desktop-la exact-ah 4 cards per row */
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px;
    padding-top: 20px;
}

/* Card Style (Inspired by your image) */
.service-card {
    background: #111; /* Dark Grey/Block Background */
    padding: 25px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    background: #0c0c0c;
    box-shadow: 0 15px 40px rgba(239, 35, 60, 0.15);
}

.ser-icon-wrapper {
    margin-bottom: 25px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ser-icon-wrapper img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(239, 35, 60, 0.3)); /* Subtle Red Glow */
}

.service-card h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Circle Arrow Button */
.ser-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover .ser-arrow {
    background: var(--primary);
    color: #000;
    transform: rotate(-45deg);
}

/* --- REVEAL ANIMATION ON SCROLL --- */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Tablet View: 2 cards per row */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View: 1 card per row (Stack) */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 40px 20px;
    }
	.ser-icon-wrapper {
        height: 80px; /* Mobile-ku 80px pothum */
        margin-bottom: 20px;
    }
}
.why-choose-us {
    padding: 80px 8%;
    background: #080808;
    position: relative;
    overflow: hidden;
}

/* Background Animation Shapes */
.bg-shapes .shape {
    position: absolute;
    background: rgb(208 14 10 / 5%);
    border: 1px solid rgba(239, 35, 60, 0.1);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 1;
    animation: floatShape 10s infinite linear;
}

.s1 { width: 300px; height: 300px; top: -50px; left: -100px; }
.s2 { width: 200px; height: 200px; bottom: 50px; right: -50px; animation-duration: 15s !important; }
.s3 { width: 150px; height: 150px; top: 20%; right: 15%; opacity: 0.5; }

@keyframes floatShape {
    0% { transform: rotate(0deg) translate(0, 0); }
    50% { transform: rotate(180deg) translate(20px, 50px); }
    100% { transform: rotate(360deg) translate(0, 0); }
}

/* Title Highlight Box */
.highlight-box {
    background: var(--primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    display: inline-block;
    transform: skewX(-10deg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-card {
    background: #121212;
    padding: 50px 30px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.why-card:hover, .active-why {
    border-color: var(--primary);
    background: #000;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.active-why {
    border: 2px solid var(--primary);
}

.why-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(239, 35, 60, 0.3));
}

.why-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.why-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mobile View Fix */
@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-choose-us { padding: 80px 5%; }
}
.success-stories {
    padding: 80px 8%;
    background: #0a0a0a;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.story-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease-in-out;
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.story-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.story-card:hover .story-img img {
    transform: scale(1.1);
    filter: grayscale(0.5) brightness(0.5);
}

/* Result Badge on Image */
.result-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    font-weight: 800;
    font-size: 0.85rem;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    z-index: 3;
}

.story-info {
    padding: 30px;
}

.category {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.story-info h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.story-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.view-case {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.view-case:hover {
    color: var(--primary);
    gap: 15px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .stories-grid { grid-template-columns: 1fr; }
    .story-img { height: 200px; }
}
/****************************/
.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title .subtitle {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section-title .main-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
}

.section-title .main-title .highlight {
  color: var(--primary);
}

.section-title .title-line {
  width: 80px;
  height: 3px;
  background-color: var(--primary);
  margin: 18px auto 0;
  border-radius: 10px;
}
.portfolio-slider {
    padding: 20px 0 60px;
    width: 100%;
}

.portfolio-slider .swiper-slide {
    height: auto; /* All cards will have same height */
    display: flex;
}

.story-card {
    background: #111;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: 0.4s;
}

.story-info {
    padding: 25px;
    flex-grow: 1; /* Content pushes the button to the bottom */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
/********************/
/* Services Section Positioning */
.services-section {
    position: relative;
    overflow: hidden; /* Bubbles section-ai vittu veliya pogaama irukka */
    background: #050505;
    z-index: 1;
}

/* Bubbles Container */
.service-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Cards-ku pinnala poga */
    pointer-events: none;
}

/* Individual Bubble Style */
.service-bubbles span {
    position: absolute;
    bottom: -100px; /* Screen-ku kela irunthu start aagum */
    background: rgba(239, 35, 60, 0.15); /* Red bubble with low opacity */
    border-radius: 50%;
    animation: bubbleRise 12s infinite ease-in;
}

/* Bubble Sizes and Positions */
.service-bubbles span:nth-child(1) { left: 10%; width: 40px; height: 40px; animation-delay: 0s; }
.service-bubbles span:nth-child(2) { left: 25%; width: 20px; height: 20px; animation-delay: 3s; animation-duration: 10s; }
.service-bubbles span:nth-child(3) { left: 50%; width: 60px; height: 60px; animation-delay: 6s; }
.service-bubbles span:nth-child(4) { left: 75%; width: 30px; height: 30px; animation-delay: 1s; animation-duration: 15s; }
.service-bubbles span:nth-child(5) { left: 90%; width: 50px; height: 50px; animation-delay: 8s; }

/* Floating Animation */
@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    80% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-120vh) scale(1.5);
        opacity: 0;
    }
}


 
/* --- FOOTER STYLES --- */
.main-footer {
    background: #050505;
    padding: 55px 8% 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    color: #fff;
}

/* Grid Layout Fix */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* side-by-side columns */
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.footer-logo span { color: var(--primary); }

.team-img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(239, 35, 60, 0.2));
}

.footer-brand p { color: #888; font-size: 0.9rem; line-height: 1.6; margin-bottom: 25px; }

/* Social Links */
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; transition: 0.3s;
}
.social-links a:hover { background: var(--primary); transform: translateY(-5px); }

/* Link Columns */
.footer-column h4 { font-size: 1.2rem; margin-bottom: 25px; font-weight: 700; position: relative; }
.footer-column h4::after {
    content: ''; position: absolute; bottom: -8px; left: 0;
    width: 30px; height: 2px; background: var(--primary);
}

.f-links { list-style: none; padding: 0; }
.f-links li { margin-bottom: 12px; }
.f-links li a { 
    color: #888; text-decoration: none; font-size: 0.9rem; 
    display: flex; align-items: center; gap: 10px; transition: 0.3s;
}
.f-links li a i { font-size: 0.7rem; color: var(--primary); }
.f-links li a:hover { color: var(--primary); padding-left: 8px; }

/* Contact Items */
.contact-box { display: flex; flex-direction: column; gap: 15px; }
.c-item { 
    display: flex; align-items: center; gap: 12px; 
    color: #888; text-decoration: none; font-size: 0.9rem;
    transition: 0.3s;
}
.c-item i { color: var(--primary); width: 20px; }
.c-item:hover { color: #fff; transform: translateX(5px); }

/* Footer Bottom */
/* --- FOOTER BOTTOM STYLES --- */
.footer-bottom {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
	font-size:14px;}

/* Yuvan Webtech Animation */
.yuvan-animate {
    color: var(--primary); /* Red color */
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    animation: yuvanGlow 3s infinite ease-in-out;
    transition: 0.3s;
}

@keyframes yuvanGlow {
    0% { transform: scale(1); text-shadow: 0 0 5px rgba(239, 35, 60, 0); }
    50% { transform: scale(1.05); text-shadow: 0 0 15px rgba(239, 35, 60, 0.6); }
    100% { transform: scale(1); text-shadow: 0 0 5px rgba(239, 35, 60, 0); }
}

.yuvan-animate:hover {
    color: #fff;
    letter-spacing: 2px;
}

/* Privacy & Terms Icons */
.b-links {
    display: flex;
    gap: 25px;
}

.b-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.b-links a i {
    color: var(--primary);
    font-size: 0.75rem;
}

.b-links a:hover {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .b-links {
        justify-content: center;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .f-links li a, .c-item, .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; }
}
.scroll-rocket {
    position: fixed;
    bottom: -100px; /* Initial ah hidden */
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary); /* Red color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(239, 35, 60, 0.3);
}

/* Button show aagum pothu */
.scroll-rocket.show {
    bottom: 30px;
}

.rocket-container {
    position: relative;
    font-size: 1.5rem;
    transition: 0.3s;
}

/* Rocket Animation on Hover */
.scroll-rocket:hover .rocket-container {
    transform: translateY(-5px);
}

/* Flame Effect */
.flame {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 20px;
    background: linear-gradient(to bottom, #ff9d00, transparent);
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
}

.scroll-rocket:hover .flame {
    opacity: 1;
    animation: flameFlicker 0.2s infinite;
}

@keyframes flameFlicker {
    0% { height: 15px; opacity: 0.8; }
    50% { height: 25px; opacity: 1; }
    100% { height: 15px; opacity: 0.8; }
}

/* Click panna Rocket launch aagura effect */
.launching {
    animation: rocketLaunch 0.8s forwards;
}

@keyframes rocketLaunch {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* --- CUSTOM SCROLLBAR --- */
/* 1. Scrollbar track (pinnadi irukkura path) */
::-webkit-scrollbar {
    width: 10px; /* Scrollbar thickness */
}

/* 2. Track background */
::-webkit-scrollbar-track {
    background: #080808; /* Dark black to match your theme */
}

/* 3. Handle (mela keela move aagura block) */
::-webkit-scrollbar-thumb {
    background: var(--primary); /* Namma Block Red color */
    border-radius: 0px; /* Block theme-kaaga square edges */
    border: 2px solid #080808; /* Handles-ku side-la chinna gap tharum */
}

/* 4. Handle on Hover (mouse veikkum pothu glow aaga) */
::-webkit-scrollbar-thumb:hover {
    background: #ff4d5a; /* Light glow red */
    box-shadow: 0 0 10px rgba(239, 35, 60, 0.5);
}

/* Firefox support */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #080808;
}

/* --- CLIENTS MARQUEE --- */
.client-slider {
    padding: 20px 0;
    cursor: grab;
}

.client-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: 0.4s;
}

.client-slider .swiper-slide img {
    max-width: 150px;
    height: auto;
    filter: grayscale(1); /* Default grayscale */
}

.client-slider .swiper-slide:hover {
    opacity: 1;
}

.client-slider .swiper-slide:hover img {
    filter: grayscale(0); /* Hover pannumpothu color */
}

/* Highlight Box Style from your UI */
.highlight-box {
    background: var(--primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    display: inline-block;
    transform: skewX(-10deg);
}
.team-section{
    padding:60px 0;
    background:#050505;
    overflow:hidden;
}

.team-slider{
    position:relative;
    margin-top:55px;
    padding:55px 55px 80px;
    border:1px solid rgba(255,29,37,.35);
    border-radius:22px;
    background:linear-gradient(180deg,#0b0b0b,#050505);
}

.team-card{
    background:#111;
    border:1px solid rgba(255,29,37,.35);
    border-radius:18px;
    padding:35px 22px;
    text-align:center;
    min-height:360px;
    transition:.35s ease;
}

.team-card:hover{
    transform:translateY(-8px);
    border-color:#ff1d25;
    box-shadow:0 18px 45px rgba(255,29,37,.18);
}

.team-img{
    width:150px;
    height:150px;
    margin:0 auto 28px;
    border-radius:50%;
   background: radial-gradient(circle, #3b3b3b 0%, #1d1d1d 55%, #0b0b0b 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.team-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.team-role{
    display:inline-block;
    background:#ff1d25;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:28px;
}

.team-card h4{
    color:#fff;
    font-size:24px;
    line-height:1.25;
    margin:0;
}

.team-slider .duo-arrow{
    color:#fff;
}

.team-slider .swiper-pagination{
    bottom:25px !important;
}

.team-slider .swiper-pagination-bullet{
    background:#777;
    opacity:.7;
}

.team-slider .swiper-pagination-bullet-active{
    background:#ff1d25;
    opacity:1;
}

@media(max-width:768px){
    .team-section{
        padding:70px 0;
    }

    .team-slider{
        padding:35px 20px 70px;
        border-radius:18px;
    }

    .team-card{
        min-height:320px;
        padding:30px 18px;
    }

    .team-img{
        width:130px;
        height:130px;
    }

    .team-card h4{
        font-size:22px;
    }
}
/*contact section*/
.contact-section{
    padding:60px 8%;
    background:#050505;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 430px;
    gap:35px;
    margin-top:60px;
    align-items:stretch;
}

.contact-card{

background:#111;
border:1px solid rgba(255,0,0,.25);
border-radius:18px;
padding:40px;

}

.contact-card h3{

color:#fff;
margin-bottom:30px;

}

.contact-list{

list-style:none;
padding:0;
margin:0 0 35px;

}

.contact-list li{

display:flex;
gap:18px;
margin-bottom:28px;
align-items:flex-start;

}

.contact-list i{

width:55px;
height:55px;
background:#e50914;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:20px;

}

.contact-list span,
.contact-list a{

color:#ddd;
text-decoration:none;
line-height:1.8;

}

.map-card{
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(208,14,10,.25);
    box-shadow:0 15px 40px rgba(208,14,10,.08);
    min-height:520px;
}

.map-card iframe{
    width:100%;
    height:100%;
    min-height:520px;
    border:0;
    filter:grayscale(100%) brightness(.65) contrast(1.15);
    transition:.5s ease;
}

.map-card:hover iframe{
    filter:grayscale(40%) brightness(.9);
    transform:scale(1.03);
}

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}

.map-card iframe{

min-height:350px;

}

}
/*pages breadcrum*/
.inner-banner{
    padding:90px 8%;
    background:
        radial-gradient(circle at 20% 20%, rgba(208,14,10,.25), transparent 35%),
        linear-gradient(135deg,#050505,#111);
    border-bottom:1px solid rgba(208,14,10,.25);
    text-align:center;
    position:relative;
    overflow:hidden;
}

.inner-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size:28px 28px;
    opacity:.5;
}

.inner-banner .container{
    position:relative;
    z-index:2;
}

.inner-banner h1{
    color:#fff;
    font-size:clamp(2.4rem,5vw,4rem);
    font-weight:800;
    margin-bottom:18px;
}

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.breadcrumb a,
.breadcrumb p,
.breadcrumb span{
    color:#aaa;
    text-decoration:none;
    font-weight:600;
    margin:0;
}

.breadcrumb a{
    color:#fff;
    transition:.3s;
}

.breadcrumb a i{
    color:var(--primary);
    margin-right:6px;
}

.breadcrumb a:hover{
    color:var(--primary);
}

.policy-section{
    padding:80px 8%;
    background:#050505;
}

.policy-card{
    background:linear-gradient(180deg,#111,#090909);
    border:1px solid rgba(208,14,10,.22);
    border-radius:24px;
    padding:45px;
    box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.policy-head{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:30px;
    padding-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.policy-head i{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#fff;
    border-radius:18px;
    font-size:28px;
    box-shadow:0 12px 30px rgba(208,14,10,.28);
}

.policy-head h2{
    color:#fff;
    font-size:2rem;
    margin:0;
}

.policy-card p{
    color:#bdbdbd;
    line-height:1.8;
    font-size:.98rem;
}

.policy-card a{
    color:var(--primary);
    text-decoration:none;
}

.policy-item{
    margin-top:28px;
    padding:25px;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.05);
    border-left:4px solid var(--primary);
    border-radius:16px;
    transition:.35s ease;
}

.policy-item:hover{
    transform:translateY(-6px);
    border-color:rgba(208,14,10,.45);
    box-shadow:0 18px 40px rgba(208,14,10,.12);
    background:rgba(208,14,10,.045);
}

.policy-item h3{
    color:#fff;
    font-size:1.25rem;
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:12px;
}

.policy-item h3 i{
    color:var(--primary);
    transition:.35s;
}

.policy-item:hover h3 i{
    transform:scale(1.15) rotate(8deg);
}

.policy-cta{
    margin-top:45px;
    padding:40px;
    border-radius:24px;
    text-align:center;
    background:
        radial-gradient(circle at center, rgba(208,14,10,.18), transparent 60%),
        #101010;
    border:1px solid rgba(208,14,10,.25);
}

.policy-cta h2{
    color:#fff;
    font-size:2rem;
    margin-bottom:12px;
}

.policy-cta p{
    color:#aaa;
    margin-bottom:25px;
}

@media(max-width:768px){
    .inner-banner{
        padding:70px 5%;
    }

    .policy-section{
        padding:60px 5%;
    }

    .policy-card{
        padding:28px 20px;
        border-radius:18px;
    }

    .policy-head{
        flex-direction:column;
        text-align:center;
    }

    .policy-head h2{
        font-size:1.7rem;
    }

    .policy-item{
        padding:20px;
    }

    .policy-item h3{
        font-size:1.1rem;
        align-items:flex-start;
    }

    .policy-cta{
        padding:30px 20px;
    }
}
/*select css*/
select{
    width:100%;
    padding:15px;
    background:#1a1a1a;
    border:1px solid #333;
    color:white;
    margin-bottom:15px;
    font-family:inherit;
    border-radius:8px;
    outline:none;
}

select:focus{
    border-color:var(--primary);
}

/* ===========================
   CONTACT FORM
=========================== */

.contact-form-card{
    background:#111;
    border:1px solid rgba(208,14,10,.25);
    border-radius:18px;
    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-form-card h3{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.contact-form-card form{
    display:flex;
    flex-direction:column;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select{
    width:100%;
    padding:15px 18px;
    margin-bottom:18px;
    background:#1a1a1a;
    border:1px solid #333;
    border-radius:10px;
    color:#fff;
    font-size:15px;
    font-family:inherit;
    outline:none;
    transition:all .3s ease;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder{
    color:#9a9a9a;
}

.contact-form-card select{
    cursor:pointer;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus{
    border-color:var(--primary);
    box-shadow:0 0 12px rgba(208,14,10,.25);
}

/* Button */

.contact-form-card .btn-duo{
    margin-top:8px;
    min-width:230px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    align-self:flex-start;
    border:none;
    cursor:pointer;
    transition:all .35s ease;
}

/* Desktop Hover */

.contact-form-card .btn-duo:hover{
    transform:translateY(-3px);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:30px;
    }

    .map-card,
    .map-card iframe{
        min-height:350px;
    }

}

@media (max-width:768px){

    .contact-form-card{
        padding:25px;
    }

    .contact-form-card h3{
        font-size:24px;
    }

    .contact-form-card .btn-duo{
        width:100%;
        min-width:100%;
        justify-content:center;
    }

}