/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PlayfairDisplay';
    src: url('../fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
:root {
    --primary-color: #2D5BFF;
    --secondary-color: #1E3A8A;
    --dark-bg: #0A0E27;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Montserrat', serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}
h2{
    font-family: "Playfair Display" , serif;
}
img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    position: relative;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo img {
    width: 32px;
    height: 32px;
}

.nav-menu-item{
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-info,
.email-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.contact-info i,
.email-info i {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-gray);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 3rem 0 3rem;
    background: linear-gradient(180deg, #F0F4FF 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 91, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    color: #0A0E27;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
    text-decoration-style: wavy;
}

.hero-description {
    font-size: 1.05rem;
    color: #6B7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    gap: 0.6rem;
}

.btn-primary {
    background: var(--primary-color);
    padding: 1.1rem 2.2rem;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #E5E7EB;
    color: var(--text-dark);
    padding: 1.05rem 2.2rem;
}

.btn-outline i {
    color: var(--primary-color);
}

.trusted-by {
    margin-top: 3rem;
}

.trusted-by p {
    font-size: 0.7rem;
    color: #9CA3AF;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.trusted-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.logo-item i {
    font-size: 0.5rem;
}
.logo-text-footer{
    color: white;
    font-size: 26px;
    font-weight: 700;
}
.footer-logo{
    width: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-logo img{
    width: 100%;
}
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.blue-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #A8C5FF 0%, #5B8DEF 50%, #2D5BFF 100%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-laptop {
    position: relative;
    width: 100%;
    max-width: 650px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
    z-index: 2;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.code-card {
    top: 12%;
    left: -2%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatSlow 4s ease-in-out infinite;
}

.code-icon {
    width: 100%;
    height: 100%;
    /* background: rgba(45, 91, 255, 0.1); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-card i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.cactus-card {
    bottom: 25%;
    left: 5%;
    width: 50px;
    height: 60px;
    padding: 0.5rem;
    animation: float 5s ease-in-out infinite;
}

.cactus-plant {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stats-card {
    top: 10%;
    right: -5%;
    animation: floatSlow 5s ease-in-out infinite 0.5s;
}

.performance-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.chart-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 600;
}

.chart-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid var(--primary-color);
    border-top-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-percentage {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.chart-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.7rem;
    color: var(--text-gray);
}

.stat-line span {
    color: var(--primary-color);
}

.projects-card {
    bottom: 8%;
    right: -8%;
    min-width: 140px;
    animation: float 4.5s ease-in-out infinite 1s;
}

.projects-info {
    text-align: left;
}

.projects-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 600;
}

.projects-count {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 0.3rem 0;
}

.projects-text {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.letter-card {
    bottom: -3%;
    right: 20%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatSlow 5s ease-in-out infinite 1.5s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.letter-n {
    height: 90%;
    width: 90%;
}
.letter-n img{
    width: 100%;
    height: 100%;
}

/* About Section */
.about-section {
    padding: 2rem 0;
    background: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 5rem;
    align-items: center;
}

/* About Video Container */
.about-video-container {
    position: relative;
    max-width: 450px; /* Reduced width to control height */
    margin: 0 auto;
}

.video-player-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 91, 255, 0.25);
    background: linear-gradient(135deg, #f0f4ff 0%, #e5e7eb 100%);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s;
}

.video-player-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(45, 91, 255, 0.35);
}

.about-video {
    width: 100%;
    height: auto;
    max-height: 580px; /* Control maximum height */
    display: block;
    border-radius: 24px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(45, 91, 255, 0.2) 0%, rgba(69, 139, 201, 0.7) 100%); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 1;
    transition: opacity 0.3s;
    cursor: pointer;
    border-radius: 24px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.custom-play-btn {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: pulsePlay 2s infinite;
}

.custom-play-btn i {
    margin-left: 5px;
}

.custom-play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@keyframes pulsePlay {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.video-title {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideUpVideo 0.8s ease-out;
}

.video-title i {
    font-size: 1.3rem;
}

@keyframes slideUpVideo {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Stats Video */
.floating-stats-video {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 10;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease-out;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(45, 91, 255, 0.25);
}

.stat-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    color: var(--white);
    font-size: 1.3rem;
}

.stat-card h4 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Embed Wrapper - Keep for backwards compatibility */
.video-embed-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 91, 255, 0.25);
    background: linear-gradient(135deg, #f0f4ff 0%, #e5e7eb 100%);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s;
}

.video-embed-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(45, 91, 255, 0.35);
}

.video-frame {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for proper video display */
    min-height: 500px; /* Minimum height */
    max-height: 80vh; /* Don't exceed viewport */
    background: #000;
    border-radius: 24px;
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(193, 53, 132, 0.4);
    z-index: 3;
    animation: slideUpBadge 0.8s ease-out;
}

.video-badge i {
    font-size: 1.2rem;
}

@keyframes slideUpBadge {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Video Embed Responsive */
@media (max-width: 1024px) {
    .about-video-container {
        max-width: 400px; /* Smaller for tablet */
    }
    
    .video-player-wrapper,
    .video-embed-wrapper {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .video-frame {
        height: 550px; /* Slightly shorter for tablet */
        min-height: 500px;
    }
    
    .floating-stats-video {
        bottom: -25px;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-video-container {
        margin-bottom: 4rem;
        max-width: 100%; /* Full width on mobile */
    }
    
    .video-player-wrapper,
    .video-embed-wrapper {
        border-radius: 20px;
    }
    
    .about-video,
    .video-overlay {
        border-radius: 20px;
        max-height: 500px; /* Control height on mobile */
    }
    
    .video-frame {
        height: 500px; /* Fixed height for mobile */
        min-height: 450px;
        border-radius: 20px;
    }
    
    .custom-play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .video-title {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .floating-stats-video {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-card {
        padding: 1.2rem 1.8rem;
    }
    
    .video-badge {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
        bottom: 15px;
    }
    
    .video-badge i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-player-wrapper,
    .video-embed-wrapper {
        border-radius: 16px;
    }
    
    .about-video,
    .video-overlay {
        border-radius: 16px;
    }
    
    .video-frame {
        border-radius: 16px;
        height: 500px; /* Keep minimum 500px */
        min-height: 500px;
    }
    
    .custom-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .video-title {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .floating-stats-video {
        gap: 0.8rem;
    }
    
    .stat-card {
        flex: 1;
        min-width: 140px;
    }
    
    .stat-card h4 {
        font-size: 1.6rem;
    }
    
    .stat-card p {
        font-size: 0.8rem;
    }
    
    .video-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        bottom: 10px;
    }
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 1.8rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 2;
}

.exp-number {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
    font-weight: 500;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    z-index: 3;
    box-shadow: 0 10px 40px rgba(45, 91, 255, 0.4);
    animation: pulse 2s infinite;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
    animation: ripple 2s infinite;
}

.play-button i {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 50px rgba(45, 91, 255, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(45, 91, 255, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(45, 91, 255, 0.6), 0 0 0 15px rgba(45, 91, 255, 0.1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Video Label */
.video-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: slideUp 0.6s ease-out;
}

.video-label i {
    font-size: 1rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    z-index: 10;
    animation: zoomIn 0.4s ease-out;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 35px rgba(45, 91, 255, 0.2);
}

.about-right .section-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.about-right .section-title {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: #0A0E27;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.highlight-blue {
    color: var(--primary-color);
}

.about-right .section-description {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blue-icon {
    background: rgba(45, 91, 255, 0.1);
}

.blue-icon i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.purple-icon {
    background: rgba(139, 92, 246, 0.1);
}

.purple-icon i {
    color: #8B5CF6;
    font-size: 1.4rem;
}

.teal-icon {
    background: rgba(20, 184, 166, 0.1);
}

.teal-icon i {
    color: #14B8A6;
    font-size: 1.4rem;
}

.orange-icon {
    background: rgba(249, 115, 22, 0.1);
}

.orange-icon i {
    color: #F97316;
    font-size: 1.4rem;
}

.feature-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #0A0E27;
    font-weight: 700;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 3rem 0;
    background: #F9FAFB;
    position: relative;
}

.services-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.services-left {
    flex: 0 0 auto;
    max-width: 350px;
}

.section-label-white {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.services-main-title {
    font-size: 1.95rem;
    line-height: 1.3;
    color: #0A0E27;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.services-main-title .highlight-blue {
    color: var(--primary-color);
}

.services-right {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.services-horizontal-grid {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.services-horizontal-grid::-webkit-scrollbar {
    height: 0;
    display: none;
}

.services-horizontal-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.service-item-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    padding: 0 2rem;
    flex: 0 0 auto;
    min-width: 150px;
}

.service-icon-horizontal {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(45, 91, 255, 0.1) 0%, rgba(91, 141, 239, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.service-item-horizontal:hover .service-icon-horizontal {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5B8DEF 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 91, 255, 0.3);
}

.service-icon-horizontal i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

.service-item-horizontal:hover .service-icon-horizontal i {
    color: var(--white);
}

.service-item-horizontal h4 {
    font-size: 1rem;
    color: #0A0E27;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.service-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #E5E7EB 20%, 
        #E5E7EB 80%, 
        transparent 100%);
    flex-shrink: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .services-wrapper {
        flex-direction: column;
        gap: 3rem;
        align-items: flex-start;
    }
    
    .services-left {
        max-width: 100%;
        text-align: left;
    }
    
    .services-main-title {
        font-size: 2.2rem;
    }
    
    .services-right {
        width: 100%;
    }
    
    .services-horizontal-grid {
        justify-content: flex-start;
        padding: 2rem 0;
    }
    
    .service-item-horizontal {
        min-width: 140px;
        padding: 0 1.5rem;
    }
}

/* Mobile Responsive - Grid Layout */
@media (max-width: 768px) {
    .services-section {
        padding: 3.5rem 0;
    }
    
    .services-wrapper {
        gap: 2.5rem;
    }
    
    .services-left {
        text-align: center;
        width: 100%;
    }
    
    .services-main-title {
        font-size: 2rem;
    }
    
    .services-right {
        width: 100%;
    }
    
    /* Change to Grid on Mobile */
    .services-horizontal-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        overflow: visible;
        padding: 1rem 0;
    }
    
    .service-item-horizontal {
        min-width: auto;
        padding: 1.5rem;
        gap: 1rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
    }
    
    .service-item-horizontal:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(45, 91, 255, 0.15);
    }
    
    .service-icon-horizontal {
        width: 65px;
        height: 65px;
    }
    
    .service-icon-horizontal i {
        font-size: 1.6rem;
    }
    
    .service-item-horizontal h4 {
        font-size: 0.95rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    /* Hide dividers on mobile */
    .service-divider {
        display: none;
    }
}

/* Small Mobile - Single Column */
@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .section-label-white {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .services-main-title {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    
    .services-wrapper {
        gap: 2rem;
    }
    
    .services-horizontal-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .service-item-horizontal {
        padding: 1.5rem;
        flex-direction: row;
        text-align: left;
        gap: 1.2rem;
    }
    
    .service-icon-horizontal {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .service-icon-horizontal i {
        font-size: 1.5rem;
    }
    
    .service-item-horizontal h4 {
        font-size: 1rem;
        text-align: left;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .services-main-title {
        font-size: 1.5rem;
    }
    
    .service-item-horizontal {
        padding: 1.2rem;
    }
    
    .service-icon-horizontal {
        width: 55px;
        height: 55px;
    }
    
    .service-icon-horizontal i {
        font-size: 1.3rem;
    }
    
    .service-item-horizontal h4 {
        font-size: 0.9rem;
    }
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0A1628 0%, #142440 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.process-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-label-process {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.process-title {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--white);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.btn-process {
    padding: 0.9rem 1.8rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
    width: fit-content;
    font-size: 0.9rem;
    font-family: "Montserrat", sans-serif;
}

.btn-process:hover {
    background: rgba(45, 91, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.process-steps {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: space-between;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    position: relative;
}

.step-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.process-step:hover .step-icon i {
    color: var(--white);
}

.step-number {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

.step-title {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    margin: 0;
}

.step-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    max-width: 120px;
}

.step-connector {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0 -0.5rem;
    margin-top: -80px;
}

.connector-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.connector-line {
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.process-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5B8DEF 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(45, 91, 255, 0.3);
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.stat-box p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Process Section Responsive */
@media (max-width: 1200px) {
    .process-wrapper {
        grid-template-columns: 250px 1fr 250px;
        gap: 2rem;
    }
    
    .process-title {
        font-size: 1.9rem;
    }
    
    .step-description {
        font-size: 0.75rem;
        max-width: 110px;
    }
    
    .connector-line {
        width: 20px;
    }
}

@media (max-width: 1024px) {
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .process-left {
        align-items: center;
    }
    
    .btn-process {
        margin: 0 auto;
    }
    
    .process-steps {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .process-stats {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 3.5rem 0;
    }
    
    .process-wrapper {
        gap: 2.5rem;
    }
    
    .process-title {
        font-size: 1.8rem;
    }
    
    /* Hide connectors on tablet and mobile */
    .step-connector {
        display: none;
    }
    
    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }
    
    .process-step {
        gap: 1rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 1.6rem;
    }
    
    .step-description {
        max-width: 100%;
        font-size: 0.85rem;
    }
    
    .process-stats {
        max-width: 400px;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .process-section {
        padding: 3rem 0;
    }
    
    .process-title {
        font-size: 1.6rem;
    }
    
    .btn-process {
        font-size: 0.85rem;
        padding: 0.85rem 1.6rem;
    }
    
    /* MOBILE GRID - 2x2 layout instead of slider */
    .process-steps {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0;
        margin: 0;
        overflow: visible;
        width: auto;
    }
    
    .process-steps::-webkit-scrollbar {
        display: none;
    }
    
    /* Hide connectors completely */
    .step-connector {
        display: none !important;
    }
    
    .process-step {
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 16px;
        padding: 1.5rem 1rem !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
        flex: none !important;
        min-width: auto;
        max-width: none;
        transition: all 0.3s ease;
        box-sizing: border-box;
        scroll-snap-align: none;
        scroll-snap-stop: auto;
    }
    
    .process-step:active {
        background: rgba(255, 255, 255, 0.08) !important;
        transform: scale(0.98);
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.4rem;
    }
    
    .step-number {
        font-size: 0.7rem;
        margin: 0;
    }
    
    .step-title {
        font-size: 1rem;
        margin: 0;
    }
    
    .step-description {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .process-stats {
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    /* Hide scroll indicators since we're not using slider */
    .process-scroll-indicators {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 2.5rem 0;
    }
    
    .process-wrapper {
        gap: 2rem;
    }
    
    .section-label-process {
        font-size: 0.65rem;
    }
    
    .process-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .btn-process {
        font-size: 0.8rem;
        padding: 0.75rem 1.4rem;
        justify-content: center;
    }
    
    /* Keep 2x2 grid on smaller mobile too */
    .process-steps {
        gap: 0.8rem;
    }
    
    .process-step {
        padding: 1.3rem 0.8rem !important;
        border-radius: 14px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .step-number {
        font-size: 0.65rem;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .step-description {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .process-stats {
        padding: 1.8rem 1.2rem;
        gap: 1.2rem;
    }
    
    .stat-box h3 {
        font-size: 1.8rem;
    }
    
    .stat-box p {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .process-title {
        font-size: 1.35rem;
    }
    
    .btn-process {
        font-size: 0.75rem;
        padding: 0.7rem 1.2rem;
    }
    
    .process-step {
        padding: 1.2rem 1rem;
    }
    
    .step-icon {
        width: 55px;
        height: 55px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 0.95rem;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
    
    .process-stats {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .stat-box h3 {
        font-size: 1.6rem;
    }
    
    .stat-box p {
        font-size: 0.7rem;
    }
}

/* Process Scroll Indicators - Mobile Only */
.process-scroll-indicators {
    display: none;
}

@media (max-width: 640px) {
    .process-scroll-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .scroll-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .scroll-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--primary-color);
    }
}

/* Projects Section */
.projects-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.projects-header-left .section-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.projects-header-left .section-title {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #0A0E27;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.projects-filters {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid #E5E7EB;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.view-all-projects {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.view-all-projects:hover {
    gap: 0.8rem;
}

.projects-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow i {
    font-size: 1rem;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.projects-slider-container {
    overflow: hidden;
    border-radius: 12px;
    padding: 20px 0px;
}

.projects-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.project-card {
    /* flex: 0 0 calc(25% - 1.125rem); */
    min-width: calc(25% - 1.125rem);
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
    position: relative;
}

.project-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #0A0E27;
    font-weight: 700;
}

.project-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.project-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(45, 91, 255, 0.1);
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.project-card:hover .project-arrow {
    opacity: 1;
    background: var(--primary-color);
    color: var(--white);
}

/* Projects Responsive */
@media (max-width: 1200px) {
    .project-card {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: calc(33.333% - 1rem);
    }
}

@media (max-width: 1024px) {
    .projects-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .projects-header-left .section-title {
        font-size: 2.2rem;
    }
    
    .project-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
    
    .projects-slider-wrapper {
        padding: 0 50px;
    }
    
    .slider-arrow {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 4rem 0;
    }
    
    .projects-header {
        margin-bottom: 2rem;
    }
    
    .projects-header-left .section-title {
        font-size: 2rem;
    }
    
    .projects-filters {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    
    .projects-filters::-webkit-scrollbar {
        height: 0;
    }
    
    .filter-btn {
        flex-shrink: 0;
        padding: 0.55rem 1.3rem;
        font-size: 0.85rem;
    }
    
    .view-all-projects {
        flex-shrink: 0;
        font-size: 0.85rem;
    }
    
    .projects-slider-wrapper {
        padding: 0;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .projects-slider-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px;
        margin: 0 -20px;
    }
    
    .projects-slider-container::-webkit-scrollbar {
        display: none;
    }
    
    .projects-slider-track {
        gap: 1.2rem;
    }
    
    .project-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-content {
        padding: 1.2rem;
    }
    
    .project-content h3 {
        font-size: 1.1rem;
    }
    
    .project-arrow {
        opacity: 1;
        bottom: 1.2rem;
        right: 1.2rem;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 3rem 0;
    }
    
    .projects-header {
        gap: 1.5rem;
    }
    
    .projects-header-left .section-label {
        font-size: 0.7rem;
    }
    
    .projects-header-left .section-title {
        font-size: 1.75rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .view-all-projects {
        font-size: 0.8rem;
    }
    
    .projects-slider-container {
        padding: 0 15px;
        margin: 0 -15px;
    }
    
    .projects-slider-track {
        gap: 1rem;
    }
    
    .project-card {
        flex: 0 0 260px;
        min-width: 260px;
    }
    
    .project-image {
        height: 160px;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .project-content h3 {
        font-size: 1rem;
    }
    
    .project-content p {
        font-size: 0.85rem;
    }
    
    .project-arrow {
        width: 36px;
        height: 36px;
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 360px) {
    .projects-header-left .section-title {
        font-size: 1.5rem;
    }
    
    .project-card {
        flex: 0 0 240px;
        min-width: 240px;
    }
    
    .project-image {
        height: 140px;
    }
}

/* Testimonials Section - Updated Google Review Style v2.0 */
.testimonials-section {
    padding: 5rem 0;
    background: #F5F5F5 !important;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-header .section-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.testimonials-header .section-title {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #0A0E27;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.testimonials-slider {
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.testimonial-avatar-large {
    position: relative;
    flex-shrink: 0;
}

.avatar-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    
}

.avatar-badge {
    
    width: 54px;
    height: 54px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.testimonial-user {
    flex: 1;
}

.user-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 0.4rem 0;
}

.verified-check {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
}

.verified-check i {
    font-size: 0.9rem;
}

.google-g {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
}

.stars-row {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars-row i {
    color: #FFA500;
    font-size: 1rem;
}

.review-content {
    font-size: 0.9rem;
    color: #4A4A4A;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    min-height: 80px;
}

.user-position {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    padding-top: 0.8rem;
    border-top: 1px solid #EFEFEF;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D0D0D0;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 5px;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: #F9FAFB;
}

.stats-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.stats-left {
    flex: 0 0 auto;
    max-width: 350px;
}

.section-label-stats {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.stats-title {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #0A0E27;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(45, 91, 255, 0.1) 0%, rgba(91, 141, 239, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5B8DEF 100%);
    transform: translateY(-5px);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

.stat-item:hover .stat-icon i {
    color: var(--white);
}

.stat-number {
    font-size: 2.8rem;
    color: #0A0E27;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #6B7280;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1E3A8A 0%, var(--primary-color) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0;
    position: relative;
}

.cta-3d-object {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cube-wrapper {
    perspective: 1000px;
}

.cube {
    width: 180px;
    height: 180px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

@keyframes rotateCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.cube-face {
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(17, 63, 124, 0.971) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    
}
.cube-face img{
    width: 100%;
}

.cube-face.front {
    transform: rotateY(0deg) translateZ(90px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(90px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(90px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(90px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(90px);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(90px);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 800;
    font-family: "Montserrat", serif;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-action {
    position: relative;
}

.btn-cta {
    padding: 1.1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-arrow {
    position: absolute;
    bottom: -40px;
    right: 20px;
    width: 120px;
    opacity: 0.7;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .testimonials-track {
        gap: 2rem;
    }
    
    .stats-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .stats-left {
        max-width: 100%;
    }
    
    
}


@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-header .section-title {
        font-size: 2rem;
    }
    
    .testimonials-track {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
        padding: 1.8rem 1.3rem;
    }
    
    .review-content {
        font-size: 0.88rem;
        min-height: 75px;
    }
    
    
}
    
    .stats-section {
        padding: 4rem 0;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 0;
        gap: 2.5rem;
    }
    
    .cube-wrapper {
        display: none;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-arrow {
        display: none;
    }



@media (max-width: 650px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 1.5rem 1.2rem;
    }
}
@media (max-width: 480px) {
    .testimonials-header {
        margin-bottom: 2.5rem;
    }
    
    .testimonials-header .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 1.5rem 1.2rem;
    }
    
    .testimonial-top {
        gap: 0.8rem;
    }
    
    
    
    .user-name {
        font-size: 0.95rem;
    }
    
    .verified-check {
        font-size: 0.75rem;
    }
    
    .stars-row i {
        font-size: 0.9rem;
    }
    
    .review-content {
        font-size: 0.85rem;
        min-height: 70px;
    }
    
    .user-position {
        font-size: 0.8rem;
    }
    
    .stats-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-icon {
        width: 65px;
        height: 65px;
    }
    
    .stat-icon i {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .cta-wrapper {
        padding: 2.5rem 0;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}
.top-bar{
    width: 100%;
    padding: 8px 0px;
    background-color: #d8d9dc80;
}
.topbar{
    display: flex;
    justify-content: end;
}
.right-social-icon{
    width: max-content;
    display: flex;
    align-items: center;
}
.mail-box{
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-right: 18px;

}
.mail-box i{
    margin-right: 8px;
}
.social-icon{
    font-size: 14px;
    margin-right: 10px;
    height: 25px;
    width: 25px;
    border: 1px solid rgb(16, 16, 16);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mail-box:hover {
    color: #458BC9;
    cursor: pointer;
    transform: scale(1.02);
    transition: all 0.2s linear;
}
.social-icon:hover {
    color: #458BC9;
    border: 1px solid #458BC9;
    cursor: pointer;
    transform: scale(1.02);
    transition: all 0.2s linear;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}
}
@media (max-width: 1024px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu-item {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        z-index: 999;
    }
    .nav-menu{
        flex-direction: column;

    }
    .nav-menu-item.active {
        display: flex;
    }

    .contact-info,
    .email-info {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .slider-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .topbar{
        justify-content: center;
        width: 98%;
    }
    .social-icon{
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Hero Section */
.services-hero-page {
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-title-page {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Services Grid */
.services-grid-section {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-page {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, #458BC9 100%);
    transition: height 0.4s;
}

.service-card-page:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(45, 91, 255, 0.15);
}

.service-card-page:hover::before {
    height: 100%;
}

.service-icon-page {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #458BC9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s;
}

.service-card-page:hover .service-icon-page {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon-page i {
    font-size: 2.2rem;
    color: var(--white);
}

.service-title-page {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.service-description-page {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features-page {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features-page li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.service-features-page i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-link-page {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.service-link-page:hover {
    gap: 1.2rem;
}

.service-link-page i {
    transition: transform 0.3s;
}

.service-link-page:hover i {
    transform: translateX(5px);
}

/* Process Section for Services Page */
.process-section-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
}

.section-header-services {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-services {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle-services {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.process-item-page {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.process-item-page:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(45, 91, 255, 0.15);
}

.process-number-page {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: "Playfair Display", serif;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.process-title-page {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-description-page {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section for Services Page */
.cta-section-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #458BC9 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content-services {
    position: relative;
    z-index: 1;
}

.cta-title-services {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-description-services {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-services {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-button-services:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    gap: 1.5rem;
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title-page {
        font-size: 2.5rem;
    }
    
    .services-hero-page {
        padding: 6rem 0 4rem;
    }
    
    .service-card-page {
        padding: 2rem;
    }
    
    .service-icon-page {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-page i {
        font-size: 1.8rem;
    }
    
    .service-title-page {
        font-size: 1.5rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title-services {
        font-size: 2.2rem;
    }
    
    .cta-title-services {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-page {
        font-size: 2rem;
    }
    
    .services-hero-page {
        padding: 5rem 0 3rem;
    }
    
    .service-card-page {
        padding: 1.5rem;
    }
    
    .service-icon-page {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-page i {
        font-size: 1.5rem;
    }
    
    .service-title-page {
        font-size: 1.3rem;
    }
    
    .section-title-services {
        font-size: 1.8rem;
    }
    
    .cta-title-services {
        font-size: 1.8rem;
    }
    
    .cta-button-services {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
