/* Colors */
:root {
    --primary: #0d6efd;
    --accent: #f97316;     /* Orange */
    --dark: #111827;
    --light: #f8fafc;
}

/* ====================== GLOBAL MOBILE FIX ====================== */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;           /* Yeh line bahut important hai */
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .navbar .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* ====================== NAVBAR ====================== */
.navbar {
    background: rgba(10, 15, 28, 0.98) !important;
    backdrop-filter: blur(12px);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.65rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    color: #e2e8f0 !important;
}

.nav-link:hover,
.nav-link.active {
    color: #f97316 !important;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
    }
    
    .nav-item {
        margin-bottom: 8px;
    }
    
    .navbar-toggler {
        border-color: #f97316;
    }
}
/* ====================== NAVBAR FIX ====================== */
.navbar {
    padding: 12px 0;
}

.navbar .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* ====================== HERO SECTION FIX ====================== */
.hero-full {
    min-height: 85vh;
    padding-top: 85px;           /* Fixed navbar ke liye */
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a2538 100%);
    z-index: 1;
}

.hero-full::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://source.unsplash.com/random/1920x1080/?digital,marketing') center/cover no-repeat;
    opacity: 0.15;
    z-index: 2;
}

.hero-full > .container {
    z-index: 3;
    position: relative;
}

.hero-heading {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
}

.hero-subtext {
    font-size: 1.28rem;
    color: #cbd5e1;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .hero-full {
        min-height: 82vh;
        padding-top: 75px;
    }
    
    .hero-heading {
        font-size: 2.2rem;
    }
    
    .hero-btns .btn {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 10px auto;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
    }
}
/* ====================== HERO SECTION ====================== */
.hero-full {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 85px;
    background: #0a0f1c;
}

/* Background */
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a2538 100%);
    z-index: 1;
}

.hero-full::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://source.unsplash.com/random/1920x1080/?digital,abstract,dark') center/cover no-repeat;
    opacity: 0.13;
    z-index: 2;
}

/* Main Heading - Bada aur Bold */
.hero-heading {
    font-size: 3.4rem;          
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 1.28rem;
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.55;
}

/* Buttons */
.hero-btns .btn {
    padding: 16px 40px;
    font-size: 1.15rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-warning {
    background: #f97316;
    color: #111827;
    border: none;
}

.btn-warning:hover {
    background: #ea580c;
    transform: translateY(-4px);
}
.btn:active{
background-color: #ea580c !important;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
    .hero-full {
        min-height: 82vh;
        padding-top: 75px;
    }
    
    .hero-heading {
        font-size: 2.35rem;      /* Mobile pe bhi bada rakha */
    }
    
    .hero-subtext {
        font-size: 1.12rem;
    }
    
    .hero-btns .btn {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 12px auto;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
    }
}




/* Service Cards */
.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    background: linear-gradient(135deg, #0d6efd, #f97316);
    color: white;
}

/* Portfolio */
/* .portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio-card img {
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    background: rgba(249, 115, 22, 0.92);
} */

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: #0f172a;           /* Dark modern background */
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #f97316;                /* Orange accent */
    margin-bottom: 10px;
}

.section-subtitle {
    color: #3d3e3f;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.25);
}

.portfolio-card img {
    width: 100%;
    height: 320px;           /* Sab images ki height same */
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 20px;
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    padding-bottom: 40px;
}

.portfolio-overlay h5 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.portfolio-overlay .btn {
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    background: white;
    color: #0f172a;
    transition: all 0.3s ease;
}

.portfolio-overlay .btn:hover {
    background: #f97316;
    color: white;
    transform: scale(1.05);
}
/* Section Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
}

/* Dark/Light alternate sections */
.bg-dark { background: var(--dark) !important; }
.bg-light { background: var(--light) !important; }

/* Baaki sections ke liye similar improvements — padding, hover, etc. */

.btn-warning {
    background: #f97316;
    border: none;
}

