
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Inter:wght@400;600&display=swap');

body {
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    padding-top: 80px; /* Add padding equal to header height */
    background-color: #FBFBFB;
}

 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            overflow-x: hidden;
        }
        
        .hero-tech-light {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a0a0a 0%, #2a1a2e 50%, #3e1632 100%);
            overflow: hidden;
        }
        
        /* Animated Grid Background */
        .animated-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(224, 68, 126, 0.15) 1px, transparent 1px),
                linear-gradient(90deg, rgba(224, 68, 126, 0.15) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridMove 20s linear infinite;
            z-index: 1;
        }
        
        .animated-grid-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(224, 68, 126, 0.2) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }
        
        /* Floating Particles */
        .animated-grid-bg::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(224, 68, 126, 0.6), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255, 105, 180, 0.4), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(224, 68, 126, 0.5), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(240, 80, 140, 0.4), transparent),
                radial-gradient(2px 2px at 160px 30px, rgba(224, 68, 126, 0.6), transparent);
            background-repeat: repeat;
            background-size: 200px 100px;
            animation: particleFloat 15s linear infinite;
        }
        
        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }
        
        @keyframes particleFloat {
            0% { transform: translateY(0); }
            100% { transform: translateY(-200px); }
        }
        
        .hero-inner {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1200px;
            padding: 0 2rem;
            border-radius: 0px;
            padding: 4rem 3rem;
        }
        
        /* Glitch Effect */
        .glitch {
            font-size: clamp(2.0rem, 8vw, 5rem);
            font-weight: 800;
            color: #ffffff;
            position: relative;
            margin-bottom: 1.5rem;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-top: 50px;
        }
        
        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .glitch::before {
            animation: glitchTop 2s linear infinite;
            color: #E0447E;
            z-index: -1;
        }
        
        .glitch::after {
            animation: glitchBottom 1.5s linear infinite;
            color: #ff69b4;
            z-index: -2;
        }
        
        @keyframes glitchTop {
            2%, 64% { transform: translate(2px, -2px); }
            4%, 60% { transform: translate(-2px, 2px); }
            62% { transform: translate(13px, -1px) scaleY(1.05); }
        }
        
        @keyframes glitchBottom {
            2%, 64% { transform: translate(-2px, 0); }
            4%, 60% { transform: translate(-2px, 0); }
            62% { transform: translate(-22px, 5px) scaleY(0.95); }
        }
        
        .tagline {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            font-weight: 300;
            letter-spacing: 0.5px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        /* Glowing Button */
        .btn-glow {
            position: relative;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, #E0447E, #ff69b4);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 
                0 0 20px rgba(224, 68, 126, 0.5),
                0 10px 20px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        
        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s;
        }
        
        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 0 30px rgba(224, 68, 126, 0.7),
                0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .btn-glow:hover::before {
            left: 100%;
        }
        
        /* Outline Button */
        .btn-outline {
            position: relative;
            padding: 1rem 2.5rem;
            background: transparent;
            color: #ffffff;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-weight: 500;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 50px;
            transition: width 0.3s ease;
            z-index: -1;
        }
        
        .btn-outline:hover {
            border-color: rgba(255, 255, 255, 0.6);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .btn-outline:hover::before {
            width: 100%;
        }
        
        /* Tech Stats */
        .tech-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #E0447E;
            font-family: 'JetBrains Mono', monospace;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-inner {
                padding: 5rem 2rem;
                margin: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .btn-glow,
            .btn-outline {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }
            
            .tech-stats {
                gap: 2rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .glitch {
                font-size: 2.2rem;
                padding-top: 50px;
            }

            .glitch::before {
                padding-top: 50px;
            }

            .glitch::after {
                padding-top: 50px;
            }
            
            .tagline {
                font-size: 1rem;
            }
            
            .tech-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
        }




@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224, 68, 126, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E0447E, transparent);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo and Brand Section */
.logo-brand-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(224, 68, 126, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(224, 68, 126, 0.3);
    transition: all 0.3s ease;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(224, 68, 126, 0.1), transparent);
    z-index: 1;
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(224, 68, 126, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Brand Name */
.brand-name h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1.0px;
    position: relative;
    text-shadow: 0 0 10px rgba(224, 68, 126, 0.3);
}

.brand-name p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    letter-spacing: 1.0px;
}

.brand-name h2::after {
content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #E0447E;}

.brand-name:hover h2::after {
    width: 100%;
}



/* Navigation */
        nav {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
            position: relative;
            padding: 0;
            margin: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s ease;
            letter-spacing: 1.0px;
            display: block;
        }

        .nav-menu a:hover {
            color: #ffffff;
            text-shadow: 0 0 8px rgba(224, 68, 126, 0.5);
        }

        /* Sliding underline with glow and tail effect */
        .nav-underline {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, #E0447E, #ff69b4);
            transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
            opacity: 0;
            transform: translateX(0);
            border-radius: 1px;
            box-shadow: 
                0 0 8px rgba(224, 68, 126, 0.8),
                0 0 16px rgba(224, 68, 126, 0.4),
                0 0 24px rgba(224, 68, 126, 0.2);
        }

        .nav-underline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(224, 68, 126, 0.6) 40%, 
                #E0447E 70%, 
                #ff69b4 100%);
            border-radius: 1px;
            transition: all 1.0s ease;
        }

        .nav-underline::after {
            content: '';
            position: absolute;
            top: -1px;
            left: -20px;
            width: 40px;
            height: 4px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(224, 68, 126, 0.3) 30%,
                rgba(224, 68, 126, 0.7) 70%, 
                rgba(224, 68, 126, 0.9) 100%);
            border-radius: 2px;
            opacity: 0;
            transition: opacity 0.2s ease;
            filter: blur(px);
        }

        .nav-menu:hover .nav-underline {
            opacity: 1;
        }

