@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&display=swap');
/* =====================================================
   1. GLOBAL STYLES
===================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f8fbff; 
    overflow-x: hidden; 
}

/* =====================================================
   2. NAVBAR SECTION
===================================================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
}

header.sticky {
    background: rgba(255, 255, 255, 0.95); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px); 
}

header.sticky .navbar-wrapper {
    padding: 5px 15px;
}

header.sticky .navbar {
    border-radius: 0; 
    border: none;
    box-shadow: none;
}
/* 1. Top Blue Bar */
.top-bar {
    background-color: #0d6efd; /* Blue Color */
    color: white;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

/* Flexbox Layout to align items */
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px; /* Aligns with content on page */
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Contact Styles */
.top-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 2. Navbar Wrapper Positioning */
.navbar-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-icon {
    color: white;
    font-size: 14px;
    margin-right: 5px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ffd700; /* Subtle golden hover */
}

.divider {
    color: rgba(255, 255, 255, 0.5);
}

/* Center News Ticker (Moving Text) */
.top-news-ticker {
    flex: 1; /* Occupies all available center space */
    margin: 0 30px;
    overflow: hidden; /* Important for the sliding animation */
    white-space: nowrap; /* Keeps text in a single line */
}

.ticker-content p {
    margin: 0;
    display: inline-block;
    color: white;
}

/* Right Social Icon Styles */
.top-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon i {
    color: white;
    font-size: 18px;
    transition: transform 0.3s, color 0.3s;
}

.social-icon:hover i {
    color: #ffd700; /* Hover panna gold color varum */
    transform: scale(1.2);
}

/* ========== nav bar ============== */
.navbar { 
    background: white; 
    border: 1px solid #c2e2f0; 
    padding: 20px 25px; 
    border-radius: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative; /* Important for dropdowns */
}

/* 3. Navigation Links & Dropdown Logic */
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 20px; 
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    padding: 10px 0;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 600; 
    color: #333; 
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #0d6efd;
}

/* Dropdown Menu (Hidden by Default) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-weight: 400;
}

.dropdown-menu li a:hover {
    background-color: #f8fbff;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Logo & Button Styles */
.logo-img { height: 40px; }

.contact-btn { 
    background-color: #8ed6fb; 
    border: none; 
    padding: 10px 25px; 
    border-radius: 40px; 
    font-weight: bold; 
    cursor: pointer; 
    white-space: nowrap;
    transition: background 0.3s;
}

.contact-btn:hover {
    background-color: #0d6efd;
    color: white;
}


.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px; 
    width: 280px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: 0.3s ease;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-sidebar.active {
    right: 0; 
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    display: block;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

/* Mobile View Styles (768px) */
@media (max-width: 768px) {
    .nav-links, .top-news-ticker, .top-social {
        display: none; 
    }

    .top-bar-container {
        justify-content: center;
    }

    .navbar {
        border-radius: 20px;
        padding: 10px 20px;
    }

    .menu-toggle {
        display: block; 
         margin-left: 10px;
    }
}

/* =====================================================
   3. HERO SECTION
===================================================== */
.hero { 
    text-align: center; 
    margin-top: 10px; 
    padding: 0; 
}

.hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('images/bg/hero_bg.jpeg') no-repeat center center; /* Background-ai hero-vukku kuduthuttu inge transparent pannidunga */
}
.main-title { 
    font-size: clamp(32px, 8vw, 60px); 
    font-weight: 900; 
    line-height: 1.1;
    text-align: center;
}

.experts-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.highlight-title {
    font-size: clamp(45px, 12vw, 90px); 
    font-weight: 900;
    color: #005a8d;
    cursor: default;
}

.highlight-title span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.highlight-title span:hover {
    transform: translateY(15px);
    color: #003a5c;
}


/* =====================================================
   4. GEOMETRIC SQUARE ANIMATION
===================================================== */
.geometric-container {
    position: relative;
    width: 80px;
    height: 80px;
    transform: rotate(45deg); 
    animation: floating 3s infinite ease-in-out;
}

.square {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    animation: shufflePositions 4s infinite ease-in-out;
}

