/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        /* Tech-style particles - Updated to orange theme */
        .particle {
            position: absolute;
            background: #FF8C00;
            border-radius: 50%;
            pointer-events: none;
            box-shadow: 0 0 10px #FF8C00, 0 0 20px #FF8C00, 0 0 30px #FF8C00;
        }

        .particle.square {
            border-radius: 0;
            transform: rotate(45deg);
            background: #FFB347;
            box-shadow: 0 0 8px #FFB347, 0 0 16px #FFB347;
        }

        .particle.diamond {
            width: 0 !important;
            height: 0 !important;
            background: transparent !important;
            border: 3px solid #FF8C00;
            border-radius: 0;
            transform: rotate(45deg);
            box-shadow: 0 0 10px #FF8C00;
        }

        .particle.hex {
            border-radius: 0;
            background: #FFB347;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            box-shadow: 0 0 12px #FFB347;
        }

        /* Individual particle animations */
        .particle:nth-child(1) {
            width: 3px; height: 3px;
            left: 5%; top: 100%;
            animation: float-up 12s infinite linear;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            width: 4px; height: 4px;
            left: 15%; top: 100%;
            animation: float-diagonal 15s infinite linear;
            animation-delay: -2s;
        }

        .particle:nth-child(3) {
            width: 6px; height: 6px;
            left: 25%; top: 100%;
            animation: float-up 18s infinite linear;
            animation-delay: -4s;
        }

        .particle:nth-child(4) {
            width: 8px; height: 8px;
            left: 35%; top: 100%;
            animation: float-wave 10s infinite linear;
            animation-delay: -1s;
        }

        .particle:nth-child(5) {
            width: 5px; height: 5px;
            left: 45%; top: 100%;
            animation: float-up 14s infinite linear;
            animation-delay: -3s;
        }

        .particle:nth-child(6) {
            width: 7px; height: 7px;
            left: 55%; top: 100%;
            animation: float-diagonal 20s infinite linear;
            animation-delay: -5s;
        }

        .particle:nth-child(7) {
            width: 4px; height: 4px;
            left: 65%; top: 100%;
            animation: float-wave 16s infinite linear;
            animation-delay: -2.5s;
        }

        .particle:nth-child(8) {
            width: 6px; height: 6px;
            left: 75%; top: 100%;
            animation: float-up 11s infinite linear;
            animation-delay: -1.5s;
        }

        .particle:nth-child(9) {
            width: 3px; height: 3px;
            left: 85%; top: 100%;
            animation: float-diagonal 13s infinite linear;
            animation-delay: -4.5s;
        }

        .particle:nth-child(10) {
            width: 5px; height: 5px;
            left: 95%; top: 100%;
            animation: float-wave 17s infinite linear;
            animation-delay: -3.5s;
        }

        .particle:nth-child(11) {
            width: 10px; height: 10px;
            left: 10%; top: 100%;
            animation: float-up 22s infinite linear;
            animation-delay: -6s;
        }

        .particle:nth-child(12) {
            width: 8px; height: 8px;
            left: 30%; top: 100%;
            animation: float-diagonal 8s infinite linear;
            animation-delay: -1.8s;
        }

        .particle:nth-child(13) {
            width: 12px; height: 12px;
            left: 70%; top: 100%;
            animation: float-wave 25s infinite linear;
            animation-delay: -7s;
        }

        .particle:nth-child(14) {
            width: 6px; height: 6px;
            left: 90%; top: 100%;
            animation: float-up 9s infinite linear;
            animation-delay: -2.2s;
        }

        .particle:nth-child(15) {
            width: 4px; height: 4px;
            left: 50%; top: 100%;
            animation: float-diagonal 19s infinite linear;
            animation-delay: -5.5s;
        }

        /* Animation keyframes */
        @keyframes float-up {
            0% {
                transform: translateY(0) scale(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) scale(1.5) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes float-diagonal {
            0% {
                transform: translate(0, 0) scale(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translate(100px, -100vh) scale(1.2) rotate(180deg);
                opacity: 0;
            }
        }

        @keyframes float-wave {
            0% {
                transform: translate(0, 0) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            25% {
                transform: translate(30px, -25vh) scale(0.8);
            }
            50% {
                transform: translate(-20px, -50vh) scale(1);
            }
            75% {
                transform: translate(40px, -75vh) scale(1.1);
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translate(0, -100vh) scale(1.3);
                opacity: 0;
            }
        }

        /* Data stream lines - Updated to orange theme */
        .data-stream {
            position: absolute;
            width: 1px;
            height: 100px;
            background: linear-gradient(to bottom, transparent, #FF8C00, transparent);
            animation: stream 3s infinite linear;
        }

        .stream-1 {
            left: 20%;
            animation-delay: 0s;
        }

        .stream-2 {
            left: 60%;
            animation-delay: -1s;
        }

        .stream-3 {
            left: 80%;
            animation-delay: -2s;
        }

        @keyframes stream {
            0% {
                transform: translateY(-100px);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(100vh);
                opacity: 0;
            }
        }

        /* Floating circuit elements - Updated to orange theme */
        .circuit-element {
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid #FF8C00;
            background: rgba(255, 140, 0, 0.1);
            animation: circuit-float 15s infinite ease-in-out;
        }

        .circuit-1 {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .circuit-2 {
            top: 70%;
            right: 15%;
            animation-delay: -5s;
            border-radius: 50%;
        }

        .circuit-3 {
            bottom: 30%;
            left: 80%;
            animation-delay: -10s;
            transform: rotate(45deg);
        }

        @keyframes circuit-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 0.8;
            }
        }

        /* Content styling - Updated to orange theme */
        .content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: #fff;
            max-width: 900px;
            padding: 2rem;
        }

        .content h1 {
            font-size: 4rem;
            font-weight: 300;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #fff, #FF8C00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
            letter-spacing: 2px;
        }

        .content p {
            font-size: 1.3rem;
            opacity: 0.8;
            line-height: 1.8;
            font-weight: 300;
            color: #b0b0b0;
        }

        .tech-accent {
            color: #FF8C00;
            text-shadow: 0 0 10px #FF8C00;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .content h1 {
                font-size: 2.8rem;
            }
            
            .content p {
                font-size: 1.1rem;
            }
            
            .circuit-element {
                display: none;
            }
        }

/* Buttons - Updated to orange theme */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #FF8C00;
}

.btn-outline:hover {
    background: #FF8C00;
    color: white;
    transform: translateY(-3px);
}

.btn-white {
    background: white;
    color: #333;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

/* Dark theme button variants */
.btn-outline-dark {
    background: transparent;
    color: #333;
    border-color: #FF8C00;
}

.btn-outline-dark:hover {
    background: #FF8C00;
    color: white;
    transform: translateY(-3px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF8C00;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo img{
    width: 50%;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #2C3E50;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    font-size: 16px;
}

.nav-links a:hover {
    color: #FF8C00;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #FF8C00;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}
/* Navigation Active States */
.nav-links a.active {
    color: #FF8C00;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
    background: #FF8C00;
}

/* Dropdown menu active state */
.dropdown-menu a.active {
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding-left: 2rem;
    font-weight: 600;
}

/* Mobile menu active state */
.nav-links.active a.active {
    color: #FF8C00;
    font-weight: 600;
}


/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    min-width: 220px;
    border-radius: 15px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2C3E50;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding-left: 2rem;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2C3E50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Updated to orange theme */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #292a61 0%, #21223b 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff05" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 50px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #FFB347, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.card-1 {
    top: 25%;
    left: 40%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 10%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 5%;
    left: 15%;
    animation-delay: 1s;
}

.card-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}
.card-5 {
    top: 5%;
    left: 5%;
    animation-delay: 1s;
}
/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Stats Section - Updated to navy theme */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #282a61 0%, #2a2962 50%, #0f0a5b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 140, 0, 0.3), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 179, 71, 0.3), transparent 50%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stats-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.stats-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto ;
    position: relative;
    z-index: 1;
}

.stats-icon i {
    font-size: 2rem;
    color: white;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stats-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stats-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* About Section - WHITE THEME */
.about-section {
    padding: 60px 0;
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* About Visual with Masked Image */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.masked-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.masked-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    -webkit-mask-image: 
        radial-gradient(circle at 20% 20%, transparent 20px, black 22px),
        radial-gradient(circle at 80% 20%, transparent 20px, black 22px),
        radial-gradient(circle at 20% 80%, transparent 20px, black 22px),
        radial-gradient(circle at 80% 80%, transparent 20px, black 22px);
    mask-image: 
        radial-gradient(circle at 20% 20%, transparent 20px, black 22px),
        radial-gradient(circle at 80% 20%, transparent 20px, black 22px),
        radial-gradient(circle at 20% 80%, transparent 20px, black 22px),
        radial-gradient(circle at 80% 80%, transparent 20px, black 22px);
    transition: transform 0.3s ease;
}

.masked-image:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2C3E50;
    font-weight: 600;
}

.badge-content i {
    color: #FF8C00;
    font-size: 1.5rem;
}

/* Services Section - Updated to navy theme */
.services-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #282964 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FF8C00" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
}

.services-section .section-title {
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-section .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.modern-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-card:hover::before {
    transform: scaleX(1);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 140, 0, 0.3);
    line-height: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.services-section .modern-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.services-section .modern-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #FFB347;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Portfolio Section - WHITE THEME */
.portfolio-section {
    padding: 60px 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.portfolio-item.featured {
    grid-row: span 2;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    -webkit-mask-image: 
        linear-gradient(135deg, black 60%, transparent 100%);
    mask-image: 
        linear-gradient(135deg, black 60%, transparent 100%);
}

.portfolio-item.featured .portfolio-image img {
    height: 350px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 140, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-image:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-image:hover img {
    transform: scale(1.1);
}

.portfolio-link {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-category {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #FFB347;
    gap: 1rem;
}

/* Testimonials Section - Updated to navy theme */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #282a5f 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: radial-gradient(circle, black 70%, transparent 100%);
    mask-image: radial-gradient(circle, black 70%, transparent 100%);
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* CTA Section - Updated to orange theme */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #292a62 0%, #282a60e3 50%, #292961fa 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(44, 62, 80, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Footer - Updated to navy theme */
.footer {
    background: #18184e;
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF8C00, transparent);
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.company-info {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.company-info p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF8C00;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #232351;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #4a5a6a;
}

.social-links a:hover {
    background: #FF8C00;
    border-color: #FF8C00;
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: #FF8C00;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    width: 20px;
}

.contact-item p {
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Dark theme section description color override */
.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    from { filter: hue-rotate(0deg); }
    to { filter: hue-rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS Animation */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .about-wrapper {
        gap: 3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .portfolio-item.featured {
        grid-row: span 1;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    .hero {
    height: 130vh;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item.featured {
        grid-column: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-cards {
        height: 300px;
    }

    .floating-card {
        padding: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-item {
        padding: 2rem 1.5rem;
    }
}