/* Active state for current page */
.nav-menu a.active {
    color: #E0447E;
    text-shadow: 0 0 8px rgba(224, 68, 126, 0.5);
}

.nav-menu a.active::before {
    width: 100%;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    transition: all 0.3s ease;
}

.bar {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E0447E, #ff69b4);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(224, 68, 126, 0.3);
}

.hamburger-menu:hover .bar {
    box-shadow: 0 0 10px rgba(224, 68, 126, 0.5);
}

/* Hamburger Animation */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Scroll Effect */
header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(224, 68, 126, 0.1);
}

/* Mobile/Tablet Responsive - Now activates at 1150px */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .brand-name h2 {
        font-size: 24px;
        font-weight: 200;
    }

    /* Hide desktop navigation menu */
    .nav-menu {
        display: none;
    }

    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
    }

    .logo {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }

    .brand-name h2 {
        font-size: 20px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .logo-brand-section {
        gap: 10px;
    }

    .nav-menu {
        width: 80%;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Additional Animation for Tech Feel */
@keyframes techPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(224, 68, 126, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(224, 68, 126, 0.5);
    }
}

.logo {
    animation: techPulse 4s ease-in-out infinite;
}




/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #000;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.social {
    display: flex;
    gap: 15px;
}

.social a {
    color: white;
    text-decoration: none;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-image {
        width: 50%;
    }
}

@media (max-width: 768px) {
    header {
        align-items: center;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background-color: #000;
        width: 70%;
        height: 100vh;
        z-index: 10;
        text-align: left;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 50px;
        padding-left: 2rem;
        border-left: #E0447E 1px solid;
        overflow-y: auto;
        justify-content: flex-start;
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        color: #fff;
        transition: background-color 0.3s, color 0.3s;
        margin: 0;
    }

    

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li:hover {
        background-color: #000;
        color: #E0447E;
        cursor: pointer;
    }

    .nav-menu li i {
        font-size: 1.2rem;
        color: #E0447E;
    }

    .nav-menu li a {
        text-decoration: none;
        color: inherit;
        display: block;
        width: 100%;
        font-weight: 200;
    }

    .nav-menu li:hover a {
        color: #E0447E;
    }
}

/* First, ensure icons are hidden by default with higher specificity */
.nav-menu li i,
nav .nav-menu li i {
    display: none;
}

