/* ----------------------------------------------------
   GLOBAL THEME COLORS (From Logo)
---------------------------------------------------- */
:root {
    --primary: #F6601B;      /* Orange */
    --secondary: #4A7CBB;    /* Blue */
    --accent: #4A7CBB;       /* Blue */
    --light: #F4F4F4;        /* Light white/grey */
    --soft: #D1BCB1;         /* Soft beige */
    --dark: #2A2D3E;         /* Neutral dark */
    --text: #333333;         /* Standard text */
}

/* ----------------------------------------------------
   RESET
---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

/* ----------------------------------------------------
   NAVIGATION
---------------------------------------------------- */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    margin-right:-45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.386);
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.dynamic-text {
    color: var(--accent);
    position: relative;
}

.dynamic-text::after {
    content: "|";
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-graphics {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* animated floating nodes */
.data-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ----------------------------------------------------
   SERVICES SECTION
---------------------------------------------------- */
.services {
    padding: 100px 5%;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

/* ----------------------------------------------------
   RESULTS SECTION
---------------------------------------------------- */
.results {
    /* padding: 100px 5%; */
    background: var(--dark);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ----------------------------------------------------
   CLIENTS SECTION
---------------------------------------------------- */
.clients {
    padding: 80px 5%;
    background: var(--light);
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    height: 40px;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ----------------------------------------------------
   IDEA LAB SECTION
---------------------------------------------------- */
.idea-lab {
    padding: 100px 5%;
    background: white;
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lab-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.lab-card:hover {
    transform: translateY(-5px);
}

/* ----------------------------------------------------
   ROI CALCULATOR
---------------------------------------------------- */
.calculator {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
}

.calc-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.calc-input {
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
}

.calc-result {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 2rem;
    color: var(--accent);
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
/* footer {
    background:#020681;
    color: white;
    padding: 50px 5% 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
} */

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-graphics {
        display: none;
    }

    .nav-links {
        display: none;
    }
}










/* Dropdown container */
.dropdown {
    position: relative;
}

/* SERVICES button */
.dropbtn {
    padding: 10px;
    cursor: pointer;
    display: inline-block;
}

/* Mega Dropdown WITH FRAME */
.dropdown-content {
    display: none;
    position: absolute;
    left: 200px;
    top: 45px;

    background: #fff;
    padding: 25px;
    display: flex;
    gap: 40px;

    border: 2px solid #e5e5e5;      /* FRAME BORDER */
    border-radius: 12px;            /* ROUNDED CORNERS */
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);

    z-index: 20;
}

/* Columns */
.dropdown-column {
    min-width: 230px;
}

.dropdown-column h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #111;
}

.dropdown-column a {
    display: block;
    padding: 6px 0;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

.dropdown-column a:hover {
    color: #6C63FF;
    padding-left: 5px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: flex;
}





/* carosol */

        
        .compact-container {
            width: 100%;
            display: flex;
            flex-direction: row;
            background: linear-gradient(135deg, #e23c3c, #3c49be);
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(100, 116, 139, 0.3);
            min-height: 600px;
            position: relative;
        }
        
        .compact-floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        
        .compact-floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
            filter: blur(5px);
            animation: float 6s infinite ease-in-out;
        }
        
        .compact-floating-element:nth-child(2) {
            animation-delay: 1s;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1));
        }
        
        .compact-floating-element:nth-child(3) {
            animation-delay: 2s;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
        }
        
        .compact-floating-element:nth-child(4) {
            animation-delay: 3s;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        .compact-text-section {
            flex: 1;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }
        
        .compact-text-content {
            display: none;
            animation: fadeIn 0.8s ease;
        }
        
        .compact-text-content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .compact-text-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: white;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        
        .compact-text-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #cbd5e1;
            margin-bottom: 30px;
        }
        
        .compact-features {
            list-style: none;
            margin: 25px 0 35px 0;
        }
        
        .compact-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            font-size: 1.05rem;
        }
        
        .compact-features li i {
            color: #3b82f6;
            margin-right: 12px;
            font-size: 1.2rem;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .compact-counter {
            font-size: 1.1rem;
            color: #94a3b8;
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        .compact-counter span {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            margin-right: 5px;
        }
        
        .compact-btn {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }
        
        .compact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
        }
        
        .compact-btn i {
            margin-right: 10px;
        }
        
        .compact-indicators {
            display: flex;
            gap: 12px;
            margin-top: 40px;
        }
        
        .compact-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #475569;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .compact-indicator.active {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transform: scale(1.3);
        }
        
        .compact-image-section {
            flex: 1;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }
        
        .compact-image-container {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .compact-image-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.8s ease;
            display: flex;
            align-items: flex-end;
            padding: 40px;
        }
        
        .compact-image-item.active {
            opacity: 1;
        }
        
        .compact-image-caption {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 12px;
            max-width: 80%;
            border-left: 4px solid #3b82f6;
        }
        
        .compact-image-caption h3 {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }
        
        .compact-image-caption p {
            color: #cbd5e1;
            font-size: 1rem;
        }
        
        .compact-nav-buttons {
            position: absolute;
            bottom: 30px;
            right: 30px;
            display: flex;
            gap: 15px;
            z-index: 10;
        }
        
        .compact-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(30, 41, 59, 0.9);
            border: 1px solid rgba(100, 116, 139, 0.3);
            color: #cbd5e1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .compact-nav-btn:hover {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            transform: translateY(-3px);
        }
        
        .compact-progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(100, 116, 139, 0.3);
        }
        
        .compact-progress {
            height: 100%;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            width: 14.28%;
            transition: width 0.3s ease;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .compact-container {
                flex-direction: column;
                min-height: auto;
            }
            
            .compact-text-section {
                padding: 40px 30px;
            }
            
            .compact-text-content h2 {
                font-size: 2rem;
            }
            
            .compact-image-section {
                height: 400px;
            }
        }
        
        @media (max-width: 576px) {
            .compact-text-content h2 {
                font-size: 1.8rem;
            }
            
            .compact-features li {
                font-size: 1rem;
            }
            
            .compact-nav-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .compact-nav-btn {
                width: 45px;
                height: 45px;
            }
        }

        /* carosol end */



