/* Web Service Specific Styles */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --accent: #f093fb;
    --dark: #1a202c;
    --light: #f7fafc;
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #f56565;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* ====== HEADER STYLES (Same as flight) ====== */
header {
    width: 90%;
    max-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    margin: 0 auto;
    padding: 0 30px;
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    z-index: 1003;
}

.logo img {
    width: 180px;
    height: 140px;
    border-radius: 0%;
    background: transparent;
}

header ul {
    display: flex;
    gap: 25px;
}

header ul li {
    list-style: none;
    text-transform: capitalize;
}

header ul a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 5px;
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header ul i {
    margin-right: 5px;
}

header ul a i {
    margin-left: 5px;
}

header ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: rgb(126, 24, 24);
    transition: width 0.6s ease;
}

header ul li a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
header ul li ul {
    position: absolute;
    top: 100px;
    background: rgba(255, 255, 255, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
}

header ul li ul li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    width: 100%;
}

header ul li ul li a {
    padding: 12px 20px;
    color: #000;
}

header ul li ul li:hover {
    background: rgb(100, 98, 98);
    color: #fff;
    padding: 10px;
}

header ul li ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #fff;
    transition: width 0.6s ease;
}

header ul li.show ul,
header ul li:hover ul {
    display: flex;
}

header ul li:hover ul li {
    opacity: 1;
    transform: translateX(0);
}

header ul li:hover ul li:nth-child(1) { animation-delay: 0.1s; }
header ul li:hover ul li:nth-child(2) { animation-delay: 0.2s; }
header ul li:hover ul li:nth-child(3) { animation-delay: 0.3s; }
header ul li:hover ul li:nth-child(4) { animation-delay: 0.4s; }
header ul li:hover ul li:nth-child(5) { animation-delay: 0.5s; }
header ul li:hover ul li:nth-child(6) { animation-delay: 0.6s; }
header ul li:hover ul li:nth-child(7) { animation-delay: 0.7s; }
header ul li:hover ul li:nth-child(8) { animation-delay: 0.8s; }

header ul li:hover ul li {
    opacity: 1;
    transform: translateX(0);
}

header ul li:hover ul li:nth-child(1) { animation-delay: 0.1s; }
header ul li:hover ul li:nth-child(2) { animation-delay: 0.2s; }
header ul li:hover ul li:nth-child(3) { animation-delay: 0.3s; }
header ul li:hover ul li:nth-child(4) { animation-delay: 0.4s; }
header ul li:hover ul li:nth-child(5) { animation-delay: 0.5s; }
header ul li:hover ul li:nth-child(6) { animation-delay: 0.6s; }
header ul li:hover ul li:nth-child(7) { animation-delay: 0.7s; }
header ul li:hover ul li:nth-child(8) { animation-delay: 0.8s; }

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 2px;
    transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ====== HERO SECTION ====== */
.hero-web {
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-web::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.8) 50%, rgba(240, 147, 251, 0.75) 100%);
    z-index: 1;
}

.hero-web::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

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

.floating-code span {
    position: absolute;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    animation: float 15s infinite linear;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(102, 126, 234, 0.4);
}

.floating-code span:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 2rem;
    animation-delay: 0s;
}

.floating-code span:nth-child(2) {
    top: 60%;
    right: 15%;
    font-size: 1.5rem;
    animation-delay: -3s;
}

.floating-code span:nth-child(3) {
    bottom: 30%;
    left: 20%;
    font-size: 1.8rem;
    animation-delay: -6s;
}

.floating-code span:nth-child(4) {
    top: 40%;
    right: 30%;
    font-size: 1.2rem;
    animation-delay: -9s;
}

.floating-code span:nth-child(5) {
    bottom: 20%;
    right: 10%;
    font-size: 1.6rem;
    animation-delay: -12s;
}

.floating-code span:nth-child(6) {
    top: 70%;
    left: 40%;
    font-size: 1.4rem;
    animation-delay: -15s;
}

.floating-code span:nth-child(7) {
    top: 15%;
    right: 25%;
    font-size: 1.3rem;
    animation-delay: -18s;
}

.floating-code span:nth-child(8) {
    bottom: 40%;
    left: 60%;
    font-size: 1.5rem;
    animation-delay: -21s;
}

.floating-code span:nth-child(9) {
    top: 35%;
    left: 5%;
    font-size: 1.2rem;
    animation-delay: -24s;
}

.floating-code span:nth-child(10) {
    bottom: 15%;
    right: 35%;
    font-size: 1.4rem;
    animation-delay: -27s;
}

.floating-code span:nth-child(11) {
    top: 80%;
    left: 25%;
    font-size: 1.1rem;
    animation-delay: -30s;
}

.floating-code span:nth-child(12) {
    top: 50%;
    right: 5%;
    font-size: 1.3rem;
    animation-delay: -33s;
}