/* Show icons only on mobile with proper specificity */
@media screen and (max-width: 768px) {
    .nav-menu li i,
    nav .nav-menu li i {
        display: inline-block;
        font-size: 1.2rem;
        color: #E0447E;
    }
}
    
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .cta-button {
        z-index: 20;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    
   
    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
    }

    @media screen and (max-width: 576px) {
        .hero-content h1 {
            font-size: 36px;
        }
        
        .hero-content h2 {
            font-size: 16px;
        }
        
        .hero-image {
            height: 300px;
        }
      
    }
}

/* Main Section Styling */
#services {
  background-color: #000000;
  padding: 80px 20px;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.srv-container {
  max-width: 1600px;
  margin: 0 auto;
}

/* Header */
.srv-header {
  text-align: center;
  margin-bottom: 60px;
}

.srv-header h2 {
  font-size: 2.8rem;
  color: #E0447E;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.srv-header p {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layout */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

/* Card */
.srv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 68, 126, 0.3);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(224, 68, 126, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(224, 68, 126, 0.4);
}

/* Icons */
.srv-icon {
  font-size: 2.5rem;
  color: #E0447E;
  margin-bottom: 20px;
}

/* Titles */
.srv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Paragraph */
.srv-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #bbbbbb;
  margin-bottom: 20px;
}

/* Button */
.srv-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #E0447E;
  color: #E0447E;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.srv-btn:hover {
  background-color: #E0447E;
  color: #000000;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    color: #ffffff;
    background: 
        radial-gradient(circle at 20% 80%, rgba(224, 68, 126, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(224, 68, 126, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 1px, transparent 1px),
        linear-gradient(transparent 1px, transparent 1px);
    background-size: 40px 40px;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(224, 68, 126, 0.1) 1px, transparent 0);
    pointer-events: none;
    z-index: 0;
}

.expanded-service {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.service-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.service-header h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #E0447E 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    letter-spacing: -0.02em;
    position: relative;
}


