 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gradient-1: linear-gradient(135deg, #eb0606 0%, #530000 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-4: linear-gradient(135deg, #dd0b0b 0%, #ff0022 100%);
           --gradient-4: radial-gradient( circle 703px at 15.9% 53.4%,  rgba(80,15,85,1) 0%, rgba(11,83,149,1) 100.2% );
            --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            --gradient-6: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
            --dark: #000;
            --white: #ffffff;
        }

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }
        h2{font-size: 38px;color: rgb(14, 4, 70);}
        p{color: #000;}

        /* Header & Navigation */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            /* border-bottom: 1px solid rgba(75, 70, 70, 0.233); */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: -1px;
        }

        .logo i {
            font-size: 2.2rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(2, 2, 2, 0.9);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #8b79e4;
        }

        .cta-btn {
            background: linear-gradient(135deg, #eb0606 0%, #530000 100%);
            color: var(--white) !important;
            padding: 0.8rem 2rem !important;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .cta-btn::after {
            display: none;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
            transition: all 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(9px, 9px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Offcanvas Menu */
        .offcanvas {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: rgba(15, 15, 35, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 999;
            padding: 2rem;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .offcanvas.active {
            right: 0;
        }

        .offcanvas-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
        }
        .offcanvas-header .nav-links a {color: #fff;}

        .close-btn {
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--white);
            background: none;
            border: none;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        .offcanvas .nav-links {
            flex-direction: column;
            gap: 0;
            align-items: flex-start;
            display: block;
        }

        .offcanvas .nav-links li {
            width: 100%;
        }

        .offcanvas .nav-links a {
            display: block;
            padding: 1.2rem 0;
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.1rem;
            color: #fff;
        }

        .offcanvas .nav-links a::after {
            display: none;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 998;
            backdrop-filter: blur(5px);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Sections */
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 5% 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* Hero 1 - Main Landing */
        .hero-1 {
            background: var(--gradient-1);
        }

        .hero-1 .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 20s infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 15%;
            animation-delay: 4s;
        }
        #features h2{font-size: 46px;color: #fff;}

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--white);
            letter-spacing: -2px;
        }

        .hero-text .highlight {
            background: linear-gradient(135deg, #fff 0%, #fffefd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
        }

        .btn-primary {
            background: var(--white);
            color: #667eea;
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            border: 2px solid var(--white);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: #667eea;
        }

        .hero-visual {
            position: relative;
            height: 600px;
        }

        .hero-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 2.2rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            /* animation: floatCard 6s infinite; */
        }

        .hero-card-1 {
            top: 10%;
            left: 0;
            width: 280px;
            animation-delay: 0s;
        }

        .hero-card-2 {
            top: 32%;
            right: 0;
            width: 280px;
            animation-delay: 1s;
        }

        .hero-card-3 {
            bottom: 8%;
            left: 0;
            width: 280px;
            animation-delay: 2s;
        }

        @keyframes floatCard {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .hero-card i {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 1rem;
            display: block;
        }

        .hero-card h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .hero-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

    

        /* Hero 3 - Features */
        .hero-3 {
            background: var(--gradient-3);
        }

        .features-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 3rem 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all 0.4s;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-15px);
        }

        .feature-number {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: #4facfe;
            margin: 0 auto 1.5rem;
        }

        .feature-card h3 {
            color: var(--white);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            line-height: 1.7;
        }

  /* Grid Layout */

/* Card Styling */
.service-card {
    background: #fff;
    padding: 30px 30px;
    text-align: center;
    border-radius: 8px;
    border-top: 5px solid crimson; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    background-color: #e6e3dc; /* Soft orange tint */
    color: #ff6b35;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: crimson;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    min-height: 80px; /* Keeps card sizes consistent */
}

/* Link Styling */
.learn-more {
    text-decoration: none;
    color: #111111;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}

.learn-more:hover {
    color: #0056b3;
}

/* About Section Styles */
.about-section {
    padding: 60px 5%;
    background-color: #f2f2f2;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.sub-title {
    color: #ff6b35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #0d2137;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-orange {
    color: #ff6b35;
}

.underline-left {
    width: 50px;
    height: 4px;
    background: #ff6b35;
    margin-bottom: 25px;
}

.about-content p {
    color: #252424;
    margin-bottom: 30px;
}

/* Features List */
.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    color: #000;
    padding: 8px 0;
    border-left: 3px solid rgb(212, 8, 8);
}

.feat-icon {
    color: #ff6b35;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.about-features strong {
    display: block;
    color: #0d2137;
}
.custom-quote-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 0 20px 20px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.custom-quote-form h4 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 0 0 4px;
    background-color: #f3f3f3;
    box-shadow: 1px 0 1px rgba(0,0,0,0.3), 0 1px  1px rgba(0,0,0,0.3),-1px 0 1px rgba(0,0,0,0.3);
}

/* Form Row for 2-column layout */
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .input-container {
    flex: 1;
    display: flex;
}
.input-container {display: flex; flex: 1;border: 1px solid #9e9e9e4d;}

/* Icon and Input alignment */
.input-container {
    position: relative;
    margin-bottom: 5px;
}
.in_icon{
	padding: 0px;
    width: 40px;
	position:absolute;
    background: #ffb800;
	z-index: 1;
	height:100%;
}

.in_icon .icon {
	position:relative;
    left: 0px;
	top:7px;
    font-size: 18px;
    color: #020202; /* Theme color - red */
}

.custom-input {
    width: 100%;
    padding: 12px 12px 12px 50px; /* Space for icon */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box; /* Crucial for width: 100% */
    transition: border-color 0.3s;
}

textarea.custom-input {
    height: 40px;
    resize: none;
}

.custom-input:focus {
    border-color: none;
    outline: none;
}

/* Captcha styling */
.captcha-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.captcha-box img {
    /* height: 30px !important; */
    width: 100px !important;
    border-radius: 0px !important;
}

/* Button styling */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #218838;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column-reverse; /* Put content above form on mobile */
    }
    .form-row {
        flex-direction: column;
    }
    .about-wrapper {
    grid-template-columns: 1fr;
   
}
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
    .header h2 {
        font-size: 2rem;
    }
}


        /* Hero 4 - Stats */
        .hero-4 {
            background: var(--gradient-4);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 2rem 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all 0.4s;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .stat-icon {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .submit-btn {
            width: 100%;
            padding: 1.5rem;
            background: var(--white);
            color: #330867;
            border: none;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
        }


/* ========= SECTION 3: BOLD MONOCHROME / EDGY ACCENT ========= */
        .section-3 {
            background: #fffffe;
            border-top: 1px solid #ffe6c7;
            border-bottom: 1px solid #ffe6c7;
            padding: 60px 5%;
        }
        .section-3 .section-title {
            color: #2d1b00;
            font-family: 'Space Grotesk', monospace;
        }
        .section-3 .section-sub {
            color: #b45f1b;
            font-weight: 500;
        }
         .section-3 .feature-list-3 {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            justify-content: center;
        }
         .section-3 .feature-3 {
            flex: 1 1 220px;
            background: white;
            padding: 28px 20px;
            border-radius: 24px;
            text-align: center;
            transition: all 0.2s;
            border: 1px solid #eb0606;
            box-shadow: 8px 8px 0 #ffc28530;
        }
         .section-3 .feature-3:hover {
            transform: translate(-3px, -3px);
            box-shadow: 12px 12px 0 #f4a26140;
            border-color: #f4a261;
        }
         .section-3 .feature-3 i {
            font-size: 2.8rem;
            color: #eb0606;
            background: #fff1e6;
            padding: 18px;
            border-radius: 50%;
            margin-bottom: 20px;
            transition: 0.2s;
        }
         .section-3 .feature-3 h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #3b2a1f;
        }
         .section-3 .feature-3 p {
            color: #5e4b36;
            font-size: 0.9rem;
        }

        /* Pricing Section Styling */
.pricing-section {
    background-color: #f4f7f9;
    padding-bottom: 80px;
    padding: 60px 5%;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Make the popular card stand out */
.pricing-card.popular {
    border: 2px solid #eb0606;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 1;
}

/* "Most Popular" Badge */
.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #eb0606;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d2137;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.price span {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}

.plan-desc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 30px;
    height: 50px;
}

/* Features List */
.features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.features li::before {
    content: '✓';
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

.features li.disabled {
    color: #bbb;
    text-decoration: line-through;
}

.features li.disabled::before {
    content: '✕';
    color: #ccc;
}

/* Button Styles */
.btn-outline, .btn-solid {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline {
    border: 2px solid #ff6b35;
    color: #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #fff;
}

.btn-solid {
    background: #eb0606;
    color: #fff;
    border: 2px solid #eb0606;
}

.btn-solid:hover {
    background: #e55a2b;
    border-color: #e55a2b;
}

/* CTA Section Styling */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(275deg, #eb0606 0%, #530000 100%);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #fff;
}

.btn-cta {
    display: inline-block;
    background: #fff;
    color: #ff6b35;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Review Section Styling */
.review-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    padding: 60px 5%;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.review-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.quote-icon img {
    width: 40px;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 20px;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.user-details h4 {
    color: #0d2137;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stars {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.fix-icon {
	display: inline-block;
	position: fixed;
	bottom: 100px;
	left: 50px;
	z-index: 999999;
}

#fix-icon {
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.fix-icon-item {
	animation: bounce 1s infinite alternate;
	animation-duration: 1s;
	-webkit-animation: bounce 1s infinite alternate;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
	animation-fill-mode: none;
}

.fix-icon-item img {
	width: 55px !important;
	height: 55px !important;
	background: #eb0606;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	padding: 10px;
}

.fix-icon-whataap {
	display: inline-block;
	position: fixed;
	bottom: 30px;
	left: 20px;
	z-index: 999999;
	transition: all0.5s ease-in-out;
}

.fix-icon-whataap-item img {
	border-radius: 50%;
	box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
	transition: box-shadow .2s;
	cursor: pointer;
	overflow: hidden;
	width: 55px !important;
	height: 55px !important;
	background: #25d366 !important;
}

  /* section spacing */
        .contact-section {
            padding: 60px 5%;
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
        }

        .map-section {
            padding: 40px 0 60px;
            background: #ffffff;
        }

        /* headings */
        .section-badge {
            display: inline-block;
            background: #eef2ff;
            color: #1e40af;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 6px 14px;
            border-radius: 40px;
            letter-spacing: 0.3px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(145deg, #0c4a6e, #0284c7);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .section-sub {
            font-size: 1.1rem;
            color: #1d232c;
            margin-bottom: 48px;
        }

        /* contact grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        /* left side: contact info cards */
        .info-card {
            background: white;
            border-radius: 32px;
            padding: 32px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(203, 213, 225, 0.5);
            transition: transform 0.2s ease;
        }

        .info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 32px;
            align-items: flex-start;
        }

        .info-icon {
            width: 56px;
            height: 56px;
            background: #eef2ff;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #cf0e07;
            flex-shrink: 0;
        }

        .info-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #0f172a;
        }

        .info-content p, .info-content a {
            color: #334155;
            text-decoration: none;
            transition: color 0.2s;
            font-weight: 500;
            word-break: break-word;
        }

        .info-content a:hover {
            color: #0284c7;
        }

        .address-text {
            line-height: 1.5;
            margin-top: 4px;
        }

       

        /* footer styling modern */
        .footer {
            background:linear-gradient(135deg, #eb0606 0%, #530000 100%);
            color: #cbd5e1;
            padding: 20px 5%;
            margin-top: 0;
        }
        footer a{color: #fff;text-decoration: none;}

       .footer-bottom{display: flex;justify-content: space-between;align-items: center;}

        /* responsive */
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .section-title {
                font-size: 2rem;
            }
            .location-wrapper {
                flex-direction: column;
            }
            .map-container iframe {
                min-height: 280px;
            }
            .footer-content {
                flex-direction: column;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 550px) {
            
           
            .info-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .info-icon {
                margin-bottom: 8px;
            }
        }

/* Responsive */
@media (max-width: 992px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1);
        margin: 20px 0;
    }
}

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 2.5rem;
            color: rgba(255, 255, 255, 0.7);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-15px);
            }
            60% {
                transform: translateX(-50%) translateY(-8px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 3.5rem;
            }

            .features-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-visual {
               display: none;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .features-wrapper {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .cta-content h1 {
                font-size: 3rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .ou_services{padding:60px 0;}
        @media (max-width: 600px) {
            nav {
                padding: 0rem 3%;
            }

            .hero-section {
                padding: 70px 3% 70px;
            }

            .logo {
                font-size: 1.5rem;
            }

            .hero-text h1 {
                font-size: 3rem;
                padding-top: 110px;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .btn {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .hero-buttons  {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            .hero-buttons .btn{text-align: center;padding: 1rem 3.5rem;}

            .hero-visual {
                display: none;
            }

            .hero-card {
                width: 90% !important;
            }
         #features h2{color: #fff;}
            .service-box,
            .feature-card,
            .stat-card,
            .testimonial-box {
                padding: 2rem 1.5rem;
            }

            .stat-number {
                font-size: 3.5rem;
            }

            .stat-label {
                font-size: 1.2rem;
            }

            .cta-content h1 {
                font-size: 2.2rem;
            }

            .cta-content p {
                font-size: 1.2rem;
            }

            .cta-form {
                padding: 2rem 1.5rem;
            }

            .offcanvas {
                width: 100%;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
        }