.floating-code span:nth-child(13) {
    bottom: 60%;
    left: 80%;
    font-size: 1.2rem;
    animation-delay: -36s;
}

.floating-code span:nth-child(14) {
    top: 25%;
    left: 70%;
    font-size: 1.1rem;
    animation-delay: -39s;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== BUTTONS ====== */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* ====== SERVICES SECTION ====== */
.services-section {
    background-image: url('images/service.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}



#services {
    scroll-margin-top: 150px;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.7);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    height: auto;
    max-height: 420px;
}

.service-card h4 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.service-card p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.service-features li {
    padding: 0.15rem 0;
    color: #718096;
    font-size: 0.85rem;
}

.service-features i {
    color: var(--success);
    margin-right: 0.5rem;
}

/* ====== TECHNOLOGIES SECTION ====== */
.tech-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2d3748 100%);
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.tech-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.tech-card span {
    color: white;
    font-weight: 600;
}

/* ====== PROCESS SECTION ====== */
.process-section {
    background-image: url('images/dev.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.process-section .container {
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1.25rem 0.75rem;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.25rem auto 0.75rem;
    color: var(--primary);
    font-size: 1.75rem;
}

.process-step h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.process-step p {
    color: #718096;
}

/* ====== ANIMATIONS & EFFECTS ====== */
.typing-effect {
    overflow: hidden;
    border-right: 3px solid rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: rgba(255, 255, 255, 0.75) }
}

.glow-effect {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    to { box-shadow: 0 0 30px rgba(102, 126, 234, 0.8), 0 0 40px rgba(102, 126, 234, 0.6); }
}

.hover-fill {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.3s ease;
    z-index: -1;
}

.hover-fill:hover::before {
    left: 0;
}

.hover-fill:hover {
    color: var(--primary) !important;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

/* ====== TRUST INDICATORS ====== */
.trust-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(102,126,234,0.1)"/></svg>') repeat;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.trust-item {
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.25rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

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

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.trust-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.counter {
    transition: all 0.3s ease;
}

/* ====== SECTION BADGES ====== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====== SERVICE CARDS ====== */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.trending {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-price {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.service-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s;
}

.service-card:hover .service-price::before {
    left: 100%;
}

.btn-gradient-outline {
    background: transparent;
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    color: var(--primary);
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-gradient-outline:hover::before {
    opacity: 1;
}

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

/* ====== PORTFOLIO PREVIEW ====== */
.portfolio-preview {
    background: #f8fafc;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    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 20px 40px rgba(0, 0, 0, 0.2);
}

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

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-info {
    text-align: center;
    color: white;
}

.portfolio-info h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2d3748 100%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-card .stars {
    color: #fbbf24;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.client-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.client-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ====== URGENCY SECTION ====== */
.urgency-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
}

.urgency-content h3 {
    color: #92400e;
    margin-bottom: 1rem;
}

.urgency-content p {
    color: #78350f;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.urgency-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.urgency-benefits li {
    padding: 0.25rem 0;
    color: #78350f;
    font-weight: 500;
    font-size: 0.9rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* ====== CTA SECTION ====== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.contact-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
    color: white;
}

.contact-option h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-option p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    display: inline-block;
    margin-top: 2rem;
}

/* ====== FOOTER STYLES (Same as flight) ====== */
.footer {
    background: #fff;
    color: #000;
    padding: 40px 5% 35px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 240px;
}

.footer h3,
.footer h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact a {
    text-decoration: none;
    color: var(--primary);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
}

.footer-contact .mail-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    line-height: 1.6;
}

.footer-contact .whatsapp,
.footer-contact .mailing,
.footer-contact .location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-socials a img {
    width: 30px;
    height: 30px;
}

.footer .logo img {
    width: 160px;
    height: 130px;
}

.newsletter {
    background: #111;
    padding: 25px 20px;
    text-align: center;
    border-radius: 6px;
}

.newsletter h4 {
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    outline: none;
    width: 260px;
    max-width: 100%;
}

.newsletter-form button {
    padding: 12px 24px;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
}

/* Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (min-width: 992px) {
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 991px) {
    header {
        padding: 10px 20px;
        width: 95%;
        border-radius: 40px 40px 0 0;
    }

    .logo img {
        width: 120px;
        height: 100px;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.5);
        flex-direction: column;
        padding: 15px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        display: flex !important;
    }

    .menu li {
        margin: 5px 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .typing-effect {
        animation: none;
        border-right: none;
        white-space: normal;
    }
    
    .hero-web {
        min-height: 70vh;
    }
    
    .hero-web .container {
        padding-top: 120px !important;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
        margin-top: 0;
    }
    
    .hero-web h1 {
        font-size: 2rem !important;
    }
    
    .hero-web .lead {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
    
    .tech-card {
        padding: 1rem;
    }
    
    .tech-card i {
        font-size: 2rem;
    }
    
    .process-step {
        padding: 1.5rem 0.5rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .trust-number {
        font-size: 2.5rem;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-option {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .urgency-section {
        text-align: center;
    }
    
    .portfolio-image img {
        height: 200px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: left;
    }
}

@media (max-width: 576px) {
    header {
        padding: 8px 15px;
        width: 98%;
        top: 10px;
        border-radius: 40px 40px 0 0;
    }
    
    .logo img {
        width: 100px;
        height: 80px;
    }
    
    .hamburger {
        gap: 3px;
    }

    .hamburger span {
        width: 18px;
        height: 2px;
    }

    .menu {
        padding: 10px;
    }
    
    .hero-web h1 {
        font-size: 1.75rem !important;
    }
    
    .floating-code span {
        font-size: 1rem !important;
    }
}


/* ====== REDESIGNED TIMELINE STEPS ====== */
.timeline-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: sparkleMove 20s linear infinite;
}