.btn-warning:hover {
    background: #ea580c;
    transform: translateY(-3px);
}



/* General Section Title */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #f97316;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
    background: linear-gradient(135deg, #0d6efd, #f97316);
    color: white;
}

.service-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* ====================== TRUST / WHY US SECTION ====================== */
/* ====================== TRUST / WHY US SECTION ====================== */
.trust-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e2937 100%);
    overflow: hidden;                    /* Yeh line important hai */
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #f97316;
}

.section-subtitle {
    color: #cbd5e1;                      /* Yeh sahi color hai */
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Trust Points - Hover effect ko safe banaya */
.trust-content .trust-point {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.06);
    padding: 28px 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.15);
    transition: all 0.3s ease;
    transform: translateX(0);            /* Default position */
}

.trust-content .trust-point:hover {
    transform: translateX(10px);         /* Kam kiya 15px se 10px */
    background: rgba(249, 115, 22, 0.12);
    border-color: #f97316;
}

.trust-point .icon {
    font-size: 32px;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.trust-point h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.trust-point p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

/* Stats Box */
.stats-box {
    background: linear-gradient(135deg, #1e2937, #334155);
    padding: 50px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.stats-box h3.counter {
    font-size: 52px;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 8px;
    line-height: 1;
}

.stats-box p {
    color: #e2e8f0;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 500;
}

/* Counter Animation Trigger */
.counter {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.counter.visible {
    opacity: 1;
}

/* Stats Box */
.stats-box {
    background: linear-gradient(135deg, #1e2937, #334155);
    padding: 50px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.stats-box h3 {
    font-size: 48px;
    font-weight: 700;
    color: #f97316;
}

/* ====================== PROCESS SECTION ====================== */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #f97316;
}

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

/* Process Card */
.process-card {
    background: white;
    padding: 40px 25px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 6px;
    background: #f97316;
    border-radius: 0 0 12px 12px;
    transition: all 0.4s ease;
}

.process-card:hover::before {
    width: 90px;
    background: #ea580c;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.18);
}

/* Process Number */
.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Text inside card */
.process-card h5 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e2937;
    margin-bottom: 12px;
}

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

/* ====================== RESPONSIVE DESIGN ====================== */

@media (max-width: 992px) {
    .process-card {
        padding: 35px 20px 30px;
    }
    
    .process-number {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .process-card {
        margin-bottom: 20px;
    }
    .carousel-control-prev,
.carousel-control-next{
    display: none;
}
}

@media (max-width: 576px) {
    .process-card {
        padding: 30px 20px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .process-card h5 {
        font-size: 1.25rem;
    }
}
/* ====================== TESTIMONIAL SECTION (White Background) ====================== */
.testimonial-section {
    padding: 100px 0;
    background: #ffffff;           /* White Background */
}

.testimonial-card {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    border-radius: 24px;
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.15);
    border-color: #f97316;
}

.quote-icon {
    font-size: 90px;
    line-height: 1;
    color: #f97316;
    opacity: 0.08;
    position: absolute;
    top: 15px;
    left: 30px;
    font-family: serif;
    z-index: 1;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    color: #334155;
    position: relative;
    z-index: 2;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.client-avatar {
    font-size: 45px;
    width: 60px;
    height: 60px;
    background: #fff0e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f97316;
}

.client-info h6 {
    margin: 0;
    color: #1e2937;
    font-weight: 700;
    font-size: 1.1rem;
}

.client-info small {
    color: #64748b;
    font-size: 0.95rem;
    display: block;
}

/* Stars */
.stars {
    color: #f97316;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

/* ====================== CAROUSEL CONTROLS (Orange) ====================== */
.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    background: #f97316;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #ea580c;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);   /* White arrows */
}

/* Custom Arrow */
.carousel-control-prev::before,
.carousel-control-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -50%);
}

.carousel-control-prev::before {
    transform: translate(-40%, -50%) rotate(135deg);
}

.carousel-control-next::before {
    transform: translate(-60%, -50%) rotate(-45deg);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    background-color: #f97316;
    height: 6px;
    width: 38px;
    border-radius: 10px;
    opacity: 0.5;
    margin: 0 6px;
}

.carousel-indicators button.active {
    background-color: #f97316;
    opacity: 1;
    width: 50px;
}

/* ====================== FAQ SECTION ====================== */
.faq-section {
    padding: 110px 0;
    background: #0f172a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.15);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #f97316;
    transform: translateY(-3px);
}

.faq-question {
    padding: 22px 28px;
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-icon {
    font-size: 1.6rem;
    font-weight: 300;
    color: #f97316;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 28px 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #cbd5e1;
    line-height: 1.7;
}

.faq-answer p {
    padding-bottom: 22px;
    margin: 0;
}

/* Active State */
.faq-item.active .faq-question {
    color: #f97316;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 18px 22px;
        font-size: 1.08rem;
    }
}

/* ====================== FOOTER ====================== */
.footer-section {
    background: #0a0f1c;
    color: #cbd5e1;
    padding: 80px 0 30px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 320px;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.08);
    color: #cbd5e1;
    font-size: 1.4rem;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #f97316;
    color: #111827;
    transform: translateY(-5px);
}

/* Headings */
.footer-heading {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f97316;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: #f97316;
    font-size: 1.1rem;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 25px;
    margin-top: 40px;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .social-icons a {
        margin-right: 8px;
        width: 42px;
        height: 42px;
    }
}




/* Service Cards with Top Orange Line */
.service-card {
    background: white;
    padding: 40px 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #f97316;           /* Orange line */
    border-radius: 0 0 10px 10px;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    width: 90px;                   /* Hover pe line lambi ho jaati hai */
    background: #ea580c;
}

.service-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
    margin-top: 10px;              /* line ke neeche thoda space */
}

/* Process Cards with Top Orange Line */
.process-card {
    background: white;
    padding: 40px 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 5px;
    background: #f97316;
    border-radius: 0 0 10px 10px;
    transition: all 0.4s ease;
}
.text-orange{
    color: #f97316;
}

.process-card:hover::before {
    width: 80px;
    background: #ea580c;
}

.process-number {
    width: 65px;
    height: 65px;
    background: #f97316;
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 20px;
}


/* ====================== CONTACT SECTION ====================== */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a2538 100%);
}