/* Square Specifics */
.s1 { top: 0; left: 0; background: #0077c2; }
.s2 { top: 0; right: 0; background: #2ea3e6; animation-name: shufflePositionsS2; }
.s3 { bottom: 0; left: 0; background: #8ed6fb; animation-name: shufflePositionsS3; }
.s4 { bottom: 0; right: 0; background: #0093e9; animation-name: shufflePositionsS4; }

/* =====================================================
   5. CTA BUTTONS (Links)
===================================================== */
.cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.schedule-btn, .portfolio-btn {
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none; 
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.schedule-btn {
    background-color: #ffffff;
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.schedule-btn::before { content: '›'; font-size: 22px; }

.portfolio-btn {
    background-color: transparent;
    color: #000;
    border: 1.5px solid #333;
}

.portfolio-btn::after { content: '›'; font-size: 22px; }

/* Hover Effects */
.schedule-btn:hover, .portfolio-btn:hover {
    transform: translateY(-5px) scale(1.03);
}

.schedule-btn:hover {
    box-shadow: 0 15px 30px rgba(0, 119, 194, 0.15);
    background-color: #f0f9ff;
}

.portfolio-btn:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.schedule-btn:active, .portfolio-btn:active {
    transform: translateY(-2px) scale(0.97);
}

/* =====================================================
   6. STATS CARDS SECTION
===================================================== */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    padding-bottom: 50px;
    flex-wrap: wrap;
    perspective: 1200px;
}

.card-stack {
    position: relative;
    width: 280px;
    height: 180px;
    cursor: pointer;
}

.stat-card{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:18px;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    /* main gradient */
    background:
    linear-gradient(135deg,#0c4a73 10%,#1f6f9f 40%,#6db7de 100%);

    /* glow highlight */
    box-shadow:
    inset 0 10px 25px rgba(255,255,255,0.25),
    inset 0 -10px 25px rgba(0,0,0,0.15),
    0 20px 35px rgba(0,0,0,0.15);

    border:1px solid rgba(255,255,255,0.25);

    backdrop-filter: blur(8px);

    transition:all .5s ease;
}

.stat-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:60%;
border-radius:18px;

background:linear-gradient(
to bottom,
rgba(255,255,255,0.45),
rgba(255,255,255,0.08),
transparent
);

pointer-events:none;
}
.stat-card h2{
font-size:54px;
font-weight:900;
letter-spacing:1px;
}

.stat-card p{
font-size:17px;
opacity:.95;
margin-top:5px;
}

.layer-1{
z-index:3;
transform:translate(0,0);
}

.layer-2{
z-index:2;
transform:translate(-12px,12px);
opacity:.9;
}

.layer-3{
z-index:1;
transform:translate(-24px,24px);
opacity:.7;
}
.is-swapping { animation: swapCard 0.7s ease-in-out forwards; }

/* =====================================================
   7. KEYFRAMES & ANIMATIONS
===================================================== */
@keyframes floating {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-10px); }
}

@keyframes shufflePositions {
    0%, 100% { top: 0; left: 0; }
    25% { top: 0; left: 45px; }
    50% { top: 45px; left: 45px; }
    75% { top: 45px; left: 0; }
}

@keyframes shufflePositionsS2 {
    0%, 100% { top: 0; right: 0; }
    25% { top: 45px; right: 0; }
    50% { top: 45px; right: 45px; }
    75% { top: 0; right: 45px; }
}

@keyframes shufflePositionsS3 {
    0%, 100% { bottom: 0; left: 0; }
    25% { bottom: 45px; left: 0; }
    50% { bottom: 45px; left: 45px; }
    75% { bottom: 0; left: 45px; }
}

@keyframes shufflePositionsS4 {
    0%, 100% { bottom: 0; right: 0; }
    25% { bottom: 0; right: 45px; }
    50% { bottom: 45px; right: 45px; }
    75% { bottom: 45px; right: 0; }
}

@keyframes swapCard {
    0% { transform: translate(0, 0) rotate(0deg); z-index: 4; }
    40% { transform: translate(-120px, -40px) rotate(-10deg); z-index: 4; }
    100% { transform: translate(-20px, 20px) rotate(0deg); z-index: 1; }
}

/* =====================================================
   8. MEDIA QUERIES (Responsive)
===================================================== */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .stats-container { gap: 60px; }
}

@media (max-width: 768px) {
    .navbar { padding: 8px 15px; }
    .logo-text { font-size: 16px; }
    .hero { margin-top: 20px; }
    .geometric-container { width: 45px; height: 45px; }
    .square { width: 20px; height: 20px; }
    .stats-container { flex-direction: column; align-items: center; gap: 50px; }
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section {
    padding:  2%;
    background-color: #f8fbff;
}

.services-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Services List (Left) */
.services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
}

/* Hover Effect - Desktop */
.service-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
}

/* Icon Box */
.icon-box {
    flex-shrink: 0; 
    width: 75px;
    height: 75px;
    background-color: #dce7f5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.service-item:hover .icon-box {
    transform: scale(1.05);
}

.icon-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Service Text */
.service-info h3 {
    font-size: 22px;
    color: #0d2a5c;
    margin: 0 0 5px 0;
    font-weight: 800;
    line-height: 1.2;
}

.service-info p {
    font-size: 15px;
    color: #7a8ba3;
    line-height: 1.4;
    margin: 0;
    
}

/* Right Side Illustration */
.services-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    animation: floatAnimation 5s infinite ease-in-out;
}