@keyframes sparkleMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.timeline-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    z-index: 2;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0.9) 0%, 
        rgba(255,255,255,0.7) 50%, 
        rgba(255,255,255,0.9) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.timeline-step {
    position: relative;
    margin-bottom: 10px;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-step:hover,
.timeline-step.active {
    opacity: 1;
    transform: scale(1.03);
}

.timeline-step:nth-child(odd) .timeline-content {
    margin-left: 40px;
    margin-right: 2px;
    text-align: left;
}

.timeline-step:nth-child(even) .timeline-content {
    margin-right: 40px;
    margin-left: 2px;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    color: #667eea;
    font-size: 18px;
    box-shadow: 
        0 6px 24px rgba(255,255,255,0.4),
        0 0 0 4px rgba(255,255,255,0.1),
        inset 0 1px 3px rgba(102,126,234,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
}

.timeline-step:hover .timeline-dot,
.timeline-step.active .timeline-dot {
    transform: translateX(-50%) scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 32px rgba(255,255,255,0.6),
        0 0 0 8px rgba(255,255,255,0.2),
        inset 0 1px 6px rgba(102,126,234,0.2);
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    color: white;
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    padding: 12px 50px;
    border-radius: 10px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.timeline-step:hover .timeline-content,
.timeline-step.active .timeline-content {
    box-shadow: 
        0 20px 60px rgba(255,255,255,0.3),
        0 0 0 2px rgba(255,255,255,0.4);
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    transform: translateY(-5px);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 35px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    z-index: -1;
}

.timeline-step:nth-child(odd) .timeline-content::before {
    left: -10px;
}

.timeline-step:nth-child(even) .timeline-content::before {
    right: -10px;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
    position: relative;
    overflow: hidden;
}

.timeline-badge::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;
}

.timeline-step:hover .timeline-badge::before {
    left: 100%;
}

.timeline-content h4 {
    color: #2d3748;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content p {
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.3;
    font-size: 0.85rem;
    font-weight: 500;
}

.timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    color: #667eea;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 10px;
    border: 1px solid rgba(102,126,234,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-duration::before {
    content: '⏱️';
    font-size: 14px;
}

.journey-cta {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    color: #2d3748;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(255,255,255,0.4),
        0 0 0 1px rgba(255,255,255,0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}

.journey-cta .d-flex {
    gap: 15px !important;
}

.journey-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.pulse-effect {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102,126,234,0.7);
    }
    70% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(102,126,234,0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102,126,234,0);
    }
}

/* ====== WHATSAPP BUTTON DESIGN ====== */
.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-success::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.5s;
}

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

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.btn-success .fa-whatsapp {
    font-size: 1.2em;
    animation: whatsappBounce 2s infinite;
}

@keyframes whatsappBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Progress Animation */
.timeline-step:nth-child(1) { animation-delay: 0s; }
.timeline-step:nth-child(2) { animation-delay: 0s; }
.timeline-step:nth-child(3) { animation-delay: 0s; }
.timeline-step:nth-child(4) { animation-delay: 0s; }

@media (max-width: 768px) {
    .timeline-step:nth-child(odd) .timeline-content,
    .timeline-step:nth-child(even) .timeline-content {
        margin-left: 100px;
        margin-right: 20px;
        text-align: left;
        padding: 25px;
    }
    
    .timeline-step:nth-child(odd) .timeline-content::before,
    .timeline-step:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
    }
    
    .timeline-dot {
        left: 40px;
        transform: none;
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .timeline-step:hover .timeline-dot,
    .timeline-step.active .timeline-dot {
        transform: scale(1.1);
    }
    
    .timeline-line {
        left: 40px;
        transform: none;
        width: 4px;
    }
    
    .journey-cta {
        padding: 30px 20px;
    }
}

/* ====== TIMELINE SECTION STYLES FROM HTML ====== */
.timeline-section h2 {
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.timeline-section .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}