/* Left Info Card */
.contact-info-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(15px);
    padding: 55px 45px;
    border-radius: 24px;
    border: 1px solid rgba(249, 115, 22, 0.25);
    height: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.contact-info-card h2 {
    color: white;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info-card .lead {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Contact Details */
.contact-details .detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-details i {
    font-size: 32px;
    color: #f97316;
    min-width: 50px;
}

.contact-details h5 {
    color: #f97316;
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.contact-details a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-details a:hover {
    color: #f97316;
}

/* Right Form Card */
.contact-form-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(15px);
    padding: 55px 45px;
    border-radius: 24px;
    border: 1px solid rgba(249, 115, 22, 0.25);
    height: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.contact-form-card h3 {
    color: white;
    font-weight: 700;
}

.form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.25);
    color: white;
}

.form-control::placeholder {
    color: #94a3b8;
}

/* Submit Button */
.submit-btn {
    background: #f97316;
    color: #111827;
    border: none;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ea580c;
    transform: translateY(-4px);
}

/* ====================== SUCCESS POPUP ====================== */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #1a2538;
    padding: 45px 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* bouncy smooth effect */
}

.success-popup.show .popup-content {
    transform: scale(1);
    opacity: 1;
}

.popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.popup-content h2 {
    color: #f97316;
    font-weight: 700;
    margin-bottom: 15px;
}

.popup-content p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.popup-close-btn {
    background: #f97316;
    color: #111827;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: #ea580c;
    transform: translateY(-3px);
}
