/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.header.scrolled .navbar {
    padding: 0.4rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    min-height: 50px;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    transition: all 0.3s ease;
}

.header.scrolled .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
}

.logo-icon:hover {
    transform: rotate(5deg);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.5);
}

.logo-text h2 {
    color: #f8fafc;
    font-weight: 800;
    font-size: 1.6rem;
    margin: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.header.scrolled .logo-text h2 {
    font-size: 1.1rem;
}

.logo-text span {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.header.scrolled .logo-text span {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.header.scrolled .nav-logo {
    min-height: 30px;
    align-items: center;
}

.header.scrolled .logo-text {
    min-height: 30px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.header.scrolled .nav-link {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

.dropdown-icon {
    font-size: 0.8rem !important;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 20px 16px;
    min-width: 500px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    list-style: none;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

/* Right-aligned dropdown for all dropdown items */
.nav-item .dropdown-menu {
    left: auto;
    right: 0;
    transform: translateY(-15px);
}

.nav-item:hover .dropdown-menu {
    transform: translateY(0);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 4px 0;
    grid-column: auto;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 10px;
    margin: 0 8px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.dropdown-menu a:hover::before {
    left: 0;
}

.dropdown-menu a:hover {
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.dropdown-menu a i {
    width: 16px;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Special handling for Development dropdown with more items */
.nav-item:nth-child(3) .dropdown-menu {
    grid-template-columns: 1fr 1fr 1fr;
    min-width: 600px;
}

.dropdown-menu a:hover i {
    transform: scale(1.2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.btn-get-started {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(102, 126, 234, 0.1);
}

.hamburger.active {
    background: rgba(102, 126, 234, 0.2);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #fff;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #fff;
}

.bar {
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3730a3 100%);
    color: white;
    padding: 140px 0 80px;
    min-height: 100vh;
    height: 100vh; /* Fixed height to prevent layout shifts */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    opacity: 0.6;
    animation: backgroundShift 20s ease-in-out infinite;
}

.hero::after {
    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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
}

/* Animated particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 40%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    width: 6px;
    height: 6px;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 11s;
}

.particle:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 90%;
    animation-delay: 1.5s;
    animation-duration: 19s;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(-20px); }
    75% { transform: translateX(-10px) translateY(10px); }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: badgeSlideIn 1s ease-out 0.3s both;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #ffd700;
    animation: starTwinkle 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    animation: titleSlideIn 1s ease-out;
    min-height: 6.3rem; /* Adjusted height for 3 lines */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title .word {
    display: inline-block;
    animation: wordSlideIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
    white-space: nowrap;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .word:nth-child(3) { animation-delay: 0.3s; }
.hero-title .word:nth-child(4) { animation-delay: 0.4s; }

/* Title line styling */
.hero-title .title-line {
    min-height: 2.1rem; /* Height for each line */
    display: flex;
    align-items: center;
    justify-content: center;
}


.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ff6b6b, #4ecdc4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ff6b6b, #4ecdc4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite reverse;
    opacity: 0.5;
    z-index: -1;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wordSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes badgeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    animation: subtitleSlideIn 1s ease-out 0.7s both;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    animation: buttonSlideIn 1s ease-out 0.5s both;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn i {
    transition: all 0.3s ease;
}

.btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.btn-primary {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    color: #1e40af;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

@keyframes buttonSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-graphic {
    position: relative;
    width: 450px;
    height: 450px;
    animation: graphicRotate 20s linear infinite;
}

.main-graphic {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite, pulse 2s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.main-graphic::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.main-graphic i {
    font-size: 4.5rem;
    color: #fff;
    animation: iconBounce 2s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 120px;
}

.floating-card:hover {
    transform: scale(1.1) translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.floating-card i {
    font-size: 1.8rem;
    color: #ffd700;
    animation: iconPulse 2s ease-in-out infinite;
}

.floating-card span {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
}

.card-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.card-2 {
    top: 8%;
    right: 5%;
    animation-delay: 1.5s;
    animation-duration: 4.5s;
}

.card-3 {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
    animation-duration: 6s;
}

/* Additional floating elements */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 70%;
    animation-delay: 2s;
}

.orb-2 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    right: 20%;
    animation-delay: 4s;
}

.orb-3 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 15%;
    animation-delay: 1s;
}

@keyframes graphicRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); color: #ffd700; }
    50% { transform: scale(1.2); color: #ffed4e; }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: #f8fafc;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header-portfolio {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.section-badge-portfolio:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.section-badge-portfolio i {
    color: #ffd700;
    animation: starTwinkle 2s ease-in-out infinite;
}

.section-header-portfolio h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(45deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-portfolio p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.portfolio-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 0;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

/* SVG portfolio images styling */
.portfolio-img {
    object-fit: cover;
}

/* Fallback for missing images */
.portfolio-img:not([src]),
.portfolio-img[src=""],
.portfolio-img[src*="undefined"] {
    display: none;
}

.portfolio-image:has(.portfolio-img:not([src])),
.portfolio-image:has(.portfolio-img[src=""]),
.portfolio-image:has(.portfolio-img[src*="undefined"]) {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.portfolio-image:has(.portfolio-img:not([src]))::after,
.portfolio-image:has(.portfolio-img[src=""])::after,
.portfolio-image:has(.portfolio-img[src*="undefined"])::after {
    content: '';
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-image:has(.portfolio-img:not([src]))::after,
.portfolio-card:hover .portfolio-image:has(.portfolio-img[src=""])::after,
.portfolio-card:hover .portfolio-image:has(.portfolio-img[src*="undefined"])::after {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

/* Specific icons for each project type when image is missing */
.portfolio-card:nth-child(1) .portfolio-image:has(.portfolio-img:not([src]))::after,
.portfolio-card:nth-child(1) .portfolio-image:has(.portfolio-img[src=""])::after,
.portfolio-card:nth-child(1) .portfolio-image:has(.portfolio-img[src*="undefined"])::after {
    content: '🛍️';
    font-size: 2.5rem;
}

.portfolio-card:nth-child(2) .portfolio-image:has(.portfolio-img:not([src]))::after,
.portfolio-card:nth-child(2) .portfolio-image:has(.portfolio-img[src=""])::after,
.portfolio-card:nth-child(2) .portfolio-image:has(.portfolio-img[src*="undefined"])::after {
    content: '📱';
    font-size: 2.5rem;
}

.portfolio-card:nth-child(3) .portfolio-image:has(.portfolio-img:not([src]))::after,
.portfolio-card:nth-child(3) .portfolio-image:has(.portfolio-img[src=""])::after,
.portfolio-card:nth-child(3) .portfolio-image:has(.portfolio-img[src*="undefined"])::after {
    content: '🏢';
    font-size: 2.5rem;
}

.portfolio-card:nth-child(4) .portfolio-image:has(.portfolio-img:not([src]))::after,
.portfolio-card:nth-child(4) .portfolio-image:has(.portfolio-img[src=""])::after,
.portfolio-card:nth-child(4) .portfolio-image:has(.portfolio-img[src*="undefined"])::after {
    content: '🛒';
    font-size: 2.5rem;
}

.portfolio-card:nth-child(5) .portfolio-image:has(.portfolio-img:not([src]))::after,
.portfolio-card:nth-child(5) .portfolio-image:has(.portfolio-img[src=""])::after,
.portfolio-card:nth-child(5) .portfolio-image:has(.portfolio-img[src*="undefined"])::after {
    content: '🎓';
    font-size: 2.5rem;
}

.portfolio-card:nth-child(6) .portfolio-image:has(.portfolio-img:not([src]))::after,
.portfolio-card:nth-child(6) .portfolio-image:has(.portfolio-img[src=""])::after,
.portfolio-card:nth-child(6) .portfolio-image:has(.portfolio-img[src*="undefined"])::after {
    content: '🏥';
    font-size: 2.5rem;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-category {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0c4a6e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-content h3 {
    color: #3b82f6;
}

.portfolio-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.portfolio-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}


/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-badge i {
    color: #ffd700;
    font-size: 1.2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Linux Features Section */
.linux-features {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(45deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hosting Plans Section */
.hosting-plans {
    padding: 100px 0;
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch; /* Ensure all cards have same height */
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    display: flex;
    flex-direction: column; /* Use flexbox for proper alignment */
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.plan-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    flex-shrink: 0; /* Prevent header from shrinking */
}

.plan-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    white-space: nowrap; /* Prevent title from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.5rem; /* Ensure consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-price {
    margin-bottom: 2rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: #64748b;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
}

.plan-price .period {
    font-size: 1rem;
    color: #64748b;
}

.plan-features {
    flex-grow: 1; /* Allow features to expand and fill available space */
    display: flex;
    flex-direction: column;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1; /* Allow features list to expand */
}

.plan-features li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: #10b981;
    font-size: 1rem;
}

.plan-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin-top: auto; /* Push button to bottom of card */
    align-self: center; /* Center the button */
}

.plan-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

/* Hosting Benefits Section */
.hosting-benefits {
    padding: 100px 0;
    background: #f8fafc;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.benefit-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Linux Server Graphic */
.linux-server-graphic {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
    animation: serverPulse 3s ease-in-out infinite;
}

@keyframes serverPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: floatElement 6s ease-in-out infinite;
}

.element i {
    font-size: 2rem;
    color: #3b82f6;
}

.element span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.element-4 {
    top: 30%;
    right: 25%;
    animation-delay: 4.5s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hosting Pages Specific Styles */
.plan-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-style: italic;
}

.hosting-features {
    padding: 100px 0;
    background: #f8fafc;
}

.tech-stack {
    padding: 100px 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.tech-item span {
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

/* VPS Specific Styles */
.os-section {
    padding: 100px 0;
    background: #f8fafc;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.os-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.os-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

.os-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.os-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.os-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.os-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.os-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* WordPress Specific Styles */
.wp-tools {
    padding: 100px 0;
    background: #f8fafc;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tool-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.tool-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.tool-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Reseller Specific Styles */
.business-benefits {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.support-section {
    padding: 100px 0;
    background: #f8fafc;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.support-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.support-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Dedicated Server Specific Styles */
.server-specs {
    padding: 100px 0;
    background: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spec-category {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.spec-category:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.spec-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-category h3 i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.spec-category ul {
    list-style: none;
    padding: 0;
}

.spec-category li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.spec-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.management-options {
    padding: 100px 0;
    background: #f8fafc;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.management-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.management-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

.management-card.featured {
    border-color: #3b82f6;
    transform: scale(1.02);
}

.management-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.management-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.management-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.management-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.management-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.management-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.management-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Domain Registration Specific Styles */
.domain-search {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-question i {
    font-size: 1rem;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* WordPress Features Grid Styles */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-new {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon-new i {
    font-size: 1.8rem;
    color: white;
}

.feature-card-new:hover .feature-icon-new {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: scale(1.1);
}

.feature-card-new h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card-new p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Domain Pricing Table Styles */
.domain-pricing-table {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-table-container {
    margin-top: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.header-cell {
    padding: 20px 15px;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.header-cell:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.table-row:hover {
    background: #f8fafc;
}

.table-row.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-left: 4px solid #3b82f6;
}

.table-cell {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #e5e7eb;
}

.table-cell:last-child {
    border-right: none;
}

.table-cell.domain-extension {
    flex-direction: column;
    gap: 5px;
}

.extension-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
}

.extension-badge.com {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.extension-badge.in {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.extension-badge.net {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.extension-badge.org {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.extension-badge.co-in {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.extension-badge.biz {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.extension-badge.info {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
}

.extension-badge.us {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.extension-badge.co {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.extension-badge.io {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.extension-desc {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.table-cell.price {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
}

.register-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.register-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.pricing-note {
    padding: 30px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.note-content i {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 5px;
}

.note-text h4 {
    color: #1f2937;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.note-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-text li {
    padding: 5px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.note-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.search-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.search-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.search-box {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.domain-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    color: #1e293b;
}

.domain-extension {
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    background: #f8fafc;
    border-radius: 50px;
    margin: 0 5px;
    outline: none;
    color: #1e293b;
    cursor: pointer;
}

.search-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    transform: translateY(-2px);
}

.search-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.domain-pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

.pricing-card.featured {
    border-color: #3b82f6;
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.domain-extension-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.domain-price {
    margin-bottom: 1.5rem;
}

.domain-price .currency {
    font-size: 1.2rem;
    color: #64748b;
    vertical-align: top;
}

.domain-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
}

.domain-price .period {
    font-size: 0.9rem;
    color: #64748b;
}

.domain-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.domain-features li {
    padding: 0.3rem 0;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.domain-features li i {
    color: #10b981;
    font-size: 0.8rem;
}

.domain-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.domain-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    transform: translateY(-2px);
}

.domain-services {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.service-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Development Pages Specific Styles */
.design-packages {
    padding: 100px 0;
    background: #f8fafc;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch; /* Ensure all cards have same height */
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    display: flex;
    flex-direction: column; /* Use flexbox for proper alignment */
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

.package-card.featured {
    border-color: #3b82f6;
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    flex-shrink: 0; /* Prevent header from shrinking */
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    white-space: nowrap; /* Prevent title from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.5rem; /* Ensure consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-price {
    margin-bottom: 1rem;
}

.package-price .currency {
    font-size: 1.5rem;
    color: #64748b;
    vertical-align: top;
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
}

.package-price .period {
    font-size: 1rem;
    color: #64748b;
}

.package-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
}

.package-features {
    flex-grow: 1; /* Allow features to expand and fill available space */
    display: flex;
    flex-direction: column;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1; /* Allow features list to expand */
}

.package-features li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: #10b981;
    font-size: 1rem;
}

.package-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin-top: auto; /* Push button to bottom of card */
    align-self: center; /* Center the button */
}

.package-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

.design-process {
    padding: 100px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

.design-features {
    padding: 100px 0;
    background: #f8fafc;
}

.portfolio-preview {
    padding: 100px 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #ffffff;
    color: #1e293b;
    position: relative;
    overflow: hidden;
}

.section-header-why {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-badge-why {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.section-badge-why:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.section-badge-why i {
    color: #ffd700;
    animation: starTwinkle 2s ease-in-out infinite;
}

.section-header-why h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(45deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-why p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid-why {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card-why {
    background: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.feature-card-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-why:hover::before {
    transform: scaleX(1);
}

.feature-card-why:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

.feature-icon-why {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.feature-card-why:hover .feature-icon-why {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.feature-icon-why::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 25px;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-card-why:hover .feature-icon-why::before {
    opacity: 0.5;
    transform: scale(1.1);
}

.feature-icon-why i {
    font-size: 2.2rem;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

.feature-card-why:hover .feature-icon-why i {
    transform: scale(1.1);
}

.feature-card-why h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card-why:hover h3 {
    color: #3b82f6;
}

.feature-card-why p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.feature-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.highlight-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
}

.highlight-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.trust-item:hover {
    background: #ffffff;
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* New Services Grid - 3x2 Layout */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card-new {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 50%, #3730a3 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-new:hover::before {
    transform: scaleX(1);
}

.service-card-new:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-card-new:hover .service-icon-new {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.service-icon-new::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 25px;
    opacity: 0.2;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card-new:hover .service-icon-new::before {
    opacity: 0.4;
    transform: scale(1.1);
}

.service-icon-new i {
    font-size: 2.2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-icon-new i {
    transform: scale(1.1);
}

.service-card-new h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.service-card-new:hover h3 {
    color: #3b82f6;
}

.service-card-new p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-features-new {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-features-new li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.7rem;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-features-new i {
    color: #10b981;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.service-price {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0c4a6e;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-link-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 14px 28px;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.service-link-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.service-link-new:hover::before {
    left: 0;
}

.service-link-new:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-link-new i {
    transition: all 0.3s ease;
}

.service-link-new:hover i {
    transform: translateX(4px);
}

/* Legacy styles for backward compatibility */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-radius: 25px;
    opacity: 0.3;
    z-index: -1;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
}

.service-features i {
    color: #10b981;
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border: 2px solid #1e40af;
    border-radius: 10px;
}

.service-link:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-radius: 19px;
    opacity: 0.2;
    z-index: -1;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.footer-logo .logo-text h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
}

.footer-logo .logo-text span {
    color: #94a3b8;
    font-size: 0.8rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #374151;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.contact-info i {
    color: #667eea;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0;
    }
    
    .nav-link {
        padding: 10px 16px;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }

    /* New services responsive for tablet */
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Why Choose Us responsive for tablet */
    .features-grid-why {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Portfolio responsive for tablet */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        backdrop-filter: blur(25px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
        padding: 100px 0 2rem 0;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }

    /* Enhanced mobile hero styles */
    .hero-particles {
        display: none; /* Hide particles on mobile for better performance */
    }

    .hero-graphic {
        width: 300px;
        height: 300px;
    }

    .main-graphic {
        width: 150px;
        height: 150px;
    }

    .main-graphic i {
        font-size: 3rem;
    }

    .floating-card {
        padding: 16px;
        min-width: 100px;
    }

    .floating-card i {
        font-size: 1.4rem;
    }

    .floating-card span {
        font-size: 0.8rem;
    }

    .floating-orb {
        display: none; /* Hide orbs on mobile */
    }

    .nav-menu::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
        opacity: 0.3;
        z-index: -1;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.3rem 0;
        width: 100%;
        padding: 0 2rem;
    }

    .nav-link {
        padding: 18px 24px;
        margin: 0;
        border-radius: 16px;
        justify-content: flex-start;
        display: flex;
        align-items: center;
        gap: 15px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(59, 130, 246, 0.3);
        color: white;
        transform: translateX(10px);
        border-color: rgba(59, 130, 246, 0.5);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .nav-link i {
        font-size: 1.3rem;
        color: #ffd700;
        width: 24px;
        text-align: center;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin: 8px 0 0 0;
        border-radius: 12px;
        padding: 0;
        display: block !important;
        grid-template-columns: none !important;
        min-width: auto !important;
        left: auto !important;
        top: auto !important;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 400px;
        padding: 8px 0;
    }

    .dropdown-menu a {
        margin: 4px 12px;
        padding: 14px 20px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        white-space: nowrap;
        min-width: 0;
        flex-shrink: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dropdown-menu a:hover {
        background: rgba(59, 130, 246, 0.3);
        color: white;
        transform: translateX(8px);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .dropdown-menu a i {
        font-size: 1.1rem;
        color: #ffd700;
        width: 20px;
        text-align: center;
    }

    .nav-actions {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
        align-items: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero {
        height: auto; /* Allow flexible height on mobile */
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
        min-height: 5.25rem; /* Adjusted for mobile with 3 lines */
    }

    .hero-title .title-line {
        min-height: 1.75rem; /* Adjusted for mobile */
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* New services responsive */
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-new {
        padding: 2rem;
    }

    /* Why Choose Us responsive */
    .features-grid-why {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card-why {
        padding: 2rem;
        min-height: 350px;
    }

    .section-header-why h2 {
        font-size: 2.2rem;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Portfolio responsive for mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .section-header-portfolio h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        min-height: 4.5rem; /* Further adjusted for small mobile with 3 lines */
    }

    .hero-title .title-line {
        min-height: 1.5rem; /* Further adjusted for small mobile */
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    /* Why Choose Us responsive for small mobile */
    .section-header-why h2 {
        font-size: 1.8rem;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    /* Portfolio responsive for small mobile */
    .section-header-portfolio h2 {
        font-size: 1.8rem;
    }

    .portfolio-cta h3 {
        font-size: 1.5rem;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    /* FAQ Section Small Mobile */
    .faq-question {
        padding: 18px 16px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 18px 16px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* Features Grid New Small Mobile */
    .feature-card-new {
        padding: 1.25rem;
    }

    .feature-icon-new {
        width: 50px;
        height: 50px;
    }

    .feature-icon-new i {
        font-size: 1.3rem;
    }

    .feature-card-new h3 {
        font-size: 1.1rem;
    }

    .feature-card-new p {
        font-size: 0.85rem;
    }

    /* Domain Pricing Table Small Mobile */
    .pricing-table-container {
        padding: 0 5px;
    }

    .table-cell {
        padding: 12px 15px;
    }

    .table-cell.domain-extension {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .table-cell.domain-extension .extension-badge {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .table-cell.domain-extension .extension-desc {
        font-size: 0.8rem;
    }

    .table-cell.price {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .table-cell.price:before {
        font-size: 0.8rem;
    }

    .table-cell.action {
        padding: 12px 15px;
    }

    .register-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        max-width: 150px;
    }

    /* Linux hosting responsive for small mobile */
    .page-header h1 {
        font-size: 2rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .linux-server-graphic {
        height: 300px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    /* Development pages responsive */
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-header h3 {
        font-size: 1.3rem;
        white-space: normal; /* Allow wrapping on mobile */
        min-height: auto;
    }

        .plan-header h3 {
            font-size: 1.2rem;
            white-space: normal; /* Allow wrapping on mobile */
            min-height: auto;
        }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .os-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .management-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* WordPress features grid responsive */
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card-new {
        padding: 1.5rem;
    }

    .feature-icon-new {
        width: 60px;
        height: 60px;
    }

    .feature-icon-new i {
        font-size: 1.5rem;
    }

    .feature-card-new h3 {
        font-size: 1.2rem;
    }

    .feature-card-new p {
        font-size: 0.9rem;
    }

    /* Domain pricing table responsive */
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .header-cell,
    .table-cell {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 15px;
    }

    .table-cell.domain-extension {
        background: #f8fafc;
        font-weight: 600;
        border-bottom: 2px solid #3b82f6;
    }

    .table-cell.price {
        justify-content: space-between;
    }

    .table-cell.price:before {
        content: attr(data-label);
        font-weight: 600;
        color: #6b7280;
    }

    /* Domain search responsive */
    .search-box {
        flex-direction: column;
        gap: 10px;
    }

    .domain-input,
    .domain-extension,
    .search-btn {
        width: 100%;
        border-radius: 10px;
    }

    /* FAQ Section Mobile Responsive */
    .faq-grid {
        gap: 1rem;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 20px 20px;
    }

    /* Features Grid New Mobile Responsive */
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card-new {
        padding: 1.5rem;
    }

    .feature-icon-new {
        width: 60px;
        height: 60px;
    }

    .feature-icon-new i {
        font-size: 1.5rem;
    }

    .feature-card-new h3 {
        font-size: 1.2rem;
    }

    .feature-card-new p {
        font-size: 0.9rem;
    }

    /* Domain Pricing Table Mobile - Complete Redesign */
    .pricing-table-container {
        overflow-x: visible;
        padding: 0 10px;
    }

    .pricing-table {
        display: block;
        width: 100%;
    }

    .table-header {
        display: none; /* Hide header on mobile */
    }

    .table-row {
        display: block;
        background: white;
        margin-bottom: 15px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: 1px solid #e5e7eb;
    }

    .table-cell {
        display: block;
        padding: 15px 20px;
        border: none;
        border-bottom: 1px solid #f1f5f9;
    }

    .table-cell:last-child {
        border-bottom: none;
    }

    .table-cell.domain-extension {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border-bottom: 2px solid #3b82f6;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
    }

    .table-cell.domain-extension .extension-badge {
        font-size: 1.1rem;
        padding: 8px 16px;
    }

    .table-cell.domain-extension .extension-desc {
        font-size: 0.9rem;
        color: #6b7280;
    }

    .table-cell.price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #1f2937;
    }

    .table-cell.price:before {
        content: attr(data-label);
        font-weight: 500;
        color: #6b7280;
        font-size: 0.9rem;
    }

    .table-cell.action {
        text-align: center;
        padding: 15px 20px;
        background: #f8fafc;
    }

    .register-btn {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Page Header Mobile */
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Section Header Mobile */
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* CTA Content Mobile */
    .cta-content h2 {
        font-size: 2rem;
    }

    /* Plan Header Mobile */
    .plan-header h3 {
        font-size: 1.2rem;
        white-space: normal;
        min-height: auto;
    }

    /* Package Header Mobile */
    .package-header h3 {
        font-size: 1.2rem;
        white-space: normal;
        min-height: auto;
    }

    /* Additional Mobile Optimizations */
    .container {
        padding: 0 15px;
    }

    /* Mobile-specific button improvements */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* Mobile table improvements */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile form improvements */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Mobile navigation improvements */
    .nav-menu {
        padding: 80px 0 2rem 0;
    }

    /* Mobile hero improvements */
    .hero-content {
        padding: 2rem 1rem;
    }

    /* Mobile section padding */
    .page-header,
    .hosting-plans,
    .hosting-features,
    .faq-section,
    .cta {
        padding: 60px 0;
    }

    /* Mobile card improvements */
    .plan-card,
    .package-card,
    .feature-card,
    .feature-card-new {
        margin-bottom: 1.5rem;
    }

    /* Mobile text improvements */
    .hero-subtitle,
    .section-header p,
    .cta-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Mobile icon improvements */
    .feature-icon,
    .feature-icon-new {
        margin-bottom: 1rem;
    }

    /* Mobile list improvements */
    .plan-features ul,
    .package-features ul {
        padding: 0;
    }

    .plan-features li,
    .package-features li {
        padding: 8px 0;
        font-size: 0.9rem;
    }

    /* Mobile touch improvements */
    .btn,
    .plan-btn,
    .package-btn,
    .faq-question {
        min-height: 44px; /* iOS recommended touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile scroll improvements */
    body {
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile focus improvements */
    .btn:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid #3b82f6;
        outline-offset: 2px;
    }

    /* Mobile loading improvements */
    .hero,
    .page-header {
        background-attachment: scroll; /* Better performance on mobile */
    }

    /* Mobile typography improvements */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    p {
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    /* Mobile spacing improvements */
    .section-header {
        margin-bottom: 2rem;
    }

    .faq-grid {
        margin-top: 2rem;
    }

    /* Mobile performance optimizations */
    .hero-particles,
    .floating-orb {
        display: none;
    }

    /* Mobile accessibility improvements */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* Final mobile optimizations */
    .hero-content,
    .page-header-content,
    .section-header,
    .cta-content {
        text-align: center;
        padding: 1rem;
    }

    /* Mobile overflow protection */
    .hero,
    .page-header,
    .hosting-plans,
    .hosting-features,
    .faq-section,
    .cta {
        overflow-x: hidden;
    }

    /* Mobile image optimization */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Mobile form optimization */
    .search-box,
    .domain-search {
        flex-direction: column;
        gap: 10px;
    }

    .domain-input,
    .search-btn {
        width: 100%;
        padding: 12px 16px;
    }

    /* Domain Pricing Table Mobile (768px and below) */
    .domain-pricing-table .container {
        padding: 0 15px;
    }

    .pricing-table-container {
        margin: 2rem 0;
        border-radius: 15px;
        overflow: hidden;
    }

    .pricing-table {
        display: block;
        width: 100%;
    }

    .table-header {
        display: none;
    }

    .table-row {
        display: block;
        background: white;
        margin-bottom: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: none;
    }

    .table-cell {
        display: block;
        padding: 18px 20px;
        border: none;
        border-bottom: 1px solid #f1f5f9;
    }

    .table-cell:last-child {
        border-bottom: none;
    }

    .table-cell.domain-extension {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border-bottom: 3px solid #3b82f6;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
    }

    .table-cell.domain-extension .extension-badge {
        font-size: 1.2rem;
        padding: 10px 18px;
    }

    .table-cell.domain-extension .extension-desc {
        font-size: 1rem;
        color: #6b7280;
        font-weight: 500;
    }

    .table-cell.price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #1f2937;
        font-size: 1.1rem;
    }

    .table-cell.price:before {
        content: attr(data-label);
        font-weight: 500;
        color: #6b7280;
        font-size: 1rem;
    }

    .table-cell.action {
        text-align: center;
        padding: 20px;
        background: #f8fafc;
    }

    .register-btn {
        width: 100%;
        max-width: 250px;
        padding: 14px 24px;
        font-size: 1rem;
        font-weight: 600;
    }
}

/* Extra Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .page-header h1,
    .section-header h2,
    .cta-content h2 {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .btn,
    .plan-btn,
    .package-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .feature-card-new,
    .plan-card,
    .package-card {
        padding: 1rem;
    }

    /* Domain Pricing Table Extra Small Mobile */
    .pricing-table-container {
        padding: 0;
    }

    .table-cell {
        padding: 10px 12px;
    }

    .table-cell.domain-extension {
        padding: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .table-cell.domain-extension .extension-badge {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .table-cell.domain-extension .extension-desc {
        font-size: 0.75rem;
    }

    .table-cell.price {
        font-size: 0.85rem;
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .table-cell.price:before {
        font-size: 0.75rem;
    }

    .table-cell.action {
        padding: 10px 12px;
    }

    .register-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        max-width: 120px;
    }

    /* Domain Search Section Mobile */
    .domain-search {
        padding: 2rem 1rem;
    }

    .search-box {
        flex-direction: column;
        gap: 15px;
        padding: 0;
    }

    .domain-input,
    .domain-extension,
    .search-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 8px;
    }

    .domain-extension {
        text-align: center;
    }

    /* Domain Pricing Cards Mobile */
    .domain-pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .domain-extension-badge {
        font-size: 1.2rem;
        padding: 8px 16px;
    }

    .domain-price .amount {
        font-size: 2rem;
    }

    .domain-features ul {
        padding: 0;
    }

    .domain-features li {
        padding: 6px 0;
        font-size: 0.9rem;
    }

    .domain-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
