/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #161616;
    color: #fff;
}

/* Base Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    height: 10vh;
    min-height: 80px;
    width: calc(100% - 40px);
    /* max-width: 1400px; */
    margin: 20px auto;
    
    /* Make it sticky */
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    
    /* Style */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(31, 41, 55, 0.45);
    
    /* Border */
    border: 1px solid rgba(255, 255, 255, 0.326);
    border-radius: 30px;
    
    /* Shadow */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Logo */
nav .logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* ===== HAMBURGER VISIBILITY FIX ===== */
.hamburger {
    display: none;
    background: rgba(31, 41, 55, 0.8) !important; /* Semi-transparent dark */
    border: 2px solid rgba(250, 88, 47, 0.5) !important; /* Orange border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    z-index: 1001;
}

.hamburger-line {
    background: #fa582f !important; /* Your orange color */
    width: 24px !important;
    height: 3px !important; /* Slightly thicker */
    margin: 4px 0 !important;
    border-radius: 3px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.hamburger:hover {
    background: rgba(250, 88, 47, 0.2) !important;
    border-color: #fa582f !important;
}

.hamburger:hover .hamburger-line {
    background: #ff7a5c !important; /* Lighter orange on hover */
}

/* Navigation Links */
nav .nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fa582f, #ff7a5c);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav .nav-links a:hover {
    color: #ffddc1;
}

nav .nav-links a:hover::after {
    width: 100%;
}

