/* GLOBAL FONT */
body {
  font-family: 'Poppins', sans-serif;
}

/* SECTION BACKGROUND */
.premium-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

/* LEFT CONTENT TEXT */
.premium-section h2 {
  line-height: 1.2;
}

.premium-section p {
  color: #cbd5f5;
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(90deg, #6c3bff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CARD (FORM BOX) */
.premium-card {
  background: #ffffff;
  color: #111827;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(108, 59, 255, 0.3);
}

/* INPUT FIELDS */
.premium-card input,
.premium-card select,
.premium-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #f9fafb;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* INPUT FOCUS EFFECT */
.premium-card input:focus,
.premium-card select:focus,
.premium-card textarea:focus {
  border-color: #6c3bff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(108, 59, 255, 0.15);
  outline: none;
}

/* BUTTON */
.premium-btn {
  background: linear-gradient(135deg, #6c3bff, #ff7a18);
  color: #fff;
  padding: 14px;
  width: 100%;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* BUTTON HOVER */
.premium-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 122, 24, 0.5);
}

/* PHONE LINK */
.phone-link {
  color: #ff7a18;
  font-weight: 600;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

/* IMAGE STYLE */
.service-img {
  width: 100%;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* TRUST BADGES */
.trust-list {
  margin-top: 20px;
}

.trust-list p {
  margin-bottom: 8px;
  font-size: 16px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .premium-section {
    text-align: center;
  }

  .premium-card {
    padding: 20px;
  }

  .premium-btn {
    font-size: 16px;
  }
}

/* new css */ 

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.cta-container {
    max-width: 750px;
    margin: auto;
}

.cta-container h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Button */
.cta-btn {
    display: inline-block;
    background: #FF6B00;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.cta-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

/* Footer */
.footer {
    background: #0f172a;
    color: #ffffff;
    padding-top: 60px;
}

/* Grid */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px 40px;
}

/* Headings */
.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Underline */
.footer-col h3::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #FF6B00;
    display: block;
    margin-top: 8px;
}

/* Text */
.footer-col p {
    color: #94a3b8;
    line-height: 1.6;
}

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

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

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

/* Hover */
.footer-col ul li a:hover {
    color: #c7d2fe;
    padding-left: 4px;
}

/* Bottom */
.footer-bottom {
    background: #020617;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

/* Section */


/* Container */
.container {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Card */
.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

/* Image */
.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Title */
.service-card h3 {
    font-size: 16px;
    color: #334155;
    margin-bottom: 15px;
}

/* Button */
.service-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #FF6B00;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-btn:hover {
    background: #4338ca;
}

/* Section */
.why-section {
    padding: 80px 20px;
    background: #ffffff;
}

/* Container */
.container {
    max-width: 1100px;
    margin: auto;
}

/* Title */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
}

.section-title span {
    color: #FF6B00;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Card */
.why-card {
    background: #f8fafc;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

/* Icon */
.why-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #FF6B00;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Heading */
.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e293b;
}

/* Text */
.why-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Hover */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.why-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
}
 

/* Container */
.container {
    max-width: 1000px;
    margin: auto;
}

/* Title */
.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.section-title span {
    color: #FF6B00;
}

/* Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Grid */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Item */
.service-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

/* Icon */
.service-item .icon {
    width: 30px;
    height: 30px;
    background: #FF6B00;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

/* Text */
.service-item p {
    font-size: 15px;
    color: #334155;
    margin: 0;
}

/* Hover */
.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

/* CTA */
.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta p {
    font-size: 14px;
    color: #FF6B00;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #FF6B00;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

/* Section */
.about-section {
    padding: 80px 20px;
    background: #ffffff;
}

/* Container */
.container {
    max-width: 1100px;
    margin: auto;
}

/* Layout */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Heading */
.about-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: #FF6B00;
}

/* Text */
.about-text p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Button */
.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background: #FF6B00;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #4338ca;
}

/* Features */
.about-features {
    display: grid;
    gap: 15px;
}

/* Feature box */
.feature-box {
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Icon */
.feature-box span {
    color: #FF6B00;
    font-weight: bold;
    margin-right: 10px;
}

/* Text */
.feature-box p {
    margin: 0;
    font-size: 14px;
    color: #334155;
}

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: center;
    }

    .about-btn {
        display: inline-block;
    }
}

.about-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

/* Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark) 0%, #0D1733 60%, #0A2060 100%);
    color: #ffffff;
}

/* Container */
.container {
    max-width: 800px;
    margin: auto;
}

/* Heading */
.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color:#fff;
}

/* Phone Number */
.cta-number {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Services Text */
.cta-services {
    font-size: 16px;
    color: #e0e7ff;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button */
.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #FF6B00;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover */
.cta-btn:hover {
    background: #e0e7ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ------------------ Section Background ------------------ */
.premium-section {
    position: relative;
    padding: 4rem 1rem; /* py-16 px-4 */
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
}

.dark .premium-section {
    background: linear-gradient(135deg, #111111 0%, #1f1f1f 50%, #111111 100%);
}

/* ------------------ Gradient Text ------------------ */
.gradient-text {
    background: linear-gradient(90deg, #facc15, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ------------------ Form Card ------------------ */
.premium-card {
    background-color: #ffffff;
    border-radius: 2rem; /* rounded-3xl */
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.dark .premium-card {
    background-color: #1f1f1f;
    border: 1px solid #374151;
}

/* ------------------ Inputs and Textareas ------------------ */
.premium-card input,
.premium-card select,
.premium-card textarea {
    width: 100%;
    padding: 0.75rem 1.25rem;
    /* border-radius: 1rem; */
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #111827;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 5px !important;
    text-align: left;
}

label.block.text-sm.font-semibold.text-gray-700.dark\:text-gray-300.mb-2 {
    text-align: left;
    font-size: 14px;
}

.premium-card input:focus,
.premium-card select:focus,
.premium-card textarea:focus {
    border-color: #f59e0b; /* yellow-500 */
    box-shadow: 0 0 0 4px rgba(245,158,11,0.2);
    outline: none;
}

.dark .premium-card input,
.dark .premium-card select,
.dark .premium-card textarea {
    background-color: #1f1f1f;
    border: 2px solid #374151;
    color: #f9fafb;
}

/* ------------------ Submit Button ------------------ */
.premium-card button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px; /* lg */
    padding: 0.5rem 2rem;
    border-radius: 1rem;
    cursor: pointer;
    background: #FF6B00;
    color: white;
    height: 20px;
     
}

.premium-card button:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #fcd34d 0%, #fb923c 100%);
    box-shadow: 0 8px 20px rgba(250, 200, 21, 0.5);
}

.premium-card button span.absolute {
    transition: transform 1s ease;
}

.premium-card button:hover span.absolute {
    transform: translateX(100%);
}

/* ------------------ Responsive Typography ------------------ */
@media (min-width: 768px) {
    .premium-section h2 {
        font-size: 2.5rem;
    }

    .premium-section p {
        font-size: 1.25rem;
    }

    .premium-card input,
    .premium-card select,
    .premium-card textarea {
        font-size: 16px;
        padding: 1rem 1.5rem;
    }

    .premium-card button {
        font-size: 1.25rem;
        padding: 1.25rem 2.5rem;
    }
}

/* ------------------ Footer Notes ------------------ */
.premium-section .text-center p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #4b5563; /* gray-700 */
}

.dark .premium-section .text-center p {
    color: #d1d5db; /* gray-300 */
}
/* Hero Section */
section.relative {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

/* Background gradients */
section.relative .bg-gradient-to-br {
    position: absolute;
    inset: 0;
    z-index: 0;
}

section.relative .bg-black\/30 {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    z-index: 1;
}

/* Hero Content */
.section-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
    color: white;
    padding: 0 !important;
}

/* Heading */
.section-container h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-container h1 span.bg-clip-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    animation: gradientMove 5s ease infinite;
}

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

/* Frosted Logo Card */
.section-container .bg-white\/10 {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 1.5rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.section-container .bg-white\/10:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

/* Logo & Text */
.section-container img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}

.section-container .flex-col span.font-bold {
    font-weight: 800;
    color: #00aeee;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.section-container .flex-col span.text-white\/90 {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
}

/* Description */
.section-container p {
    max-width: 45rem;
    margin: auto;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-top: 1.5rem;
}

/* Responsive */
@media (min-width: 640px) {
    .section-container h1 {
        font-size: 2.5rem;
    }

    .section-container img {
        width: 6rem;
        height: 6rem;
    }
}

@media (min-width: 768px) {
    .section-container h1 {
        font-size: 3rem;
    }

    .section-container img {
        width: 7rem;
        height: 7rem;
    }

    .section-container p {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .section-container h1 {
        font-size: 3.75rem;
    }

    .section-container img {
        width: 7.5rem;
        height: 7.5rem;
    }

    .section-container p {
        font-size: 16px;
    }
}

 /* ------------------ Hero Section ------------------ */
        .hero-section {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 6rem 1rem 3rem;
            color: white;
        }

        .hero-section .bg-gradient {
            position: absolute;
            inset: 0;
                background: linear-gradient(135deg, var(--dark) 0%, #0D1733 60%, #0A2060 100%);
        }

       

        .hero-section .content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 1rem;
        }

        .hero-section h1 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        @media(min-width:640px) { .hero-section h1 { font-size:2.5rem; } }
        @media(min-width:768px) { .hero-section h1 { font-size:3rem; } }
        @media(min-width:1024px) { .hero-section h1 { font-size:3.75rem; } }

        .animate-gradient {
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: gradientMove 5s ease infinite;
            display: inline-block;
        }

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

        /* Frosted Logo Card */
        .logo-card {
            background: linear-gradient(135deg, #FF6B00 0%, #FF6B00 100%);
            backdrop-filter: blur(20px);
            border-radius: 2rem;
            padding: 1.5rem 2.5rem;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
            margin: 2rem auto;
            max-width: 500px;
            transition: all 0.3s ease;
        }

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

        .logo-card img { width: 120px; height: 120px; object-fit: contain; }
        .logo-card .brand-name { font-weight: 800; font-size: 2rem; color: #fff; text-transform: uppercase; }

        /* Hero Description */
        .hero-section p {
            max-width: 650px;
            margin: 0 auto 1.5rem;
            opacity: 0.9;
            line-height: 1.6;
            color:#000;
            font-weight: 700;
        }

        /* CTA Button */
        .hero-section .cta-btn {
            display: inline-block;
            background: #fff;
            color: #FF6B00;
            font-weight: 600;
            font-size: 1.125rem;
            padding: 1rem 2rem;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(250,200,21,0.4);
            transition: all 0.3s ease;
        }
        .hero-section .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(250,200,21,0.5);
        }

        /* ------------------ CTA Section ------------------ */
        .cta-section {
            padding: 6rem 1rem;
            text-align: center;
            background: linear-gradient(135deg, var(--dark) 0%, #0D1733 60%, #0A2060 100%);
            color: #ffffff;
        }
        #dfsdf{
            padding:0 !important;
        }

        .cta-section .cta-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
        .cta-section .cta-number { font-size: 2rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: 1px; }
        .cta-section .cta-services { font-size: 1rem; color: #e0e7ff; margin-bottom: 2rem; line-height: 1.5; }

        .cta-section .cta-btn {
            display: inline-block;
            background: #ffffff;
            color: #FF6B00;
            font-weight: 600;
            font-size: 1.125rem;
            padding: 1rem 2.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .cta-section .cta-btn:hover {
            background: #e0e7ff;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        @media(max-width:768px) {
            .cta-section .cta-title { font-size: 2rem; }
            .cta-section .cta-number { font-size: 1.5rem; }
            .cta-section .cta-services { font-size: 0.9rem; }
            .cta-section .cta-btn { font-size: 1rem; padding: 0.75rem 2rem; }
        }


/* ---------- Header ---------- */
.site-header {
    width: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, #0D1733 60%, #0A2060 100%);
    position: sticky;
    top: 0;
    z-index: 999;
    font-family: 'Poppins', sans-serif;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item a {
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-item a:hover {
    color: #facc15;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0d1733;
    min-width: 220px;
    display: none;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 1000;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    padding: 0.75rem 1rem;
    display: block;
    color: #fff;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: #4338ca;
    color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive */
@media(max-width: 992px){
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background: #0d1733;
        flex-direction: column;
        gap: 0;
        padding-top: 2rem;
        transition: right 0.3s ease-in-out;
    }

    .nav-menu.show {
        right: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        background: #111827;
        box-shadow: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media(max-width:480px){
    .footer-container {
    max-width: 1200px;
    margin: auto;
    display: block;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px 40px;
}

.hero-section {
    position: relative;
    max-height: 400px!important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 1rem 3rem;
    color: white;
    background-size: cover;
}
.logo-card {
    background: linear-gradient(135deg, #FF6B00 0%, #FF6B00 100%);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    margin: 2rem auto;
    max-width: 500px;
    transition: all 0.3s ease;
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}
}

.footer-oll-now {
    bottom: 0px;
    color: #fff !important;
    font-size: 22px !important;
    cursor: pointer;
    display: inline-block;
    font-size: 30px;
    font-weight: normal;
    line-height: 76px;
    height:46px;
    width: 100%;
    position: fixed;
    z-index: 999;
    text-align: center;
    background-color: #FF6B00;
    padding-top:5px;
}

#dfsdjh{padding-top: 3rem !important;
     }
     
     
     
     