@keyframes glow {
    from { box-shadow: 0 0 5px #E0447E, 0 0 10px #E0447E; }
    to { box-shadow: 0 0 10px #E0447E, 0 0 20px #E0447E, 0 0 30px #E0447E; }
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(224, 68, 126, 0.2), rgba(224, 68, 126, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(224, 68, 126, 0.3);
    color: #E0447E;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.3rem;
    box-shadow: 
        0 8px 32px rgba(224, 68, 126, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.price-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.price-tag:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(224, 68, 126, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(224, 68, 126, 0.5);
}

.price-tag:hover::before {
    left: 100%;
}

.price-tag-web-design {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 30px auto; /* Center horizontally */
    padding: 20px 30px;
    background: rgba(224, 68, 126, 0.1);
    border: 1px solid rgba(224, 68, 126, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: fit-content;
    color: #E0447E;
    box-shadow: 0 0 20px rgba(224, 68, 126, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.price-tag-web-design:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(224, 68, 126, 0.3);
}

.price-tag-web-design .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-tag-web-design .amount {
    font-size: 3.2rem;
    font-weight: 900;
}



.main-content {
    backdrop-filter: blur(20px);
    padding: 4rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E0447E, transparent);
}

.service-intro {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .service-intro {
        font-size: 1rem;
        padding: 0 1rem; /* Add some horizontal padding for better spacing */
    }
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 0;
}

.feature-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(224, 68, 126, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    group: hover;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E0447E, transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 68, 126, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 68, 126, 0.3);
    box-shadow: 
        0 0 0 1px rgba(224, 68, 126, 0.2),
        0 25px 50px rgba(224, 68, 126, 0.1),
        0 0 50px rgba(224, 68, 126, 0.05);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(224, 68, 126, 0.2), rgba(224, 68, 126, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 68, 126, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #E0447E;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(224, 68, 126, 0.3), rgba(224, 68, 126, 0.2));
    box-shadow: 0 0 20px rgba(224, 68, 126, 0.3);
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.process-section {
    backdrop-filter: blur(20px);
    padding: 4rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E0447E, transparent);
}

.process-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #E0447E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(224, 68, 126, 0.1);
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 68, 126, 0.3);
    box-shadow: 0 20px 40px rgba(224, 68, 126, 0.1);
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(224, 68, 126, 0.2), rgba(224, 68, 126, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(224, 68, 126, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #E0447E;
    font-size: 2.2rem;
    font-weight: 700;
    box-shadow: 
        0 0 30px rgba(224, 68, 126, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(224, 68, 126, 0.3), rgba(224, 68, 126, 0.2));
    box-shadow: 
        0 0 40px rgba(224, 68, 126, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.process-step h5 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
}

.benefits-section {
    backdrop-filter: blur(20px);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E0447E, transparent);
}

.benefits-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #E0447E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(224, 68, 126, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E0447E, transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 68, 126, 0.3);
    box-shadow: 0 15px 30px rgba(224, 68, 126, 0.1);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(224, 68, 126, 0.2), rgba(224, 68, 126, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 68, 126, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E0447E;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(224, 68, 126, 0.3), rgba(224, 68, 126, 0.2));
    box-shadow: 0 0 20px rgba(224, 68, 126, 0.3);
}

.benefit-content h6 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 600;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 1200px) {
    .expanded-service {
        padding: 3rem 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .expanded-service {
        padding: 2rem 1rem;
    }
    
    .main-content,
    .process-section,
    .benefits-section {
        padding: 4rem 0rem;
        margin: 0px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

.web-hosting-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .web-hosting-section {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #fff;
            min-height: 100vh;
            padding: 20px;
        }

        .web-hosting-section .expanded-service {
            max-width: 1600px;
            margin: 0 auto;
            background: rgba(45, 27, 46, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .web-hosting-section .hero-section {
            background: linear-gradient(135deg, #2D1B2E 0%, #E0447E 100%);
            color: white;
            padding: 50px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .web-hosting-section .hero-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 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: hosting-float 20s infinite linear;
        }

        @keyframes hosting-float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }

        .web-hosting-section .hero-content {
            position: relative;
            z-index: 1;
        }

        .web-hosting-section .hero-content h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, #F8A5C2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .web-hosting-section .price-tag {
            display: inline-block;
            background: linear-gradient(45deg, #E0447E, #F8A5C2);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.5em;
            font-weight: bold;
            margin: 20px 0;
            box-shadow: 0 8px 20px rgba(224, 68, 126, 0.3);
            transform: perspective(1000px) rotateX(10deg);
            transition: transform 0.3s ease;
        }

        .web-hosting-section .price-tag:hover {
            transform: perspective(1000px) rotateX(0deg) scale(1.05);
        }

        .web-hosting-section .hero-description {
            font-size: 1.1em;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .web-hosting-section .uptime-guarantee {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1em;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .web-hosting-section .uptime-badge {
            background: #2ECC71;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            margin-right: 10px;
            font-size: 0.9em;
            animation: hosting-pulse 2s infinite;
        }

        @keyframes hosting-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .web-hosting-section .content-section {
            padding: 60px 40px;
            background: linear-gradient(135deg, #1A1A2E 0%, #2D1B2E 100%);
        }

        .web-hosting-section .section-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 50px;
            color: #F8A5C2;
            position: relative;
        }

        .web-hosting-section .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #E0447E, #F8A5C2);
            border-radius: 2px;
        }

        .web-hosting-section .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .web-hosting-section .feature-card {
            background: linear-gradient(135deg, #2D1B2E 0%, #3E2A3F 100%);
            padding: 40px 10px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid rgba(224, 68, 126, 0.2);
            position: relative;
            overflow: hidden;
        }

        .web-hosting-section .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(224, 68, 126, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .web-hosting-section .feature-card:hover::before {
            left: 100%;
        }

        .web-hosting-section .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: #E0447E;
        }

        .web-hosting-section .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(45deg, #E0447E, #8E2857);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: white;
            position: relative;
            z-index: 1;
        }

        .web-hosting-section .feature-card h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
            color: #F8A5C2;
            position: relative;
            z-index: 1;
        }

        .web-hosting-section .feature-card p {
            color: #E0E0E0;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .web-hosting-section .detailed-explanation {
            background: linear-gradient(135deg, #1A1A2E 0%, #2D1B2E 100%);
            padding: 50px 20px;
            border-radius: 15px;
            margin: 40px 0;
            border: 1px solid rgba(224, 68, 126, 0.2);
        }

        .web-hosting-section .explanation-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .web-hosting-section .explanation-title {
            font-size: 2em;
            color: #F8A5C2;
            margin-bottom: 30px;
            text-align: center;
        }

        .web-hosting-section .explanation-text {
            font-size: 1.1em;
            color: #E0E0E0;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .web-hosting-section .specs-table {
            background: linear-gradient(135deg, #2D1B2E 0%, #3E2A3F 100%);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin: 40px 0;
            border: 1px solid rgba(224, 68, 126, 0.2);
        }

        .web-hosting-section .specs-table h3 {
            background: linear-gradient(45deg, #2D1B2E, #E0447E);
            color: white;
            padding: 20px;
            margin: 0;
            text-align: center;
            font-size: 1.5em;
        }

        .web-hosting-section .specs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .web-hosting-section .spec-item {
            padding: 20px;
            border-bottom: 1px solid rgba(224, 68, 126, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .web-hosting-section .spec-item:nth-child(even) {
            background: rgba(224, 68, 126, 0.05);
        }

        .web-hosting-section .spec-item:hover {
            background: rgba(224, 68, 126, 0.15);
        }

        .web-hosting-section .spec-label {
            font-weight: bold;
            color: #F8A5C2;
        }

        .web-hosting-section .spec-value {
            color: #E0447E;
            font-weight: bold;
        }

        .web-hosting-section .cta-section {
            background: linear-gradient(135deg, #E0447E 0%, #F8A5C2 100%);
            color: white;
            padding: 50px 10px;
            text-align: center;
            margin: 40px 0;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .web-hosting-section .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255,255,255,0.1) 0px,
                rgba(255,255,255,0.1) 1px,
                transparent 1px,
                transparent 20px
            );
            animation: hosting-move 20s linear infinite;
        }

        @keyframes hosting-move {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .web-hosting-section .cta-content {
            position: relative;
            z-index: 1;
        }

        .web-hosting-section .cta-button {
            display: inline-block;
            background: white;
            color: #E0447E;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2em;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .web-hosting-section .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
            background: #000;
        }

        @media (max-width: 768px) {
            .web-hosting-section .hero-content h1 {
                font-size: 2.5em;
            }
            
            .web-hosting-section .content-section {
                padding: 40px 20px;
            }
            
            .web-hosting-section .features-grid {
                grid-template-columns: 1fr;
            }
            
            .web-hosting-section .specs-grid {
                grid-template-columns: 1fr;
            }
        }


/* Our Services Section */
.our-services-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    color: #eee;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

.our-services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(224, 68, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(224, 68, 126, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.our-services-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.our-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #E0447E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.our-services-header p {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Services Grid */
.our-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Individual Service Card */
.our-services-card {
    background: rgba(30, 30, 30, 0.85);
    padding: 30px 25px 40px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(224, 68, 126, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(224, 68, 126, 0.5);
}

/* Icon container */
.our-services-icon {
    font-size: 48px;
    color: #E0447E;
    margin-bottom: 20px;
    /* Assuming icons use font icons, adjust as needed */
}

/* Service title */
.our-services-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

/* Service description */
.our-services-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 25px;
}

/* Learn More button */
.srv-btn {
    display: inline-block;
    background: linear-gradient(135deg, #E0447E, #ff6b9d);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(224, 68, 126, 0.4);
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.srv-btn:hover,
.srv-btn:focus {
    background: linear-gradient(135deg, #ff6b9d, #E0447E);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.6);
    outline: none;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .our-services-header h2 {
        font-size: 2.4rem;
    }
    .our-services-header p {
        font-size: 1.1rem;
    }
}



/* Content Management Unique Styles */
.content-section-new {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.content-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(224, 68, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(224, 68, 126, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.expanded-service-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Service Header */
.service-header-cm {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    grid-template-rows: 1fr;       /* One row */
    gap: 30px;                     /* Space between columns */
    align-items: center;
    margin-bottom: 80px;
    text-align: left;              /* Usually better for 2 columns */
}

@media screen and (max-width: 768px) {
    .service-header-cm {
        grid-template-columns: 1fr; /* Stack on smaller screens */
        text-align: center;         /* Center text on small screens */
    }
    
}



.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E0447E, #ff6b9d);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(224, 68, 126, 0.3);
}

.service-content h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #E0447E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 30px 0;
    padding: 20px 30px;
    background: rgba(224, 68, 126, 0.1);
    border: 1px solid rgba(224, 68, 126, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

/* Center price-tag on mobile */
@media (max-width: 768px) {
    .price-tag {
        margin: 30px auto; /* Centers horizontally */
        /* Alternative: if you want to center within a flex container */
        /* align-self: center; */
    }
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 5px;
}

.period {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 400;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 0;
}

/* Visual Mockup */
.web-design-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-mockup {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.content-preview {
    padding: 20px;
    height: 100%;
}

.preview-header {
    height: 60px;
    background: linear-gradient(90deg, #E0447E, #ff6b9d);
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.preview-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.content-block {
    height: 20px;
    background: linear-gradient(90deg, #333333, #444444);
    border-radius: 4px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.content-block.short {
    width: 60%;
}

.content-block.medium {
    width: 80%;
}

.content-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 68, 126, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Features Section */
.features-section {
    margin-bottom: 80px;
}

.features-section h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.features-section h4::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #E0447E, #ff6b9d);
    border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 68, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 68, 126, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(224, 68, 126, 0.2);
    border-color: rgba(224, 68, 126, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 25px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E0447E, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(224, 68, 126, 0.3);
}

.icon-circle svg {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.feature-card > p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sub-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-features li {
    color: #999999;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.sub-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #E0447E;
    font-weight: bold;
}

/* Process Section */
.process-section {
    margin-bottom: 80px;
}

.process-section h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.process-section h4::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #E0447E, #ff6b9d);
    border-radius: 2px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}


.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E0447E, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 15px 30px rgba(224, 68, 126, 0.3);
    position: relative;
    z-index: 2;
}

.step-content h6 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #E0447E, #ff6b9d);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-content h3 {
        font-size: 2.5rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .features-section h4,
    .process-section h4 {
        font-size: 2rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .cta-content h4 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .content-section-new {
        padding: 40px 0;
    }
    
    .expanded-service-container {
        padding: 0 15px;
    }
    
    .service-content h3 {
        font-size: 2rem;
    }
    
    .device-mockup {
        width: 250px;
        height: 350px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Modern High-Tech SEO Section Styles */
.seo-service-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.seo-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(224, 68, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(224, 68, 126, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.seo-service-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Section */
.seo-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.seo-content h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 20px 0 30px 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #E0447E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E0447E 0%, #ff6b9d 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    box-shadow: 0 4px 20px rgba(224, 68, 126, 0.3);
}

.seo-price-tag {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 30px 0;
    padding: 20px 30px;
    background: rgba(224, 68, 126, 0.1);
    border: 1px solid rgba(224, 68, 126, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

/* Center price-tag on mobile */
@media (max-width: 768px) {
    .seo-price-tag {
        margin: 30px auto; /* Centers horizontally */
        /* Alternative: if you want to center within a flex container */
        /* align-self: center; */
    }
}

.price-from {
    color: #888;
    font-size: 1rem;
}

.currency {
    color: #E0447E;
    font-size: 2rem;
    font-weight: 700;
}

.amount {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
}

.period {
    color: #888;
    font-size: 1.2rem;
}

.seo-description {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 30px;
}

/* Visual Mockup */
.seo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-showcase {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s ease;
}

.seo-showcase:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.seo-mockup {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(224, 68, 126, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(224, 68, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.seo-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E0447E, transparent);
}

.search-results-preview {
    width: 400px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #333;
    border-radius: 25px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(224, 68, 126, 0.3);
}

.search-icon {
    width: 20px;
    height: 20px;
    background: #E0447E;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.search-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-bottom: none;
    border-right: none;
}

.search-text {
    color: #888;
    font-size: 1rem;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-item {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.result-item.featured {
    background: rgba(224, 68, 126, 0.1);
    border: 1px solid rgba(224, 68, 126, 0.3);
    transform: scale(1.02);
}

.result-item.featured .result-title {
    background: linear-gradient(90deg, #E0447E, #ff6b9d);
}

.result-title {
    height: 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    background: #444;
}

.result-title.gray {
    background: #333;
}

.result-url {
    height: 6px;
    border-radius: 3px;
    margin-bottom: 6px;
    background: #555;
    width: 60%;
}

.result-url.gray {
    background: #333;
}

.result-snippet {
    height: 4px;
    border-radius: 2px;
    background: #666;
    margin-bottom: 4px;
}

.result-snippet.gray {
    background: #333;
}

.seo-fallback-image {
    display: none;
}

/* Services Grid */
.seo-services-section {
    margin: 100px 0;
}

.seo-services-section h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #E0447E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.seo-service-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(224, 68, 126, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.seo-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 68, 126, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.seo-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(224, 68, 126, 0.5);
    box-shadow: 0 20px 40px rgba(224, 68, 126, 0.2);
}

.seo-service-card:hover::before {
    opacity: 1;
}

.seo-service-icon {
    margin-bottom: 25px;
}

.seo-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E0447E 0%, #ff6b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(224, 68, 126, 0.3);
}

.seo-icon-circle svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.seo-service-card h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.seo-service-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.seo-sub-features {
    list-style: none;
    padding: 0;
}

.seo-sub-features li {
    color: #aaaaaa;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.seo-sub-features li::before {
    content: '→';
    color: #E0447E;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.seo-sub-features li:last-child {
    border-bottom: none;
}

/* Benefits Section */
.seo-benefits-section {
    margin: 100px 0;
    padding: 60px 40px;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border-radius: 30px;
    border: 1px solid rgba(224, 68, 126, 0.2);
}

.seo-benefits-section h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #E0447E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(224, 68, 126, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(224, 68, 126, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 68, 126, 0.3);
    background: rgba(224, 68, 126, 0.1);
}

.benefit-number {
    font-size: 4rem;
    font-weight: 900;
    color: #E0447E;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(224, 68, 126, 0.5);
}

.benefit-text h6 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.benefit-text p {
    color: #cccccc;
    line-height: 1.6;
}

/* Process Section */
.seo-process-section {
    margin: 100px 0;
}

.seo-process-section h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #E0447E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.seo-process-step {
    position: relative;
    padding: 40px 30px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(224, 68, 126, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.seo-process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 68, 126, 0.5);
    box-shadow: 0 15px 30px rgba(224, 68, 126, 0.2);
}

.seo-step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E0447E 0%, #ff6b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(224, 68, 126, 0.4);
}

.seo-step-content h6 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 20px 0 15px 0;
}

.seo-step-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.seo-cta-section {
    margin: 100px 0 0 0;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #E0447E 0%, #ff6b9d 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.seo-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.seo-cta-content {
    position: relative;
    z-index: 1;
}

.seo-cta-content h4 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.seo-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.seo-cta-button {
    background: #000000;
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.seo-cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .seo-content h3 {
        font-size: 2.5rem;
    }
    
    .search-results-preview {
        width: 100%;
        max-width: 350px;
    }
    
    .seo-services-grid,
    .benefits-grid,
    .seo-process-timeline {
        grid-template-columns: 1fr;
    }
    
    .seo-benefits-section,
    .seo-cta-section {
        padding: 40px 20px;
    }
    
    .seo-cta-content h4 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .seo-service-section {
        padding: 60px 0;
    }
    
    .seo-service-container {
        padding: 0 15px;
    }
    
    .seo-content h3 {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .benefit-number {
        font-size: 3rem;
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(224, 68, 126, 0.3); }
    50% { box-shadow: 0 0 30px rgba(224, 68, 126, 0.6); }
}

.seo-badge {
    animation: glow 2s ease-in-out infinite;
}

.seo-icon-circle {
    animation: pulse 3s ease-in-out infinite;
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
    padding: 80px 0 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    margin-right: 40px;
}

.footer-brand h2 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(224, 68, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #E0447E;
    transform: translateY(-3px);
}

.footer-links h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #E0447E;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #E0447E;
    transform: translateX(5px);
}

.footer-contact {
    color: #a0aec0;
    letter-spacing: 1px;
}

.footer-contact h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #E0447E;
}

@media (max-width: 576px) {
    .footer-contact h3 {
        text-align: left;
    }
    
}

.contact-item {
    display: flex;
    align-items: left;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(224, 68, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-right: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-links {
        margin-top: 30px;
        letter-spacing: 1px;
    }
    
    .contact-item {
        justify-content: left;
    }
}

/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 100px 20px;
    position: relative;
    color: #eee;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(224, 68, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(224, 68, 126, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #F65F94, #E0447E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(224, 68, 126, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #1e1e1e;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(224, 68, 126, 0.5);
}

/* Portfolio Image */
.portfolio-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(224, 68, 126, 0.85);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    color: white;
    border-radius: 15px;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

/* Overlay Content */
.overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.overlay-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #eee;
}

/* Tech Tags */
.tech-tags {
    margin-bottom: 20px;
}

.tech-tags span {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 0 8px 8px 0;
    letter-spacing: 0.05em;
    user-select: none;
}

/* View Project Button */
.view-project {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #E0447E, #ff6b9d);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(224, 68, 126, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.view-project:hover,
.view-project:focus {
    background: linear-gradient(135deg, #ff6b9d, #E0447E);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.6);
    outline: none;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .section-header h2 {
        font-size: 2.4rem;
    }
    .overlay-content h3 {
        font-size: 1.5rem;
    }
}

.contact-section {
    padding: 0px 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.contact-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
    width: 100%;
}

.form-row .service-selection,
.form-row .message-group {
    flex: 1;
    width: 100%;
}

.message-group textarea {
    min-height: 200px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    background: #f8fafc;
    color: #2d3748;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #64748b;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #E0447E;
    background: #ffffff;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    transform: translateY(-25px);
    font-size: 14px;
    color: #E0447E;
    background: #ffffff;
    padding: 0 5px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.service-selection {
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.selection-label {
    display: block;
    color: #2d3748;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Replace the radio-options styles with these */
.checkbox-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.checkbox-item:hover {
    background: rgba(224, 68, 126, 0.05);
}

.checkbox-item input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    background: #ffffff;
}

.checkbox-item input[type="checkbox"]:checked {
    background: #E0447E;
    border-color: #E0447E;
}

.checkbox-item input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.checkbox-label {
    color: #64748b;
    font-size: 15px;
}

.checkbox-item:has(input:checked) {
    background: rgba(224, 68, 126, 0.05);
}

.checkbox-item:has(input:checked) .checkbox-label {
    color: #2d3748;
}

@media (max-width: 768px) {
    .checkbox-options {
        grid-template-columns: 1fr;
    }
}

/* Add these button styles to your existing CSS */
.submit-btn {
    background: #E0447E;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(224, 68, 126, 0.2);
}

.submit-btn:hover {
    background: #c72c66;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 68, 126, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.web-design-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-mockup {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.device-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .device-mockup {
        max-width: 100%;
        margin-top: 30px;
    }
}

.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 999;
}

/* Responsive reCAPTCHA */
.g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
    width: 304px; /* Original width */
    max-width: 100%;
}

/* Mobile specific adjustments */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.65);
        transform-origin: 0 0;
        width: 304px;
        margin-bottom: -30px; /* Adjust spacing after scaling */
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .g-recaptcha {
        transform: scale(0.55);
        transform-origin: 0 0;
        width: 304px;
        margin-bottom: -40px;
    }
}

/* Alternative approach - centering the scaled reCAPTCHA */
.recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.recaptcha-container .g-recaptcha {
    transform-origin: center center;
}

/* Add these styles to your existing CSS */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-color);
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Full-Screen Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--mobile-bg, #000);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Header with Logo */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--mobile-text, #ffffff);
    text-decoration: none;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--mobile-text, #ffffff);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.mobile-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Mobile Navigation Menu */
.mobile-nav {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    justify-content: left;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin-top: 150px;

}

.mobile-nav-menu > li {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.3s ease forwards;
}

.mobile-nav-menu > li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-menu > li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-menu > li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-menu > li:nth-child(4) { animation-delay: 0.4s; }

.mobile-nav-menu > li > a {
    display: block;
    color: var(--mobile-text, #ffffff);
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.mobile-nav-menu > li > a:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-nav-menu > li > a::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateY(-50%);
}

.mobile-nav-menu > li > a:hover::before {
    height: 100%;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown > a::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: var(--transition);
}

.mobile-dropdown.active > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
    padding: 1rem 0;
}

.mobile-dropdown-menu li {
    list-style: none;
}

.mobile-dropdown-menu li a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.mobile-dropdown-menu li a:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-menu-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animation Keyframes */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update your existing responsive styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }
    
    /* Reset the old mobile styles */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}