/* Contact Button */
.contact-btn a {
    background: linear-gradient(135deg, #fa582f, #ff7a5c);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(250, 88, 47, 0.3);
}

.contact-btn a:hover {
    background: linear-gradient(135deg, #ff7a5c, #fa582f);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 88, 47, 0.4);
}

/* Desktop Contact Button */
.desktop-contact-btn {
    display: flex;
}

/* Mobile Contact Button */
.mobile-contact-btn {
    display: none;
}

/* Mobile Styles */
@media screen and (max-width: 1024px) {
    nav {
        padding: 15px 25px;
        width: calc(100% - 30px);
        margin: 15px auto;
    }
    
    nav .nav-links {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    /* Show hamburger, hide desktop contact */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .desktop-contact-btn {
        display: none;
    }
    
    .mobile-contact-btn {
        display: block;
        margin-top: 20px;
        text-align: center;
    }
    
    /* Navigation Links - Hidden by default on mobile */
    nav .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: rgba(31, 41, 55, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 80px 20px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        margin: 0;
    }
    
    /* Navigation Links when active */
    nav .nav-links.active {
        transform: translateX(0);
    }
    
    /* Hamburger animation when menu is open */
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Mobile link styles */
    nav .nav-links a {
        font-size: 18px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav .nav-links a::after {
        display: none;
    }
    
    nav .nav-links a:hover {
        color: #fa582f;
        transform: translateX(10px);
    }
    
    /* Mobile contact button */
    .mobile-contact-btn a {
        width: 200px;
        padding: 15px 30px;
        font-size: 17px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    nav {
        padding: 12px 20px;
        width: calc(100% - 20px);
        margin: 10px auto;
        border-radius: 20px;
    }
    
    nav .logo img {
        height: 40px;
    }
    
    .hamburger {
        width: 40px;
        height: 40px;
    }
    
    nav .nav-links {
        max-width: 100%;
    }
    
    .mobile-contact-btn a {
        width: 100%;
    }
}

/* ===== HERO SECTION - COMPLETE STYLES ===== */

/* Main Hero Container */
.hero-section {
    background: 
        /* Center light effect */
        radial-gradient(
            ellipse at 50% 50%,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.05) 25%,
            transparent 60%
        ),
        /* Clean horizontal gradient */
        linear-gradient(
            90deg,
            #fa582f 0%,      /* Left: Your orange */
            #ff7a5c 20%,     /* Light orange */
            #f9836c 35%,     /* Center highlight */
            #ff7a5c 50%,     /* Light orange */
            #e85a3a 65%,     /* Medium orange */
            #c43d24 80%,     /* Dark orange-red */
            #5b191b 100%     /* Right: Dark burgundy */
        );
    background-blend-mode: overlay;
    min-height: 95vh;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding-top: 10vh;
    
    /* Flex layout for 3 sections */
    display: flex;
    flex-direction: column;
    padding: 170px 50px 60px;
}

/* Hero Top Row - 2 Columns */
.hero-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex: 1;
}

/* Left Content */
.hero-content-left {
    position: relative;
    z-index: 2;
}

.hero-content-left p {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 20px;
}

.hero-content-left p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #fa582f;
    border-radius: 50%;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Right Content */
.hero-content-right {
    position: relative;
    z-index: 2;
    padding-left: 40px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
}

.hero-content-right h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-content-right p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 400px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.hero-cta .primary-btn {
    background: #f95127;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta .primary-btn:hover {
    background: #ff7a5c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 88, 47, 0.3);
}

.hero-cta .secondary-btn {
    background: #fff;
    color: #f95127;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== WHO WE SERVE SECTION (Inside Hero) ===== */
.audience-section {
    margin-top: auto; /* Pushes to bottom of hero */
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
}

.audience-title {
    text-align: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
}

.audience-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

/* Audience Grid - 4 cards in a row */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Audience Cards */
.audience-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
}

.audience-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Number Styling */
.card-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.audience-card:hover .card-number {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Card Text */
.audience-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-left,
.hero-content-right {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content-right {
    animation-delay: 0.2s;
}

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

.audience-card {
    animation: slideInUp 0.6s ease-out forwards;
    animation-fill-mode: both;
}

.audience-card:nth-child(1) { animation-delay: 0.4s; }
.audience-card:nth-child(2) { animation-delay: 0.5s; }
.audience-card:nth-child(3) { animation-delay: 0.6s; }
.audience-card:nth-child(4) { animation-delay: 0.7s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-section {
        padding: 150px 40px 50px;
    }
    
    .hero-top-row {
        gap: 50px;
        margin-bottom: 70px;
    }
    
    .hero-content-left h1 {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 150px 30px 50px;
    }
    
    .hero-top-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .hero-content-right {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.15);
        padding-top: 30px;
    }
    
    .hero-content-right p {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .audience-section {
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 20px 40px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    
    .hero-content-left p {
        margin-top: 0;
        font-size: 1rem;
    }
    
    .hero-content-left h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-content-right h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .hero-content-right p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .hero-cta .primary-btn,
    .hero-cta .secondary-btn {
        width: 100%;
        text-align: center;
        padding: 14px 25px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .audience-card {
        padding: 20px 15px;
    }
    
    .audience-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .card-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 120px 15px 30px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    
    .hero-content-left h1 {
        font-size: 1.8rem;
    }
    
    .hero-content-right h2 {
        font-size: 1.3rem;
    }
    
    .audience-title {
        font-size: 1.3rem;
    }
    
    .audience-card p {
        font-size: 0.9rem;
    }
}

/* ===== BACKGROUND ELEMENTS ===== */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 122, 92, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(91, 25, 27, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Optional: Add floating particles/animated dots */
.hero-section .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08) 1px, transparent 1px),
        radial-gradient(circle at 15% 60%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    pointer-events: none;
    z-index: 1;
    animation: floatParticles 20s linear infinite;
}

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

.about-section {
    margin-top: -100px;
    padding: 150px 50px 100px 50px;
}

/* About Section */
.about-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Left Content (About Text) */
.about-content-left {
    padding-right: 40px;
}

.about-content-left h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #fff, #fa582f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.about-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Right Content (Service Cards) */
.about-content-right {
    width: 100%;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

/* Service Cards */
.service-card {
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%; 
    min-height: 220px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 88, 47, 0.1), rgba(91, 25, 27, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(250, 88, 47, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .material-symbols-outlined {
    font-size: 48px;
    color: #fa582f;
    margin-bottom: 25px;
    background: rgba(250, 88, 47, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .material-symbols-outlined {
    transform: scale(1.1);
    background: rgba(250, 88, 47, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

/* Buttons */
.secondary-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #fa582f;
    border: 2px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fa582f;
    transition: left 0.4s ease;
    z-index: -1;
}

.secondary-btn:hover {
    color: white;
    border-color: #fa582f;
}

.secondary-btn:hover::before {
    left: 0;
}

/* Background Elements */
.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250, 88, 47, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 25, 27, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        gap: 60px;
    }
    
    .service-cards {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-top: 70px;
    }
    
    .about-content-left {
        padding-right: 0;
        text-align: center;
    }
    
    .about-content-left p {
        max-width: 100%;
    }
    
    .about-content-left h2 {
        font-size: 2.5rem;
    }
    
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .about-content-left h2 {
        font-size: 2.2rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .about-content-left h2 {
        font-size: 1.8rem;
    }
    
    .about-content-left p {
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card .material-symbols-outlined {
        font-size: 40px;
        width: 70px;
        height: 70px;
    }
    
    .secondary-btn {
        padding: 14px 30px;
        width: 100%;
        text-align: center;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content-left {
    animation: fadeIn 0.8s ease-out forwards;
}

.service-card {
    animation: fadeIn 0.8s ease-out forwards;
    animation-fill-mode: both;
}

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






/* Services Section */
.services-section {
    padding: 100px 50px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    z-index: 2;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #fa582f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.services-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Services Grid - 3 columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card */
.service-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* overflow: hidden; */
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 88, 47, 0.1), rgba(91, 25, 27, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
} */

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(250, 88, 47, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* .service-card:hover::before {
    opacity: 1;
} */

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(250, 88, 47, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(250, 88, 47, 0.2);
    transform: scale(1.1);
}

.service-icon .material-symbols-outlined {
    font-size: 36px;
    color: #fa582f;
}

/* Price Tag */
.service-price {
    display: inline-block;
    background: rgba(250, 88, 47, 0.15);
    color: #fa582f;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    align-self: flex-start;
    border: 1px solid rgba(250, 88, 47, 0.2);
}

/* Card Content */
.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Features List */
.service-features {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.service-features li {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fa582f;
    font-weight: bold;
    font-size: 1rem;
}

/* CTA Button */
.service-cta {
    display: inline-block;
    padding: 14px 30px;
    background: rgba(250, 88, 47, 0.1);
    color: #fa582f;
    border: 1px solid rgba(250, 88, 47, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    width: 100%;
}

.service-cta:hover {
    background: rgba(250, 88, 47, 0.2);
    color: #fff;
    border-color: #fa582f;
    transform: translateY(-2px);
}

/* Highlight the middle card (optional) */
.services-grid .service-card:nth-child(2) {
    border-color: rgba(250, 88, 47, 0.2);
    transform: scale(1.02);
}

.services-grid .service-card:nth-child(2):hover {
    transform: translateY(-10px) scale(1.02);
}

/* Background Elements */
.services-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(250, 88, 47, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-grid .service-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 30px;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid .service-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .services-grid .service-card:nth-child(2) {
        transform: none;
    }
    
    .services-grid .service-card:nth-child(2):hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-header p {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon .material-symbols-outlined {
        font-size: 30px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }















/* Contact Section */
.contact-section {
    margin-top: -70px;
    padding: 130px 50px;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Contact Info */
.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #fa582f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 500px;
}

/* Contact Details */
.contact-details {
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(250, 88, 47, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .material-symbols-outlined {
    font-size: 28px;
    color: #fa582f;
}

.contact-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-note {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem !important;
    font-style: italic;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(250, 88, 47, 0.1);
    color: #fa582f;
    border-color: rgba(250, 88, 47, 0.3);
    transform: translateY(-3px);
}

/* Contact Form Container */
.contact-form-container {
    background: rgba(31, 41, 55, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Form Styles */
.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(250, 88, 47, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(250, 88, 47, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fa582f'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    cursor: pointer;
}

/* Submit Button */
.form-footer {
    margin-top: 40px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #fa582f;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.submit-btn:hover {
    background: #ff7a5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 88, 47, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.loading-spinner {
    display: flex;
    align-items: center;
}

.loading-spinner .spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Background Elements */
.contact-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250, 88, 47, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 25, 27, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-container {
        gap: 60px;
        padding-top: 100px;
    }
    
    .contact-form-container {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 80px 30px;
        padding-top: 60px;
    }
    
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
        padding-top: 60px;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding-top: 20px;
    }
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon .material-symbols-outlined {
        font-size: 24px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* Success Message Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.success-modal-content {
    background: #1f2937;
    border: 1px solid rgba(250, 88, 47, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(250, 88, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-icon .material-symbols-outlined {
    font-size: 40px;
    color: #fa582f;
}

.success-modal h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.success-modal p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.close-modal {
    background: #fa582f;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #ff7a5c;
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fa582f'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    cursor: pointer;
    /* Keep your existing styles */
}

/* For Firefox */
.form-group select {
    color: #fff; /* Make selected text visible */
}

/* For the dropdown options - doesn't work consistently across browsers */
.form-group select option {
    background-color: #1f2937 !important;
    color: #fff !important;
    padding: 10px;
}

/* For Chrome/Safari - limited styling */
.form-group select option:checked {
    background-color: #fa582f !important;
    color: white !important;
}




















/* Footer Section */
.footer-section {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 50px 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo img {
    width: 250px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #fa582f;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

/* Newsletter */
.newsletter h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(250, 88, 47, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background: #fa582f;
    color: white;
    border: none;
    border-radius: 10px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: #ff7a5c;
    transform: translateY(-2px);
}

/* Footer Middle */
.footer-middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fa582f;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: #fa582f;
    transform: translateX(5px);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact .material-symbols-outlined {
    color: #fa582f;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(250, 88, 47, 0.1);
    color: #fa582f;
    border-color: rgba(250, 88, 47, 0.3);
    transform: translateY(-3px);
}

/* Footer CTA */
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(250, 88, 47, 0.1);
    color: #fa582f;
    padding: 14px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(250, 88, 47, 0.2);
}

.footer-btn:hover {
    background: rgba(250, 88, 47, 0.2);
    color: #fff;
    border-color: #fa582f;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    display: flex;
    gap: 20px;
    align-items: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.heart {
    color: #fa582f;
    font-size: 16px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fa582f;
}

.divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Background Elements */
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(250, 88, 47, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(91, 25, 27, 0.03) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }
}

@media (max-width: 992px) {
    .footer-section {
        padding: 60px 30px 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        padding-bottom: 40px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 20px 20px;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .copyright {
        flex-direction: column;
        gap: 10px;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-brand .footer-logo {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-cta {
        text-align: center;
    }
}