.services-image img {
    max-width: 100%;
    height: auto;
}

/* Floating Animation */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* =====================================================
   RESPONSIVE DESIGN (Mobile & Tablet)
===================================================== */
@media (max-width: 992px) {
    .services-container {
        flex-direction: column-reverse; /* Mobile-il image mela varum */
        text-align: center;
        gap: 40px;
    }
    
    .service-item {
        align-items:center;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .service-item:hover {
        transform: translateY(-5px);
        background: transparent;
        box-shadow: none;
    }

    .icon-box {
        margin-bottom: 15px;
    }
    .service-info h3 {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .service-info h3 { font-size: 18px; }
    .service-info p { font-size: 13px; }
    .icon-box { width: 65px; height: 65px; }
}


/* =====================================================
  BANNER SECTION HAPPY CLIENT
===================================================== */
/* Section Background - Modern Deep Blue */

/* Animated Abstract Background */
.banner-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Pinterest image style mesh gradient */
    background-color: #5687d0;
    background-image: 
        radial-gradient(at 0% 0%, hsla(210, 100%, 20%, 1) 0px, transparent 50%),
        radial-gradient(at 50% 0%, hsla(200, 100%, 30%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(190, 100%, 40%, 1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(220, 100%, 15%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(205, 100%, 25%, 1) 0px, transparent 50%);
    background-size: 200% 200%;
    animation: meshGradient 15s ease infinite;
}

/* Background Animation logic */
@keyframes meshGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Optional: Floating particles effect (Extra touch) */
.banner-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}
/* Glassy White Card */

 .banner-card {
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(10px); 
    padding: 60px 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    max-width: 1000px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-card:hover {
    transform: translateY(-10px);
}

/* 6-Sided Star Styling & Animation */
.star-icon svg {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 15px rgba(3, 127, 204, 0.4));
    animation: pulseRotate 8s infinite ease-in-out;
}

@keyframes pulseRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Text Enhancements */
.banner-text { text-align: left; }

.top-tag {
    color: #037fcc;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px; /* Professional spacing */
    margin-bottom: 15px;
    display: block;
}

.main-heading {
    font-size: clamp(40px, 10vw, 80px);
    font-weight: 900;
    color: #0a192f;
    line-height: 1.1;
}

.light-blue {
    color: #037fcc;
    position: relative;
}

.highlight-text {
    background: linear-gradient(90deg, #037fcc, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animated Gradient Underline */
.gradient-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.gradient-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #ff4e50, #f9d423, #4facfe, #00f2fe);
    opacity: 0.3;
    z-index: -1;
    border-radius: 5px;
    transition: 0.3s;
}

.banner-card:hover .gradient-underline::after {
    opacity: 0.6;
    height: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-card {
        flex-direction: column;
        padding: 50px 30px;
        text-align: center;
        gap: 30px;
    }
    .banner-text { text-align: center; }
    .main-heading { font-size: 36px; }
    .star-icon svg { width: 80px; height: 80px; }
}
/* =====================================================
  ABOUT SECTION - We Are Your Growth Partner
===================================================== */

/* Container and Layout */
.about-section {
    padding: 5%;
    background-color: #fff;
}

.about-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    max-width: 90vw;
    margin: 0 auto;
}

/* Left Content Styles */
.about-content {
    flex: 1.5;
}

.sub-heading {
    color: #004c8c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 64px;
    font-weight: 900;
    color: #004c8c;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #004c8c;
    text-align: justify;
}

.description a {
    color: #004c8c;
    text-decoration: underline;
    font-weight: 600;
}

/* Right Team Section Styles */
.about-team {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: right
    ;
}

.team-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.member-card {
    text-align: center;
}

.member-card img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.member-card h5 {
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

/* Vertical Text Style */
.vertical-title h2 {
    writing-mode: vertical-rl; /* This rotates the text vertically */
    text-orientation: mixed;
    font-size: 48px;
    font-weight: 900;
    color: #004c8c;
    letter-spacing: 2px;
    margin-left: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .main-heading {
        font-size: 40px;
    }

    .about-team {
        flex-direction: column-reverse;
    }

    .vertical-title h2 {
        writing-mode: horizontal-tb; /* Normal text for mobile */
        margin-top: 20px;
        font-size: 32px;
    }
}
/* =====================================================
   CLIENT LOGO SLIDER (FIXED)
===================================================== */
.client-logo-section {
    margin: 0;
    overflow: hidden;
    background: #f3f8fc;
    padding: 5%; /* padding konjam increase pannirukken visually better-kaaga */
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    
}

/* Linear Gradient Fade (Optional: Side edges-la fade effect tharum) */
.logo-slider::before, .logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
}
.logo-slider::before { left: 0; background: linear-gradient(to right, #f3f8fc 0%, transparent 100%); }
.logo-slider::after { right: 0; background: linear-gradient(to left, #f3f8fc 0%, transparent 100%); }

.logo-track {
    display: flex;
    gap: 25px;
    width: calc(250px * 28); /* Card width + gap-a poruthu track size */
    animation: logoScroll 30s linear infinite; /* Time change panni speed control pannalam */
}

/* Logo Card */
.logo-card {
    min-width: 220px; /* Width fix pannirukken scroll smooth-a irukka */
    height: 140px;
    background: #eaf3f9;
    border: 1px solid #c7dbe8;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-card img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s ease;
    margin-bottom: 12px;
}

.logo-card p {
    font-size: 14px;
    font-weight: 600;
    color: #2b4c66;
    margin: 0;
}

/* Hover Effects */
.logo-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #007bff; /* Primary color hover border */
    box-shadow: 0 15px 30px rgba(43, 76, 102, 0.15);
}

.logo-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Animation Fix - 50% move aana infinite-a theriyum */
@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on Hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* =====================================================
   stats section 
===================================================== */


/* Stats Section Container */
.stats-section {
    padding: 100px 5%;
    font-family: 'Inter', sans-serif;
    color: #ffffff; /* Gradient-la white text nalla theriyum */
    overflow: hidden;
    position: relative;

    /* 1. Deep Blue Mesh Gradient (Image-la irukura mathiri) */
    background-color: #0a192f;
    background-image: 
        radial-gradient(at 0% 0%, hsla(210, 100%, 20%, 1) 0px, transparent 50%),
        radial-gradient(at 50% 0%, hsla(200, 100%, 30%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(215, 100%, 15%, 1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(220, 100%, 12%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(190, 100%, 25%, 1) 0px, transparent 50%);
    
    background-size: 150% 150%;
    animation: statsGradientMove 15s ease infinite;
}

/* Background light-a move aagura animation */
@keyframes statsGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.stats-title {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    margin-bottom: 60px;
}

/* Grid Layout */
.stats-grid {
    display: flex;
    flex-direction: column;
}

/* Individual Stat Item */
.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03); /* Romba light-a transparency */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

/* Hover Effect: Card highlight */
.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.5); /* Blue glow on hover */
}

/* Label with icon styling */
.small-label {
    font-size: 14px;
    font-weight: 700;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
    padding: 6px 12px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.small-label i {
    font-size: 16px;
}

/* Big Numbers Styling */
.number-wrapper {
    color: #ffffff;
    font-size: 80px;
    font-weight: 900;
}

.percent {
    font-size: 40px;
    color: #0d6efd;
    margin-left: 5px;
}

/* Info Side (Right) */
.stat-info {
    text-align: right;
}

.stat-info h3 {
    color: #ffffff;
    font-size: 26px;
}

.stat-info p {
    color: #a0aec0; /* Light gray text */
}

/* Animated Divider Line */
.hr-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.2), transparent);
    width: 100%;
}
.small-label {
    background: rgba(13, 110, 253, 0.2);
    color: #7cd2ff;
    padding: 6px 15px;
    border-radius: 50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 40px 10px;
    }
    .stat-item:hover {
        padding-left: 10px;
    }
    .stat-info { text-align: left; }
    .number-wrapper { font-size: 60px; }
}


/* =====================================================
  flip-section
===================================================== */
/* SECTION */
/* Section Background - Light & Airy */
/* SECTION */
.services-section-new {
    padding: 80px 20px;
    background: #ffffff; /* white bg as you asked */
    text-align: center;
    position: relative; /* MUST for absolute child */
    overflow: hidden;   /* pills outside pogama irukka */
    min-height: 50%;
    background: #f8fbff;
}

/* Physics container */
#physics-container {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 87%;

    z-index: 1; /* background layer */
    pointer-events: auto;
}
.services-section-new {
    padding: 100px 5%;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
    min-height: 120vh; /* Content + Physics space */
}
.services-section-new::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
    top: -100px; right: -100px;
}
/* Your content mela irukanum */
.servies-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Top align for sticky effect */
    gap: 60px;
    position: relative;
    z-index: 2; /* Above physics pills */
    max-width: 1300px;
    margin: 0 auto;
}

/* Cards mela irukanum */
.services-grid {
    position: relative;
    z-index: 3;
}
/* TITLE */
.services-title {
   font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: #1a2a3a;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

/* MAIN CONTAINER */
.servies-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT SIDE STYLING */
.left-container {
    flex: 1;
    position: sticky;
    top: 100px; 
    text-align: left;
     display: flex;
    flex-direction: column;
    justify-content: center;
}
/* CENTER BADGE */
.center-badge {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #1a2a3a;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    align-self: center; /* Center the badge in the flex container */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.services-main-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #1a2a3a;
    line-height: 1.1;
    margin: 20px 0;
}

.services-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #037fcc;
}

.services-subtitle .line {
    width: 30px;
    height: 2px;
    background: #037fcc;
}

.services-subtitle h4 {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}
.services-content {
    margin-top: 15px;
    line-height: 1.7;
    font-size: 15px;
    color: #555;
    max-width: 500px;
}
/* RIGHT SIDE */
.right-container {
    flex: 2;
    min-width: 300px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* FLIP CARD */
/* FLIP CARD - OLD DESIGN (GLASS + MODERN) */
.flip-card {
    width: 280px;
    height: 220px;
    perspective: 1200px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 200px;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT & BACK COMMON */
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    backface-visibility: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* FRONT - GLASS EFFECT */
.flip-front {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgb(0, 106, 255);

    color: #1a2a3a;
}

.flip-front::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px; /* Border thickness */
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

/* ICON */
.flip-front img {
    width: 55px;
    margin-bottom: 12px;
    filter: drop-shadow(0 10px 15px rgba(3, 127, 204, 0.2));
}

/* TITLE */
.flip-front h3 {
    font-size: 18px;
    font-weight: 700;
    color: #037fcc;
    text-align: center;
}

/* BACK - GRADIENT */
.flip-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #0a192f;
}

/* BACK ICON */
.flip-back img {
    width: 55px;
    margin-bottom: 12px;
}

/* BACK TEXT */
.flip-back h3 {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* PHYSICS CONTAINER (kept as you said) */
.pill-drop-container {
    margin-top: 60px;
    height: 200px;
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  
    .servies-container {
        flex-direction: column;
    }

    .services-title {
        font-size: 26px;
    }

    .center-badge {
        width: 140px;
        height: 140px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {

    .services-section-new {
        min-height: 200vh; /* increase height */
        padding-bottom: 260px; /* extra space */
    }

}
@media (max-width: 768px) {

    #physics-container {
        height: 100%; /* full section height */
        top: 0; /* avoid gap */
    }

}
/* =====================================================
   PASTEL GRADIENT VARIANTS (Based on image 4 style)
===================================================== */
/* Variants: [tag-variant-[number]] */
.tag-variant-1 {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%); /* cyan-blue like #Leads */
    color: #ffffff;
}
.tag-variant-2 {
    background: linear-gradient(135deg, #a0cfea 0%, #e1f5fe 100%); /* pastel blue-white like #Conversion */
    color: #1a2a3a;
}
.tag-variant-3 {
    background: linear-gradient(135deg, #d3eebd 0%, #f1f8e9 100%); /* pastel green like #Sales */
    color: #0a2f1a;
}
.tag-variant-4 {
    background: linear-gradient(135deg, #ffccb3 0%, #ffebcd 100%); /* pastel orange like #Designing */
    color: #2a1a0d;
}
.tag-variant-5 {
    background: linear-gradient(135deg, #9b6ff8 0%, #e0cffc 100%); /* pastel purple like #Awesome */
    color: #2d0d2a;
}
.tag-variant-6 {
    background: linear-gradient(135deg, #f2a2e1 0%, #ffe0fc 100%); /* pastel pink like #Marketing */
    color: #2d0d2a;
}

/* ================================
process-section
================================ */


.process-section {
    padding: 80px 20px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.process-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 10px;
}

.gradient-text {
    background: linear-gradient(90deg, #8338ec, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text {
    color: #636e72;
    margin-bottom: 80px;
}

/* Wrapper and SVG */
.process-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    height: 550px;
}

.process-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#mask-path {
    /* 3000 is a safe length for this specific path */
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: drawDashedLine 4s linear forwards;
}

@keyframes drawDashedLine {
    from {
        stroke-dashoffset: 3000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Positioning each step in a Zig-Zag */
.process-step {
    position: absolute;
    width: 250px;
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: fadeInStep 0.5s ease forwards;
}

.step1 { top: 30px;  left: 30px; }
.step2 { top: 30px;  left: 420px; }
.step3 { top: 30px;  left: 820px; }
.step4 { top: 250px; left: 820px; }
.step5 { top: 250px; left: 420px; }
.step6 { top: 250px; left: 30px; }

.step1 { animation-delay: 0.2s; }
.step2 { animation-delay: 0.9s; }
.step3 { animation-delay: 1.6s; }
.step4 { animation-delay: 2.3s; }
.step5 { animation-delay: 3.0s; }
.step6 { animation-delay: 3.7s; }

@keyframes fadeInStep {
    to { opacity: 1; }
}
/* The Number Circles */
.circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Gradient Colors for Circles */
.c-green  { background: linear-gradient(135deg, #7bdcb5, #00d084); box-shadow: 0 10px 25px rgba(123, 220, 181, 0.4); }
.c-orange { background: linear-gradient(135deg, #ffb88c, #ff6900); box-shadow: 0 10px 25px rgba(255, 105, 0, 0.4); }
.c-blue   { background: linear-gradient(135deg, #2193b0, #0693e3); box-shadow: 0 10px 25px rgba(6, 147, 227, 0.4); }
.c-pink   { background: linear-gradient(135deg, #f78da7, #cf2e2e); box-shadow: 0 10px 25px rgba(247, 141, 167, 0.4); }
.c-purple { background: linear-gradient(135deg, #9b51e0, #8338ec); box-shadow: 0 10px 25px rgba(155, 81, 224, 0.4); }
.c-cyan   { background: linear-gradient(135deg, #8ed1fc, #00c2ff); box-shadow: 0 10px 25px rgba(142, 209, 252, 0.4); }

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #12141d;
}

.process-step p {
    font-size: 13px;
    color: #70798b;
    line-height: 1.6;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .process-wrapper { height: auto; }
    .process-svg { display: none; }
    .process-step { position: relative !important; left: 0 !important; top: 0 !important; width: 100%; margin-bottom: 50px; }
}

/* ================= FAQ SECTION SPECIFIC ================= */
.faq-container {
    width: 100%;
    padding: 80px 5%;
    background: linear-gradient(135deg, #7eb6e7 0%, #004a99 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    color: white;
    text-align: center;
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 50px;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    width: 100%;
    max-width: 1200px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: fit-content; /* Content size-ku mathanum */
}

.faq-main {
    padding: 18px 25px;
    display: flex;
    align-items: center;
}

.faq-item:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-left {
    color: #004a99;
    font-size: 1.1rem;
    margin-right: 18px;
    width: 25px;
    text-align: center;
}

.faq-item p {
    flex: 1;
    font-size: 0.95rem;
    color: #2b2e4a;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    align-self: flex-start;
    text-align: left;
}

.plus-icon {
    color: #004a99;
    font-size: 1.4rem;
    margin-left: 10px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* Accordion Answer Styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    background: #fdfdfd;
    border-radius: 0 0 8px 8px;
}

.faq-answer p {
    padding: 0 25px 18px 68px; /* Icon gap kooda align aaga */
    font-size: 0.9rem;
    color: #555;
    font-weight: 400;
}

/* Active State */
.faq-item.active {
    border: 1px solid #ffffff;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Expand aagum */
}

/* Custom Arrow logic for the dropdown */
.input-group {
    position: relative;
}

/* Add this to your CSS */
.input-group select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 114, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 15px;
    outline: none;
    transition: 0.3s;
    font-size: 16px;
    appearance: none; /* Default arrow hide panna */
    cursor: pointer;
    color: #1a2a3a;
}

/* Blue Arrow icon inside the select box */
.input-group::after {
    content: '\f107'; /* Font Awesome Down Arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #0072ff;
    pointer-events: none;
    transition: 0.3s;
}

/* Rotate arrow when active (optional) */
.input-group:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Fixed Label Animation for Select */
.input-group select:focus ~ label, 
.input-group select:valid ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: #0072ff;
    color: white;
    padding: 2px 10px;
    border-radius: 5px;
    z-index: 10;
}

/* Dropdown options styling */
.input-group select option {
    background: white;
    color: #1a2a3a;
}

/* Responsive: 1 Column */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

/* ================= CONTACT ================= */
.contact-section {
    background: #f0f4f8;
    padding: 5%;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

/* Background Shapes */
.contact-bg-shape {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
    border-radius: 50%;
}
.shape-1 { width: 300px; height: 300px; background: rgba(0, 198, 255, 0.2); top: -50px; left: -50px; }
.shape-2 { width: 400px; height: 400px; background: rgba(123, 31, 162, 0.1); bottom: -100px; right: -50px; }

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 5;
    align-items: center;
}

/* Left Info Styling */
.contact-info .sub-title {
    color: #0072ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.contact-info h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: #1a2a3a;
    line-height: 1.2;
    margin: 15px 0;
}

.contact-info h2 span {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.08);
    border: 1px solid rgba(0, 114, 255, 0.05);
    transition: 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 114, 255, 0.12);
}

.icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
}

.icon-box i {
    color: #ffffff;
    font-size: 22px;
}

.info-text b {
    display: block;
    color: #1a2a3a;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text p {
    color: #556677;
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
}

.floating-img {
    width: 100%;
    margin-top: 50px;
    /* animation: float 6s ease-in-out infinite; */
}

/* FORM CARD - Glassmorphism */
.contact-form-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 114, 255, 0.1);
}

.form-header h3 { font-size: 24px; color: #1a2a3a; margin-bottom: 5px; }
.form-header p { font-size: 14px; color: #666; margin-bottom: 30px; }

/* Interactive Input Group */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 114, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 15px;
    outline: none;
    transition: 0.3s;
    font-size: 16px;
}

.input-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #888;
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group input:not(:placeholder-shown) {
    border-color: #0072ff;
    background: white;
}

.input-group input:focus ~ label, 
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: #0072ff;
    color: white;
    padding: 2px 10px;
    border-radius: 5px;
}

.form-row { display: flex; gap: 20px; }

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-card { padding: 30px; }
    .form-row { flex-direction: column; gap: 0; }
}

/* ================= FOOTER TOP ================= */
.footer-top {
    padding: 60px 5%;
    background: #f5f7fa;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-about {
    max-width: 300px;
    color: #666;
}

.footer-subscribe h4,
.footer-links h4 {
    margin-bottom: 10px;
}

.subscribe-box {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 10px;
}

.subscribe-box input {
    border: none;
    padding: 10px;
    flex: 1;
}

.subscribe-box button {
    background: linear-gradient(90deg,#00c6ff,#00ff94);
    border: none;
    padding: 10px 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin: 5px 0;
    cursor: pointer;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
    padding: 30px 5%;
    text-align: center;
    border-top: 1px solid #ddd;
}

.services-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    color: #444;
}

copyright {
    color: #888;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .contact-container,
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }
}
/* ================= BLOG SECTION ================= */
/* ================= BLOG SECTION ================= */
.blog-page {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

/* Heading */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header .tag {
    color: #037fcc;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-header .title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    color: #1a2a3a;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= CARD (FLIP FRONT STYLE) ================= */
.blog-card {
    position: relative;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    padding: 0;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* 🔥 Gradient Border like flip-front */
.blog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0.5;
    pointer-events: none;
}

/* Hover */
.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(3, 127, 204, 0.15);
}

/* ================= IMAGE ================= */
.blog-img {
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

/* ================= CONTENT ================= */
.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

/* Meta */
.blog-meta {
    font-size: 13px;
    color: #666;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Title (same as flip-front h3 style) */
.blog-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #037fcc;
    margin-bottom: 10px;
    text-align:left;
}

/* Description */
.blog-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align:left;
}

/* Button */
.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #037fcc;
    text-decoration: none;
    transition: 0.3s;

    margin-left: auto;
}

.blog-btn:hover {
    gap: 12px;
    color: #00c6ff;
}

/* ================= EXTRA EFFECT (OPTIONAL 🔥) ================= */
/* subtle glow on hover like flip cards */
/* BIG VIEW MORE BUTTON (Center) */
.view-more-container {
    text-align: center;
    margin-top: 60px;
    width: 100%;
}

.main-view-btn {
    display: inline-block;
    position: relative;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #1a2a3a; /* Text color */
    background: #ffffff; /* Button inner background */
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: none;
}

/* 🔥 The Gradient Border Logic using Pseudo-element */
.main-view-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px; /* Border thickness */
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    
    opacity: 0.5;
    transition: 0.4s;
}

/* Hover Background Slide Effect */
.main-view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    transition: all 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

/* Hover States */
.main-view-btn:hover {
    color: #ffffff; /* Text white aagum background varumbodhu */
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 127, 204, 0.3);
}

.main-view-btn:hover::before {
    width: 100%;
}

.main-view-btn:hover::after {
    opacity: 1; /* Border-um innum bright aagum */
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .main-view-btn {
        padding: 14px 35px;
        font-size: 15px;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
//=============
// Footer Styling
//=============

.main-footer {
    background: #0a1118; /* Deep Dark Blue */
    color: #ffffff;
    padding-top: 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* 1. Services Marquee Style */
.footer-marquee {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-content span {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 40px;
    color: white;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
/* 2. Footer Main Grid */
/* ================= FOOTER ================= */
.footer-section {
    background: linear-gradient(135deg, #0f1c3f, #020617);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle glow */
.footer-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #00c6ff;
    filter: blur(140px);
    top: -150px;
    right: -150px;
    opacity: 0.15;
}

/* ================= GRID ================= */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 5% 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* ================= HEADINGS ================= */
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    color: #fff;
    font-weight: 700;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 10px;
}

/* ================= LOGO ================= */
.footer-logo {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.footer-logo span {
    color: #00c6ff;
}
.footer-logo-image{
    width: 150px;
    margin-left: 2px;
}
/* ================= TEXT ================= */
.about p {
    line-height: 1.7;
    color: #a0aab5;
    font-size: 14px;
    max-width: 320px;
}

/* ================= SOCIAL ================= */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.4);
}

/* ================= LINKS ================= */
.links ul {
    list-style: none;
    padding: 0;
}

.links ul li {
    margin-bottom: 10px;
}

.links ul li a {
    color: #a0aab5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.links ul li a:hover {
    color: #00c6ff;
    transform: translateX(6px);
}

/* ================= COPYRIGHT ================= */
.footer-copyright {
    width: 100%;
    margin-top: 5px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #8892a0;
    font-size: 13px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .about p {
        margin: 0 auto;
    }
}
