@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: visible;
    width: 100%;
    position: relative;
}

img, svg, canvas, video {
    max-width: 100%;
    height: auto;
}

/* ==========================
BACKGROUND EFFECTS
========================== */

.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 40%),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.08), transparent 40%);
    z-index: -3;
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    pointer-events: none;
}

.blob1 {
    background: #3b82f6;
    opacity: .1;
}

.blob2 {
    background: #8b5cf6;
    opacity: .1;
}

/* ==========================
LAYOUT
========================== */

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

/* ==========================
HERO
========================== */

.hero {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    
}



.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 78px;
    font-weight: 900;
    line-height: 1.05;
    margin: 25px 0;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(90deg, #2563eb, #7c3aed, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.gradient-text {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 20px;
    line-height: 1.7;
    color: #475569;
}

/* ==========================
BUTTONS
========================== */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, .4);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.btn-secondary {
    border: 1.5px solid rgba(0, 0, 0, .1);
    color: #1e293b;
    background: rgba(255, 255, 255, .8);
}

.btn-secondary:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, .15);
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-secondary:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

/* ==========================
SECTION
========================== */

.pricing-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: #64748b;
    font-size: 18px;
}

.plan-category {
    margin-bottom: 120px;
}

.plan-category h3 {
    font-size: 34px;
    margin-bottom: 35px;
}

/* ==========================
CARDS
========================== */

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
    width: 100%;
}


.card {
    width: 100%;
    max-width: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;

    padding: 35px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(148, 163, 184, .2);
    backdrop-filter: blur(20px);

    transition: all 0.35s ease;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, .06),
        transparent);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(59, 130, 246, .15);
    border-color: rgba(59, 130, 246, .3);
}

.featured {
    border: 2px solid #3b82f6;
    box-shadow:
        0 0 40px rgba(59, 130, 246, .25);
}

.enterprise {
    border: 2px solid #f59e0b;
    box-shadow:
        0 0 40px rgba(245, 158, 11, .15);
}

/* ==========================
BADGES
========================== */

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 999px;
    background: #2563eb;
    color: white;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
    z-index: 10;
}

.gold {
    background: #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* ==========================
CARD CONTENT
========================== */

.card-header {
    position: relative;
    margin-top: 10px;
    text-align: left;
}

.card-header h4 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-header p {
    font-size: 15px;
    color: #64748b;
}

.price-box {
    margin: 25px 0;
    text-align: left;
}

.old-price {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.discount-badge {
    text-decoration: none;
    background: #f97316;
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}

.gold-bg {
    background: #d4af37;
}

.price {
    font-size: 52px;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
}

.price-note {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
    font-weight: 500;
}

.feature-group {
    margin-bottom: 25px;
    text-align: left;
}

.feature-group h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    font-size: 15px;
    color: #475569;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* ==========================
PRODUCT TAGS
========================== */

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.products span {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 999px;

    background:
        rgba(37, 99, 235, .05);

    border:
        1px solid rgba(37, 99, 235, .1);
    color: #1e293b;
}

/* ==========================
SELECT BUTTON
========================== */

.select-btn {
    width: 100%;
    padding: 16px;
    margin-top: 10px;

    border: none;
    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #3b82f6,
            #6366f1);

    color: white;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
    transition: .3s;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 30px rgba(59, 130, 246, .35);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

/* ==========================
CTA
========================== */

.cta {
    padding: 100px 20px;
}

.cta-box {
    max-width: 1100px;
    margin: auto;

    padding: 80px;

    border-radius: 40px;

    background:
        linear-gradient(135deg,
            #3b82f6,
            #6366f1,
            #8b5cf6);

    text-align: center;
    box-shadow: 0 30px 60px rgba(59, 130, 246, .25);
    color: white;
}

.cta-box h2 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white !important;
}

.cta-box p {
    font-size: 18px;
    opacity: .9;
}

.cta-box button {
    margin-top: 30px;

    padding: 16px 35px;

    border: none;
    border-radius: 14px;

    font-weight: 700;
    font-size: 15px;

    cursor: pointer;
    transition: .3s;
}

.cta-box button:hover {
    transform: translateY(-3px);
}

/* ==========================
MODAL
========================== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    width: 90%;
    max-width: 450px;

    background: #ffffff;

    border-radius: 24px;
    padding: 35px;

    position: relative;

    border: 1px solid rgba(0, 0, 0, .1);

    text-align: center;
    color: #1e293b;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, .05);
    color: #1e293b;

    cursor: pointer;
}

.plan-summary {
    margin: 25px 0;
}

#selectedPlan {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.selected-price-box {
    padding: 16px;
    border-radius: 14px;
    background: rgba(37, 99, 235, .05);
    font-size: 30px;
    font-weight: 800;
    color: #2563eb;
}

#continueBtn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #3b82f6,
            #6366f1);

    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

#continueBtn:hover {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* ==========================
MOBILE
========================== */

@media(max-width:768px) {
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .hero {
        min-height: 60vh;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .features-grid,
    .why-grid,
    .stats-grid,
    .trust-grid,
    .pricing-grid,
    .models-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .card, .feature-card, .why-card, .model-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 42px;
        margin: 20px 0;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .model-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .model-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .feature-list li {
        justify-content: center;
    }

    .model-footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .view-plans-btn {
        width: 100%;
        justify-content: center;
    }

    .testimonial-card {
        width: 290px;
        padding: 20px;
        margin: 0 5px;
    }

    .footer-grid {
        text-align: center;
        gap: 40px;
    }

    .footer-column ul li {
        word-break: break-word;
    }

    .logo-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .phone-mockup {
        width: 120px;
        height: 240px;
    }

    .laptop-mockup {
        width: 160px;
    }

    .price {
        font-size: 36px;
    }

    .demo-cta {
        padding: 20px;
    }

    .book-demo-btn {
        width: 100%;
    }

    #company-email,
    #company-cin {
        white-space: normal;
        word-break: break-all;
    }
}

/* ==========================
FOOTER
========================== */

.footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, .05);
    background: #f1f5f9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0f172a;
}

.footer-column p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    color: #64748b;
    font-size: 15px;
}

.footer-column ul li a {
    color: #64748b;
    text-decoration: none;
    transition: .3s;
}

.footer-column ul li a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, .05);
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

/* Mobile Footer */

@media(max-width:992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

}

@media (max-width:768px){

    .footer-grid{
        grid-template-columns:1fr !important;
        gap:40px;
    }

    .footer-column{
        width:100%;
        text-align:left !important;
    }

    .footer-column h3{
        text-align:left !important;
    }

    .footer-column p,
    .footer-column ul,
    .footer-column ul li,
    .footer-column ul li a{
        text-align:left !important;
    }

    .footer-social{
        display:flex;
        justify-content:flex-start;
        gap:16px;
    }

    .contact-list li{
        justify-content:flex-start;
        align-items:flex-start;
    }

    .footer-bottom{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
        gap:12px;
    }

    .footer-bottom-links{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .footer-column ul li a:hover{
        padding-left:0;
    }

}


/* ==========================
TESTIMONIALS
========================== */

.testimonial-slider {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: slideTestimonials 25s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 380px;
    flex-shrink: 0;

    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, .2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    padding: 30px;
    border-radius: 24px;
}

@keyframes slideTestimonials {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
NAVBAR
======================================== */
.navbar{
    position:sticky;
    top:0;
    width:100%;
    z-index:1000;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.06);
}

.navbar-container{
    max-width:1280px;
    margin:auto;

    padding:28px 20px;      /* Pehle 18px tha */
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
}
.logo-wrapper{
    display:flex;
    align-items:center;
}

.logo-img{
    height:80px;
    width:auto;
    display:block;
    object-fit:contain;
}



.navbar.scrolled{
    padding:0;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 32px;
}

.nav-menu {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 10px;
    border-radius: 100px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nav-link {
    color: #475569;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
    background: rgba(59, 130, 246, 0.08);
}

.nav-link::after {
    display: none;
}

.nav-btn {
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, .3);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.nav-btn:active {
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #1e293b;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

@media(max-width: 768px) {
    .menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-btn {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        width: auto;
        flex-direction: column;
        background: #ffffff;
        backdrop-filter: none;
        padding: 0 20px;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        margin-top: 10px;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 25px 20px;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        border-radius: 12px;
    }

    .navbar-container {
        padding: 15px 20px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .plan-category h3 {
        font-size: 26px;
    }

    .price {
        font-size: 42px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .stats-grid,
    .features-grid,
    .why-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        width: 280px;
    }

    .logo-img {
        height: 40px;
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    z-index: 99999;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    box-shadow: 0 0 10px rgba(59, 130, 246, .5);
    transition: width 0.1s ease;
}


/* ========================================
FEATURES
======================================== */

.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 35px;
    border-radius: 24px;

    background: rgba(255, 255, 255, .75);
border: 1px solid rgba(12, 61, 130, 0.15);
backdrop-filter: blur(20px);

    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, .15);
    border-color: rgba(4, 30, 70, 0.3);
}

.icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* ========================================
WHY US
======================================== */

.why-us {
    padding: 120px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    padding: 40px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, .75);
border: 1px solid rgba(148, 163, 184, .15);
backdrop-filter: blur(20px);
}

.why-card h3 {
    font-size: 42px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
FAQ
======================================== */

.faq {
    padding: 120px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(96, 165, 250, .3);
    background: rgba(255, 255, 255, .06);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    border: none;
    background: transparent;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    padding-left: 28px;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #60a5fa;
    font-weight: 300;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    padding: 0 25px;
}

.faq-answer.show {
    max-height: 300px;
    padding: 0 25px 20px;
}

/* ========================================
CONTACT FORM
======================================== */

.contact-section {
    padding: 120px 0;
}

.contact-form {
    max-width: 800px;
    margin: auto;
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 12px;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #64748b;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(96, 165, 250, .5);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, .05);
}

.error-message {
    font-size: 12px;
    color: #ef4444;
    min-height: 18px;
    display: block;
}

.submit-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, .3);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success {
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .3);
    color: #86efac;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
}

/* ========================================
WHATSAPP FLOAT
======================================== */

.whatsapp-float {

    cursor: pointer;

    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;
    font-size: 30px;

    background: #25D366;
    color: white;

    box-shadow: 0 10px 30px rgba(37, 211, 102, .4);

    z-index: 999;
}


/* ========================================
TESTIMONIAL IMPROVEMENTS
======================================== */

.testimonial-card {
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, .15);
    border-color: rgba(59, 130, 246, .3);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.reviewer {
    margin-top: 20px;
}

.reviewer span {
    display: block;
    color: #64748b;
    margin-top: 5px;
}

/* ========================================
CARD GLOW EFFECT
======================================== */

.card:hover::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top,
            rgba(96, 165, 250, .15),
            transparent 60%);

    pointer-events: none;
}

/* ========================================
RESPONSIVE
======================================== */

@media(max-width:1024px) {
    .features-grid,
    .why-grid,
    .trust-grid,
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mouse-glow{
    position:fixed;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(59,130,246,.08);
    filter:blur(80px);
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:-1;
}


.reveal{
    opacity:0;
    transform:translateY(40px);
}

.active{
    opacity:1;
    transform:translateY(0);
    transition: all .8s ease;
}

#company-email,
#company-cin {
    white-space: nowrap;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 12px 0;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
    padding-left: 8px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    word-break: break-word;
}

.section-header h2,
.hero h1,
.plan-category h3 {
    color: #0f172a;
}

.hero p,
.section-header p,
.card-header span,
.stat p,
.feature-card p,
.why-card p {
    color: #64748b;
}

/* ========================================
BUSINESS MODELS
======================================== */

.business-models {
    padding: 100px 0;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.model-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.model-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    width: fit-content;
}

.model-badge.blue {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

.model-badge.orange {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.model-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.model-visual {
    flex: 0 0 160px;
}

/* Phone Mockup CSS */
.phone-mockup {
    width: 140px;
    height: 280px;
    background: #1e293b;
    border-radius: 24px;
    padding: 8px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 18px;
    background: #1e293b;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Pura image dikhane ke liye */
    background: #f8fafc; /* Empty space agar bache to background color */
    display: block;
}

/* Laptop Mockup CSS */
.laptop-mockup {
    width: 218px; /* Thoda wide kiya hai genuine look ke liye */
    margin-top: 19px;
}

.laptop-mockup .mockup-screen {
    height: 129px; /* Vertically chota kiya gaya hai (16:9 ratio ke kareeb) */
    border: 7px solid #1e293b;
    border-radius: 10px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.mockup-base {
    height: 8px;
    background: #475569;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 110%;
    margin-left: -5%;
}

.model-info {
    flex: 1;
}

.model-info h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #0f172a;
    font-weight: 700;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-list li span {
    color: #2563eb;
    font-weight: 800;
}

.model-card.ent .feature-list li span {
    color: #f59e0b;
}

.model-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}

.best-for {
    flex: 1;
}

.best-for strong {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.best-for p {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.view-plans-btn {
    padding: 12px 24px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 12px;
    color: #1e293b;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-plans-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ========================================
PRICING TOGGLE
======================================== */

.plan-toggle {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 14px;
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

.toggle-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: #64748b;
    font-size: 14px;
}

.toggle-btn.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.plans-wrapper {
    display: none;
    margin-top: 60px;
}

.plans-wrapper.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 1100px) {
    .model-inner {
        flex-direction: column;
        gap: 30px;
    }
    .model-visual {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .laptop-mockup {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
    .model-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .view-plans-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Clear old business model styles */
.model-grid, .enterprise-card, .white-label, .model-content, .view-plan-btn {
    /* These are handled by new classes */
}

/* ==========================
PRICING CARDS REFINEMENT
========================== */

.card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.card-icon-box.blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.card-icon-box.orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    background: #f1f5f9;
    margin-bottom: 15px;
    width: fit-content;
}

.card-tag.wl { color: #2563eb; }
.card-tag.ent { color: #f59e0b; }


.wl-btn {
    background: linear-gradient(135deg, #3b82f6, #6366f1) !important;
}

.ent-btn {
    background: linear-gradient(135deg, #f59e0b, #f97316) !important;
}

.ent-btn:hover {
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.35) !important;
}

.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.demo-app-btn {
    width: 100%;
    padding: 16px;
    border: 1.5px solid rgba(0, 0, 0, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .8);
    color: #1e293b;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-app-btn:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, .15);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .plan-actions {
        gap: 10px;
    }
}

/* ==========================
DEMO CTA
========================== */

.demo-cta {
    margin-top: 60px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.demo-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.demo-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.demo-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.demo-text p {
    color: #64748b;
    margin: 0;
}

.book-demo-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.book-demo-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .demo-cta {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    .demo-content {
        flex-direction: column;
    }
}



/* The new changes*/
/* Logo */

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    flex-shrink:0;
}

.logo-wrapper{

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    background:transparent;

    border:none;

    border-radius:0;

    box-shadow:none;

}

.logo-wrapper:hover{

    transform:none;

    box-shadow:none;

}

.logo-img{

    display:block;

    width:140px;

    height:auto;

    object-fit:contain;

}
/* Navigation */

.nav-menu{

    display:flex;
    align-items:center;
    gap:34px;

}

.nav-link{

    position:relative;

    text-decoration:none;

    color:#1E293B;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

.nav-link:hover{

    color:#2563EB;

}

.nav-link.active{

    color:#2563EB;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#2563EB;

    transition:.35s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}


/* Right Section */

.nav-actions{

    display:flex;

    align-items:center;

    gap:22px;

}

/* Phone */

.contact-number{

    display:flex;

    align-items:center;

    gap:10px;

    color:#0F172A;

    text-decoration:none;

    font-weight:700;

    font-size:16px;

}

.contact-number i{

    color:#2563EB;

    font: size 10px;

}

/* CTA Button */

/* Navigation */

.nav-menu{

    display:flex;
    align-items:center;
    gap:34px;

}

.nav-link{

    position:relative;

    text-decoration:none;

    color:#1E293B;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

.nav-link:hover{

    color:#2563EB;

}

.nav-link.active{

    color:#2563EB;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#2563EB;

    transition:.35s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}


/* Right Section */

.nav-actions{

    display:flex;

    align-items:center;

    gap:22px;

}

/* Phone */

.contact-number{

    display:flex;

    align-items:center;

    gap:10px;

    color:#0F172A;

    text-decoration:none;

    font-weight:700;

    font-size:16px;

}

.contact-number i{

    color:#2563EB;

    font-size:18px;

}

/* CTA Button */

.nav-btn{

    padding:13px 28px;

    border-radius:50px;

    background:#2563EB;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(37,99,235,.25);

}

.nav-btn:hover{

    background:#1D4ED8;

    transform:translateY(-2px);

}
/* =========================
Mobile Menu Button
========================= */

.menu-toggle{

    display:none;

    width:48px;
    height:48px;

    border:none;
    outline:none;

    background:#ffffff;

    border-radius:12px;

    cursor:pointer;

    align-items:center;
    justify-content:center;
    flex-direction:column;

    gap:6px;

    transition:.35s ease;

    box-shadow:
        0 8px 20px rgba(15,23,42,.08);

}

.menu-toggle:hover{

    background:#2563EB;

    transform:translateY(-2px);

}

.menu-toggle .bar{

    width:22px;
    height:2.5px;

    background:#0F172A;

    border-radius:50px;

    transition:.35s ease;

}

.menu-toggle:hover .bar{

    background:#fff;

}

/* Active Animation */

.menu-toggle.active .bar:nth-child(1){

    transform:
        translateY(8px)
        rotate(45deg);

}

.menu-toggle.active .bar:nth-child(2){

    opacity:0;

}

.menu-toggle.active .bar:nth-child(3){

    transform:
        translateY(-8px)
        rotate(-45deg);

}

/* Mobile */

@media (max-width:992px){

    .menu-toggle{

        display:flex;

    }

}
/* =========================
Background
========================= */

.page-background{

    position:fixed;

    inset:0;

    z-index:-2;

    overflow:hidden;

    pointer-events:none;

}

/* Main */

.bg-base{

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 45%,
            #ffffff 100%
        );

}

/* Left Blue Glow */

.hero-glow{

    position:absolute;

    width:650px;

    height:650px;

    top:-180px;

    left:-180px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(37,99,235,.20),

            transparent 72%

        );

}

/* Right Circle */

.hero-circle{

    position:absolute;

    width:720px;

    height:720px;

    right:-260px;

    top:30px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            #2563eb,

            #1d4ed8 65%,

            transparent 66%

        );

    opacity:.12;

}

/* Dots */

.hero-dots{

    position:absolute;

    width:340px;

    height:340px;

    right:20px;

    top:90px;

    background-image:

        radial-gradient(

            rgba(37,99,235,.25) 1.4px,

            transparent 1.4px

        );

    background-size:14px 14px;

    opacity:.35;

}
.section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    background:rgba(37,99,235,.08);

    color:#2563EB;

    border:1px solid rgba(37,99,235,.15);

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    text-transform:uppercase;
}

.section-tag i{
    font-size:14px;
}
/* ===================================
   WHY CHOOSE US
=================================== */

.why-us{
    padding:100px 0;
    background:#f8fbff;
    position:relative;
}

.why-us .section-header{
    max-width:750px;
    margin:0 auto 60px;
    text-align:center;
}

.why-us .section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    background:#eaf2ff;
    color:#2563eb;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.why-us .section-tag i{
    font-size:14px;
}

.why-us h2{
    font-size:44px;
    font-weight:700;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:18px;
}

.why-us .section-header p{
    font-size:17px;
    line-height:1.8;
    color:#64748b;
}

/* ===========================
Grid
=========================== */

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:20px;

}

/* ===========================
Card
=========================== */

.why-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    border:1px solid #eef2f7;

    transition:.35s;

    box-shadow:0 10px 35px rgba(15,23,42,.05);

    height:100%;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(37,99,235,.15);

}

/* ===========================
Icon
=========================== */

.why-icon{

   /* width:64px;

    height:64px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    font-size:24px;

    box-shadow:0 10px 30px rgba(37,99,235,.25);
    */

     width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;   /* Isse icon center ho jayega */

    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);

}
.why-icon i {
    font-size: 32px;
    color: #fff;
}

.why-card h3{

    font-size:22px;

    color:#0f172a;

    margin-bottom:15px;

}

.why-card p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;

}

/* ===========================
Statistics
=========================== */

.stats-wrapper{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    border:1px solid #eef2f7;

    transition:.3s;

    box-shadow:0 10px 35px rgba(15,23,42,.05);

}

.stat-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 45px rgba(37,99,235,.12);

}

.stat-card h2{

    font-size:42px;

    font-weight:700;

    color:#2563eb;

    margin-bottom:10px;

}

.stat-card span{

    display:block;

    color:#0f172a;

    font-size:16px;

    font-weight:600;

}

/* ===========================
Responsive
=========================== */

@media(max-width:992px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .stats-wrapper{

        grid-template-columns:repeat(2,1fr);

    }

    .why-us h2{

        font-size:34px;

    }

}

@media(max-width:768px){

    .why-grid{

        grid-template-columns:1fr;

    }

    .stats-wrapper{

        grid-template-columns:1fr;

    }

    .why-us{

        padding:70px 0;

    }

    .why-us h2{

        font-size:28px;

    }

    .why-card{

        padding:28px;

    }

}
/* =========================
Footer
========================= */

.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:90px 0 30px;
}

.footer-cta{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    border-radius:24px;
    padding:45px;
    margin-bottom:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    color:#fff;
}

.footer-cta h2{
    font-size:34px;
    margin-bottom:10px;
}

.footer-btn{
    background:#fff;
    color:#2563eb;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-btn:hover{
    transform:translateY(-3px);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:50px;
}

.footer-logo{
    width:180px;
    margin-bottom:25px;
}

.footer-about{
    line-height:1.8;
    margin-bottom:25px;
}

.footer-column h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column li{
    margin-bottom:14px;
}

.footer-column a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-column a:hover{
    color:#fff;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1e293b;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:#2563eb;
}

.contact-list li{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.contact-list i{
    color:#2563eb;
    margin-top:4px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:60px;
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom-links{
    display:flex;
    gap:24px;
}

.footer-bottom-links a{
    color:#94a3b8;
    text-decoration:none;
}

.footer-bottom-links a:hover{
    color:#fff;
}

@media(max-width:992px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-cta{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}
/* ==========================================
ABOUT PAGE
========================================== */

.page-banner{

    position:relative;

    overflow:hidden;

    padding:170px 0 120px;

    text-align:center;

    background:
        linear-gradient(135deg,#0F4CFF 0%,#2563EB 100%);

    color:#fff;

}

.page-banner::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    right:-180px;

    top:-250px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.page-banner::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:-140px;

    bottom:-180px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

}

.page-banner h1{

    font-size:60px;

    font-weight:800;

    margin-bottom:18px;

    line-height:1.1;

}

.page-banner p{

    max-width:720px;

    margin:auto;

    font-size:20px;

    opacity:.95;

    line-height:1.8;

}

/* ===================================== */

.about-page{

    padding:110px 0;

    background:#F8FBFF;

}

/* ===================================== */

.about-intro{

    max-width:900px;

    margin:auto;

    text-align:center;

    margin-bottom:90px;

}

.about-intro h2{

    font-size:42px;

    margin-bottom:20px;

    color:#0F172A;

}

.about-intro p{

    font-size:17px;

    color:#64748B;

    line-height:1.9;

}

/* ===================================== */

.about-card{

    background:#fff;

    padding:50px;

    border-radius:28px;

    box-shadow:

        0 15px 45px rgba(15,23,42,.06);

    transition:.4s;

    margin-bottom:50px;

    text-align:center;

    border:1px solid #EEF2F7;

}

.about-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 30px 60px rgba(37,99,235,.12);

}

.about-card i{

    width:80px;

    height:80px;

    border-radius:20px;

    background:

        linear-gradient(135deg,#2563EB,#0F4CFF);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin:auto auto 30px;

}

.about-card h3{

    font-size:30px;

    margin-bottom:15px;

}

.about-card p{

    color:#64748B;

    line-height:1.8;

}

/* ===================================== */

.section-title{

    text-align:center;

    margin:90px 0 45px;

}

.section-title h2{

    font-size:40px;

    color:#0F172A;

}

/* ===================================== */

.offer-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.offer-item{

    background:#fff;

    padding:35px;

    border-radius:22px;

    transition:.35s;

    text-align:center;

    border:1px solid #EEF2F7;

    box-shadow:

        0 10px 30px rgba(15,23,42,.05);

}

.offer-item:hover{

    transform:translateY(-10px);

    box-shadow:

        0 25px 55px rgba(37,99,235,.12);

}

.offer-item i{

    width:65px;

    height:65px;

    border-radius:18px;

    background:#EFF6FF;

    color:#2563EB;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto auto 18px;

    font-size:28px;

}

.offer-item{

    font-size:17px;

    font-weight:600;

}

/* ===================================== */

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

.why-box{

    background:#fff;

    padding:30px;

    text-align:center;

    border-radius:20px;

    font-weight:600;

    transition:.35s;

    border:1px solid #EEF2F7;

}

.why-box:hover{

    background:#2563EB;

    color:#fff;

    transform:translateY(-6px);

}

/* ===================================== */

.company-info{

    margin-top:90px;

}

.company-info h2{

    text-align:center;

    margin-bottom:35px;

    font-size:40px;

}

.company-info table{

    width:100%;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border-collapse:collapse;

    box-shadow:

        0 10px 35px rgba(15,23,42,.06);

}

.company-info td{

    padding:22px 28px;

    border-bottom:1px solid #EEF2F7;

}

.company-info tr td:first-child{

    width:280px;

    font-weight:700;

    color:#0F172A;

    background:#F8FAFC;

}

/* ===================================== */

.contact-card{

    margin-top:80px;

    background:#0F172A;

    color:#fff;

    border-radius:28px;

    padding:60px;

}

.contact-card h2{

    text-align:center;

    margin-bottom:40px;

    font-size:38px;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.contact-grid div{

    display:flex;

    align-items:center;

    gap:18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:24px;

    transition:.3s;

}

.contact-grid div:hover{

    background:#2563EB;

}

.contact-grid i{

    font-size:24px;

}

/* ===================================== */

@media(max-width:992px){

.offer-grid{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.contact-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.page-banner h1{

font-size:42px;

}

.offer-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.company-info table{

display:block;

overflow:auto;

}

.contact-card{

padding:35px;

}

}
.contact-section{
    display:block ;
    width:100%;
}

.footer{
    display:block;
    width:100%;
    clear:both;
}

body{
    display:block ;
}
/* ==========================================================
   REFUND POLICY PAGE
========================================================== */

.policy-page{
    padding:100px 0;
    background:#f8fbff;
}

/* Policy Card */

.policy-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:24px;

    padding:45px;

    margin-bottom:35px;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);

    transition:.35s ease;

}

.policy-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 20px 45px rgba(37,99,235,.10);

}

.policy-card h2{

    font-size:32px;

    color:#0f172a;

    margin-bottom:18px;

    font-weight:700;

}

.policy-card p{

    color:#64748b;

    line-height:1.9;

    font-size:16px;

    margin-bottom:18px;

}

/* =======================
Policy Icon
======================= */

.policy-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:
        linear-gradient(135deg,#2563eb,#1d4ed8);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    color:#fff;

    font-size:30px;

    box-shadow:
        0 10px 30px rgba(37,99,235,.20);

}

/* =======================
Service Grid
======================= */

.policy-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin:35px 0;

}

.policy-grid div{

    background:#f8fbff;

    border:1px solid #e5edf8;

    border-radius:16px;

    padding:20px;

    font-weight:600;

    color:#1e293b;

    transition:.3s;

}

.policy-grid div:hover{

    background:#2563eb;

    color:#fff;

    transform:translateY(-4px);

}

/* =======================
Policy List
======================= */

.policy-list{

    margin:25px 0;

    padding-left:0;

    list-style:none;

}

.policy-list li{

    position:relative;

    padding-left:35px;

    margin-bottom:16px;

    color:#475569;

    line-height:1.8;

}

.policy-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    font-size:12px;

    display:flex;

    align-items:center;

    justify-content:center;

}

/* =======================
Highlight Text
======================= */

.policy-card strong{

    color:#2563eb;

}
/* new change */
/*====================================
CONTACT SECTION
====================================*/

.contact-section{

    padding:70px 0 20px;

}

.contact-section h2{

    font-size:36px;

    text-align:center;

    color:#0F172A;

    margin-bottom:15px;

}

.contact-section > .container > p{

    max-width:700px;

    margin:0 auto 40px;

    text-align:center;

    color:#64748B;

    font-size:17px;

    line-height:1.8;

}

.contact-info{

    max-width:700px;

    margin:0 auto;

    border-top:1px solid #E5E7EB;

}

.contact-info p{

    padding:18px 0;

    margin:0;

    border-bottom:1px solid #E5E7EB;

    color:#475569;

    font-size:16px;

    line-height:1.8;

}

.contact-info strong{

    color:#0F172A;

    display:inline-block;

    width:150px;

}

.contact-info a{

    color:#2563EB;

    text-decoration:none;

}

.contact-info a:hover{

    text-decoration:underline;

}

@media(max-width:768px){

.contact-section h2{

font-size:28px;

}

.contact-info strong{

display:block;

width:auto;

margin-bottom:6px;

}

}

/* ==========================================
   CONTACT PAGE
========================================== */
/* ==========================================
CONTACT PAGE
========================================== */

.contact-page{
    padding:100px 0;
    background:#f8fbff;
}

/* Header */

.contact-page .section-header{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.contact-page .section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 20px;

    background:#eaf2ff;

    color:#2563eb;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:18px;
}

.contact-page .section-header h2{

    font-size:46px;

    color:#0f172a;

    margin-bottom:18px;

    font-weight:700;

}

.contact-page .section-header p{

    font-size:17px;

    color:#64748b;

    line-height:1.9;

}

/* =======================
Contact Cards
======================= */

.contact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-bottom:70px;

}

.contact-box{

    background:#fff;

    padding:35px 30px;

    text-align:center;

    border-radius:22px;

    border:1px solid #eef2f7;

    transition:.35s;

    box-shadow:
        0 10px 35px rgba(15,23,42,.05);

}

.contact-box:hover{

    transform:translateY(-8px);

    box-shadow:
        0 20px 45px rgba(37,99,235,.12);

}

.contact-icon{

    width:70px;

    height:70px;

    margin:auto auto 20px;

    border-radius:20px;

    background:

        linear-gradient(135deg,#2563eb,#1d4ed8);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    box-shadow:
        0 12px 30px rgba(37,99,235,.20);

}

.contact-box h3{

    font-size:22px;

    margin-bottom:12px;

    color:#0f172a;

}

.contact-box p{

    color:#64748b;

    line-height:1.7;

}

/* =======================
Cards
======================= */

.contact-card{

    background:#fff;

    padding:45px;

    border-radius:24px;

    margin-bottom:40px;

    border:1px solid #eef2f7;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);

}

.contact-card h2{

    font-size:34px;

    color:#0f172a;

    margin-bottom:20px;

}

.contact-card p{

    color:#64748b;

    line-height:1.9;

}

/* =======================
Support Grid
======================= */

.support-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:30px;

}

.support-grid div{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px;

    border-radius:16px;

    background:#f8fbff;

    border:1px solid #eef2f7;

    transition:.3s;

}

.support-grid div:hover{

    background:#2563eb;

    color:#fff;

}

.support-grid i{

    color:#2563eb;

}

.support-grid div:hover i{

    color:#fff;

}

/* =======================
CTA
======================= */

.contact-bottom{

    margin-top:70px;

    padding:70px;

    border-radius:30px;

    text-align:center;

    color:#fff;

    background:

        linear-gradient(135deg,#2563eb,#1d4ed8);

}

.contact-bottom h2{

    font-size:42px;

    margin-bottom:18px;

}

.contact-bottom p{

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.8;

    opacity:.95;

}

/* Buttons */

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.cta-buttons a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.cta-buttons .btn-primary{

    background:#fff;

    color:#2563eb;

}

.cta-buttons .btn-secondary{

    background:rgba(255,255,255,.15);

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

}

.cta-buttons a:hover{

    transform:translateY(-3px);

}

/* =======================
Responsive
======================= */

@media(max-width:1100px){

.contact-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-page{

padding:70px 0;

}

.contact-grid{

grid-template-columns:1fr;

}

.support-grid{

grid-template-columns:1fr;

}

.contact-bottom{

padding:45px 25px;

}

.contact-bottom h2{

font-size:30px;

}

.contact-page .section-header h2{

font-size:34px;

}

.contact-card{

padding:30px;

}

}

/* ===========================
Customer Support Section
=========================== */

.contact-card{

    position: relative;

    background: #ffffff;

    border-radius: 28px;

    padding: 60px;

    margin-top: 50px;

    overflow: hidden;

    border: 1px solid rgba(37,99,235,.08);

    box-shadow:
        0 20px 60px rgba(15,23,42,.06);

}

/* Decorative Background */

.contact-card::before{

    content: "";

    position: absolute;

    top: -180px;

    right: -180px;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: radial-gradient(
        rgba(37,99,235,.08),
        transparent 70%
    );

}

/* Heading */

.contact-card h2{

    font-size: 38px;

    font-weight: 700;

    color: #0F172A;

    margin-bottom: 15px;

}

.contact-card p{

    color:#64748B;

    font-size:16px;

    line-height:1.8;

    margin-bottom:35px;

}

/* ===========================
Support Grid
=========================== */

.support-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

/* ===========================
Support Item
=========================== */

.support-grid div{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px 24px;

    border-radius:20px;

    background:#F8FBFF;

    border:1px solid #E7EEF9;

    transition:.35s ease;

    font-size:16px;

    font-weight:500;

    color:#334155;

}

/* Icon */

.support-grid div i{

    width:46px;

    height:46px;

    flex-shrink:0;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #2563EB,
        #1D4ED8
    );

    color:#fff;

    font-size:16px;

    transition:.35s;

}

/* Hover */

.support-grid div:hover{

    transform:translateY(-6px);

    background:#ffffff;

    border-color:#2563EB;

    box-shadow:
        0 18px 40px rgba(37,99,235,.12);

}

.support-grid div:hover i{

    transform:rotate(-10deg) scale(1.08);

}

/* ===========================
Responsive
=========================== */

@media(max-width:768px){

    .contact-card{

        padding:35px 25px;

    }

    .support-grid{

        grid-template-columns:1fr;

    }

    .contact-card h2{

        font-size:30px;

    }

}
/*details*/
/*==================================================
CONTACT DETAILS
==================================================*/

.contact-details{

    padding:100px 0;

    background:#fff;

}

.contact-info{

    max-width:900px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    column-gap:80px;

    row-gap:45px;

}

/* Individual Item */

.info-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding-bottom:30px;

    border-bottom:1px solid #eef2f7;

    transition:.3s ease;

}

.info-item:last-child{

    border-bottom:1px solid #eef2f7;

}

/* Icon */

.info-item i{

    width:56px;

    height:56px;

    flex-shrink:0;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eff6ff;

    color:#2563eb;

    font-size:20px;

    transition:.3s;

}

/* Hover */

.info-item:hover i{

    background:#2563eb;

    color:#fff;

    transform:translateY(-2px);

}

.info-item:hover{

    border-color:#2563eb;

}

/* Text */

.info-item h4{

    font-size:20px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:8px;

}

.info-item p{

    margin:0;

    font-size:16px;

    color:#64748b;

    line-height:1.8;

}

/* Links */

.info-item a{

    color:#64748b;

    text-decoration:none;

    transition:.3s;

}

.info-item a:hover{

    color:#2563eb;

}

/* Responsive */

@media(max-width:992px){

    .contact-info{

        grid-template-columns:1fr;

        gap:35px;

    }

}

@media(max-width:768px){

    .contact-details{

        padding:70px 0;

    }

    .contact-info{

        margin-top:50px;

        row-gap:30px;

    }

    .info-item{

        gap:16px;

        padding-bottom:24px;

    }

    .info-item i{

        width:48px;

        height:48px;

        font-size:18px;

    }

    .info-item h4{

        font-size:18px;

    }

    .info-item p{

        font-size:15px;

    }

}
/* Main Pricing Card */
.pricing-card {
    display: grid;
    grid-template-columns: 300px 1fr 220px;
    align-items: center;
    gap: 40px;

    max-width: 1200px;
    width: 100%;
    margin: 0 auto;

    padding: 35px;
    border-radius: 24px;

    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

/* Left Price Section */
.price-box{
    background: linear-gradient(135deg,#0b3dbd,#2563eb);
    color:#fff;

    border-radius:18px;
    padding:30px;
    text-align:center;
}

.old-price{
    color:rgba(255,255,255,.7);
    text-decoration:line-through;
}

.discount-badge{
    background:#ff9f1a;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
    font-size:13px;
    margin-left:8px;
}

.price{
    font-size:56px;
    font-weight:800;
    margin:10px 0;
}

.price-note{
    color:#dbeafe;
}

/* Middle Features */
.features-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.feature-group h5{
    margin-bottom:15px;
    font-size:22px;
}

.bullet-list{
    list-style:none;
    padding:0;
}

.bullet-list li{
    margin-bottom:12px;
    position:relative;
    padding-left:25px;
}

.bullet-list li::before{
    content:"✔";
    color:#2563eb;
    position:absolute;
    left:0;
    font-weight:bold;
}

/* Right Buttons */
.plan-actions{
    display:flex;
    flex-direction:column;
    gap:18px;
    align-items:center;
}

.select-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;

    background:#2563eb;
    color:#fff;

    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.demo-app-btn{
    width:100%;
    padding:16px;

    border:2px solid #2563eb;
    border-radius:12px;

    background:#fff;
    color:#2563eb;

    font-size:17px;
    font-weight:600;
    cursor:pointer;
}

.select-btn:hover,
.demo-app-btn:hover{
    transform:translateY(-3px);
    transition:.3s;
}

/* Responsive */
@media(max-width:992px){

    .pricing-card{
        grid-template-columns:1fr;
    }

    .features-wrapper{
        grid-template-columns:1fr;
    }

    .plan-actions{
        width:100%;
    }
}
.logo-wrapper{
    display:flex;
    align-items:center;
}

.logo-img{
    height:150px;
    width:auto;
    display:block;
    object-fit:contain;
}
.navbar-container {
    width: 100%;
    max-width: 1400px;   /* ya 100% bhi kar sakte ho */
    margin: 0 auto;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    margin-right: 40px;
    flex-shrink: 0;
}
.footer{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    background:#111827;
}

.footer > .container{
    max-width:1280px;
    margin:0 auto;
      padding:80px 20px 30px;
    box-sizing:border-box;
}
/*.gradient-text {
    background: linear-gradient(70deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* new pricing section */
.pricing-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: #64748b;
    font-size: 18px;
}

.plan-category {
    margin-bottom: 120px;
}

.plan-category h3 {
    font-size: 34px;
    margin-bottom: 35px;
}

/* ==========================
CARDS
========================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;

    padding: 35px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(148, 163, 184, .2);
    backdrop-filter: blur(20px);

    transition: all 0.35s ease;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, .06),
        transparent);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(59, 130, 246, .15);
    border-color: rgba(59, 130, 246, .3);
}

.featured {
    border: 2px solid #3b82f6;
    box-shadow:
        0 0 40px rgba(59, 130, 246, .25);
}

.enterprise {
    border: 2px solid #f59e0b;
    box-shadow:
        0 0 40px rgba(245, 158, 11, .15);
}

/* ==========================
BADGES
========================== */

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 999px;
    background: #2563eb;
    color: white;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
    z-index: 10;
}

.gold {
    background: #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* ==========================
CARD CONTENT
========================== */

.card-header {
    position: relative;
    margin-top: 10px;
    text-align: left;
}

.card-header h4 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-header p {
    font-size: 15px;
    color: #64748b;
}

.price-box {
    margin: 25px 0;
    text-align: left;
}

.old-price {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.discount-badge {
    text-decoration: none;
    background: #f97316;
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}

.gold-bg {
    background: #d4af37;
}

.price {
    font-size: 52px;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
}

.price-note {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
    font-weight: 500;
}

.feature-group {
    margin-bottom: 25px;
    text-align: left;
}

.feature-group h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    font-size: 15px;
    color: #475569;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* ==========================
PRODUCT TAGS
========================== */

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.products span {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 999px;

    background:
        rgba(37, 99, 235, .05);

    border:
        1px solid rgba(37, 99, 235, .1);
    color: #1e293b;
}

/* ==========================
SELECT BUTTON
========================== */

.select-btn {
    width: 100%;
    padding: 16px;
    margin-top: 10px;

    border: none;
    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #3b82f6,
            #6366f1);

    color: white;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
    transition: .3s;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 30px rgba(59, 130, 246, .35);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}
/*------------------------------------*/
.card-header h4{
    font-size:52px;
    font-weight:700;
    line-height:1.1;
    color:#16213e;
    margin:16px 0 10px;
}

.card-header p{
    font-size:18px;
    font-weight:400;
    color:#64748b;
}
.card-tag{
    padding:8px 18px;
    font-size:12px;
    font-weight:600;
    border-radius:30px;
    background:#edf4ff;
    color:#2563eb;
}
.pricing-card{
    background:#fff;
    border-radius:26px;
    padding:45px;
    box-shadow:
        0 15px 35px rgba(15,23,42,.05);
}
.featured{
    border:1.5px solid #2F6BFF;
    box-shadow:
        0 20px 50px rgba(59,130,246,.12);
}

.price-card h3{

    font-size:64px;
    font-weight:700;
    color:#18233d;
    margin:12px 0;
}
.old-price{

    font-size:18px;
    color:#d8d8d86e;
}
.discount{

    padding:5px 10px;

    font-size:12px;

    font-weight:600;
}
.feature-group h5{

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

    color:#1f2937;
}
.bullet-list li{

    font-size:17px;

    color:#64748b;

    line-height:2;
}
.select-btn{

    height:56px;

    font-size:17px;

    font-weight:600;

    border-radius:14px;
}
.bullet-list li i{
    color:#2563eb;
    font-size:18px;
    margin-right:10px;
}
.bullet-list{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.bullet-list li{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #64748b;
    font-size: 17px;
    position: relative;
}
.bullet-list li::marker{
    content: "";
}
.bullet-list li::before{
    display: none !important;
    content: none !important;
}

.bullet-list{
    list-style: none !important;
    padding: 0 !important;
}

.bullet-list li{
    list-style: none !important;
}
.old-price{
    display:flex;
    align-items:center;
    gap:12px;
}

.old-amount{
    color:#94A3B8;
    font-size:18px;
    font-weight:600;
    text-decoration:line-through;
}

.discount-badge{

    background:#f4c542;

    color:#7a4a00;

    padding:5px 12px;

    border-radius:8px;

    font-size:12px;

    font-weight:700;

    text-decoration:none;
}

.gold-bg{

    background:#f4c542;
}
.price{

    font-size:68px;

    font-weight:700;

    color:#18233d;

    line-height:1;

    margin-bottom:12px;
}

.price-note{

    font-size:17px;

    color:#475569;

    font-weight:500;
}
.discount-badge{
    background:#F4C542;
    color:#7A4A00;
    padding:5px 12px;
    border-radius:8px;
    font-size:12px;
    font-weight:700;
    text-decoration:none; /* important */
}
/* Card */

.feature-card{
    background:#fff;
    border:1px solid #E8EEF9;
    border-radius:28px;

    padding:42px 32px;

    text-align:center;

    transition:.35s ease;

    box-shadow:0 15px 40px rgba(37,99,235,.08);

    display:flex;
    flex-direction:column;
    align-items:center;

    min-height:320px;
}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(37,99,235,.15);
}


/* Icon Box */

.feature-card .icon{

    width:88px;
    height:88px;

    border-radius:24px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:28px;

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    box-shadow:0 15px 35px rgba(37,99,235,.28);
}


/* Icon */

.feature-card .icon i{

    color:#fff;

    font-size:40px;
}


/* Heading */

.feature-card h3{

    margin:0 0 18px;

    font-size:20px;

    font-weight:700;

    line-height:1.3;

    background:linear-gradient(90deg,#2563EB,#6D28D9);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    background-clip:text;
}


/* Description */

.feature-card p{

    margin:0;

    color:#64748B;

    font-size:17px;

    font-weight:400;

    line-height:1.8;
}
.footer{
    background:#1B2433;
    color:#E5E7EB;
    padding:110px 0 35px;
    position:relative;
}
.footer{
    background:linear-gradient(180deg,#1F2937 0%,#18212F 100%);
}
.footer-about,
.footer-column li,
.footer-column p,
.contact-list span{

    color:#CBD5E1;

    font-size:16px;

    line-height:1.9;
}
.footer-column h3{

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin-bottom:22px;
}
.footer-column ul li a{

    color:#CBD5E1;

    transition:.3s;
}

.footer-column ul li a:hover{

    color:#3B82F6;
}
.footer-social a{

    width:48px;
    height:48px;

    border-radius:50%;

    background:#2B3648;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.3s;
}

.footer-social a:hover{

    background:#2563EB;

    transform:translateY(-4px);
}
.contact-list li{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;
}

.contact-list li i{

    width:20px;

    color:#3B82F6;

    font-size:17px;
}
.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:60px;

    padding-top:28px;
}

.footer-bottom p,
.footer-bottom a{

    color:#94A3B8;
}
.footer-cta{

    background:linear-gradient(90deg,#2563EB,#345DFF);

    border-radius:28px;

    padding:42px 48px;
}

.footer-btn{

    background:#fff;

    color:#2563EB;

    font-weight:700;
}
.page-banner{
    position:relative;
    overflow:hidden;
    padding:150px 20px 110px;
    text-align:center;
    background:
        radial-gradient(circle at 12% 18%, rgba(59,130,246,.16), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(99,102,241,.12), transparent 28%),
        radial-gradient(circle at 50% 80%, rgba(168,85,247,.08), transparent 30%),
        linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}
.page-banner::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-180px;
    top:-80px;
    border-radius:50%;
    background:rgba(59,130,246,.10);
    filter:blur(8px);
}

.page-banner::after{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    right:-220px;
    top:-120px;
    border-radius:50%;
    background:rgba(99,102,241,.10);
    filter:blur(8px);
}
.page-banner .container{
    position:relative;
    z-index:2;
}

.page-banner h1{

    font-size:72px;

    font-weight:800;

    line-height:1.1;

    color:#101828;

    margin-bottom:20px;
}
.gradient-text{

    background:linear-gradient(
        90deg,
        #8B3DFF,
        #2563EB
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;
}
.page-banner p{
    margin-top:18px;
    font-size:19px;
    font-weight:500;
    color:#5B6B88;   /* Dark grey-blue */
    line-height:1.7;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    padding:12px 0;
    box-shadow:0 4px 18px rgba(15,23,42,.06);
    z-index:1000;
}
.navbar-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:92px;      /* Pehle agar 90-100px hai to isse replace karo */
}
.logo-img{
    width:120px;
    height:auto;
    display:block;
}
.nav-menu{
    display:flex;
    align-items:center;
    gap:32px;
    padding:10px 28px;
    border:1px solid #E5E7EB;
    border-radius:999px;
    background:#fff;
}
.nav-link{
    font-size:16px;
    font-weight:500;
    color:#334155;
    text-decoration:none;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#2563EB;
}
.nav-btn{
    padding:12px 28px;
    border-radius:999px;
    font-size:16px;
    font-weight:600;
    background:linear-gradient(135deg,#2563EB,#3B82F6);
    color:#fff;
    text-decoration:none;
}
.menu-toggle{
    width:42px;
    height:42px;
}

.bar{
    width:22px;
    height:2px;
}
.hero{
    padding: 120px 0 70px;   /* Pehle agar 120px ya 150px hai to kam kar do */
}
.hero{
    padding-bottom:40px;
}
.hero-content{
    margin-bottom:30px;   /* Agar 80-100px hai to kam kar do */
}
.hero-buttons{
    margin-bottom:40px;
}
.features-section{
    padding-top:60px;
}
/* Hero Section */
.hero{
    padding-bottom:20px !important;
    margin-bottom:0 !important;
}

/* Hero Content */
.hero-content{
    margin-bottom:20px !important;
    padding-bottom:0 !important;
}

/* Hero Buttons */
.hero-buttons{
    margin-bottom:25px !important;
}

/* Features Section */
.features-section{
    margin-top:0 !important;
    padding-top:30px !important;
}

/* Heading Area */
.section-header{
    margin-top:0 !important;
    margin-bottom:40px !important;
}
.hero + section{
    margin-top:0 !important;
    padding-top:30px !important;
}
.hero h1{
    font-size:78px;
    font-weight:800;   /* 900 se 800 */
    line-height:1.05;
    letter-spacing:-2px;
}
html,
body{
    font-family:'Inter',sans-serif !important;
    font-weight:400;
}
.hero h1{
    font-family:'Inter',sans-serif !important;
    font-synthesis:none;
}
.hero h2{
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: #0f172a;
}
.old{
    display:flex;
    align-items:center;
    gap:12px;
}

.old-amount{
    color:#94A3B8;
    font-size:18px;
    font-weight:600;
    text-decoration:line-through;
}

.discount-badge{

    background:#f4c542;

    color:#7a4a00;

    padding:5px 12px;

    border-radius:8px;

    font-size:12px;

    font-weight:700;

    text-decoration:none;
}

.gold-bg{

    background:#f4c542;
}
@media (max-width:768px){

    .footer-grid{
        grid-template-columns:1fr !important;
        gap:40px;
    }

    .footer-column{
        width:100%;
        text-align:left !important;
    }

    .footer-column h3{
        text-align:left !important;
    }

    .footer-column p,
    .footer-column ul,
    .footer-column ul li,
    .footer-column ul li a{
        text-align:left !important;
    }

    .footer-social{
        display:flex;
        justify-content:flex-start;
        gap:16px;
    }

    .contact-list li{
        justify-content:flex-start;
        align-items:flex-start;
    }

    .footer-bottom{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
        gap:12px;
    }

    .footer-bottom-links{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .footer-column ul li a:hover{
        padding-left:0;
    }

}
/* ===========================
   COMPANY INFO
=========================== */

.company-info{
    margin-top:90px;
}

.company-info h2{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

.company-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.company-card{
    background:#fff;
    border-radius:20px;
    padding:28px;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:.3s;
}

.company-card:hover{
    transform:translateY(-6px);
}

.company-card h4{
    margin:0 0 14px;
    color:#2563EB;
    font-size:18px;
    font-weight:700;
}

.company-card p{
    margin:0;
    color:#475569;
    line-height:1.8;
    font-size:16px;
    word-break:break-word;
}

.company-full{
    grid-column:1/-1;
}
.why-icon{
    width:90px;
    height:90px;
    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#7C3AED 0%,#2563EB 100%) !important;

    box-shadow:0 12px 30px rgba(124,58,237,.25);
}

.why-icon i{
    color:#fff;
    font-size:38px;
}
/* Same gradient as heading */

.policy-icon{
    background: linear-gradient(135deg,#7C3AED 0%, #2563EB 100%) !important;
}

.policy-icon i{
    color:#fff !important;
}

/* Phone, Email, Website, Clock icons */

.info-item i{
    background: linear-gradient(135deg,#7C3AED 0%, #2563EB 100%) !important;
    color:#fff !important;

    width:55px;
    height:55px;
    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    box-shadow:0 10px 25px rgba(124,58,237,.25);
}

/* Check icons */
.offer-item{
    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
}

.offer-item i{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;

    font-size:28px;
    color:#fff;

    border-radius:18px;

    background:linear-gradient(135deg,#7C3AED 0%,#2563EB 100%) !important;

    box-shadow:0 10px 25px rgba(124,58,237,.25);
}
.about-card i{
    width:90px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    font-size:38px;
    color:#fff !important;

    border-radius:22px;

    background:linear-gradient(135deg,#7C3AED 0%, #2563EB 100%) !important;

    box-shadow:0 12px 30px rgba(124,58,237,.25);
}
.footer-cta{
    background:linear-gradient(135deg,#7C3AED 0%, #5B5FF7 45%, #2563EB 100%);
}
.gradient-text{

    animation: none !important;
}
.mission-vision-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin:50px 0;
    align-items:stretch;
}

.mission-vision-grid .about-card{
    height:100%;
}

@media (max-width:768px){
    .mission-vision-grid{
        grid-template-columns:1fr;
    }
}
.company-box{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.info-row{
    display:flex;
    gap:25px;
    padding:18px 0;
    border-bottom:1px solid #ececec;
}

.info-row:last-child{
    border-bottom:none;
}

.label{
    width:220px;
    font-weight:700;
    color:#6c4cff;
    flex-shrink:0;
}

.value{
    flex:1;
    color:#334155;
    line-height:1.7;
}

@media(max-width:768px){

.info-row{
    flex-direction:column;
    gap:6px;
}

.label{
    width:100%;
}

.company-box{
    padding:22px;
}

}
.contact-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-top:40px;
}

.contact-row{
    display:flex;
    gap:25px;
    padding:18px 0;
    border-bottom:1px solid #ececec;
}

.contact-row:last-child{
    border-bottom:none;
}

.contact-row .label{
    width:220px;
    font-weight:700;
    color:#6c4cff;
    flex-shrink:0;
}

.contact-row .value{
    flex:1;
    color:#334155;
    line-height:1.7;
}

.contact-row a{
    color:#2563eb;
    text-decoration:none;
}

.contact-row a:hover{
    text-decoration:underline;
}

@media (max-width:768px){

.contact-card{
    padding:22px;
}

.contact-row{
    flex-direction:column;
    gap:6px;
}

.contact-row .label{
    width:100%;
}

}
/* TEMP FIX */

.footer{
    padding-top:0 !important;
    margin-top:0 !important;
}

.footer .container{
    padding-top:0 !important;
    margin-top:0 !important;
}

.footer-cta{
    margin-top:0 !important;
    transform:none !important;
    position:relative !important;
    top:0 !important;
}

.footer-grid{
    margin-top:50px !important;
}
.footer::before,
.footer::after{
    display:none !important;
}

.footer-cta::before,
.footer-cta::after{
    display:none !important;
}
.footer-cta{
    margin-top: 30px !important;   /* 20px, 30px ya 40px try kar sakte ho */
}
.page-banner{
    padding:120px 0 80px;
    background:#fff;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.page-banner h1{
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.page-banner p{
    max-width:760px;
    margin:0 auto;
    font-size:1.1rem;
    line-height:1.8;
}

.gradient-text{
  
  
    -webkit-text-fill-color:transparent;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-details{
    padding:90px 0;
    background:#fff;
}

.section-header{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
}

.section-header h2{
    font-size:2.8rem;
    font-weight:700;
    margin-bottom:20px;
}

.section-header p{
    max-width:760px;
    margin:0 auto;
    font-size:1.1rem;
    line-height:1.8;
}


/* =========================
   REGISTERED OFFICE CARD
========================= */

.contact-card{
    max-width:760px;
    margin:0 auto 60px;
    padding:45px;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    text-align:center;
    transition:.3s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.contact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.policy-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
  
    color:#fff;
    font-size:30px;
}

.contact-card h2{
    font-size:2rem;
    margin-bottom:18px;
}

.contact-card p{
    font-size:1rem;
    line-height:1.8;
    margin-bottom:8px;
}


/* =========================
   CONTACT INFO GRID
========================= */

.contact-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:28px;
    background:#fff;
    border-radius:18px;
    border:1px solid rgba(0,0,0,.08);
    transition:.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.info-item:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.10);
}

.info-item i{
    width:58px;
    height:58px;
    min-width:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    color:#fff;
    font-size:22px;
}

.info-item h4{
    font-size:1.15rem;
    margin-bottom:8px;
}

.info-item p{
    line-height:1.7;
    word-break:break-word;
}
.pricing-card.featured{
    position: relative;
    overflow: visible;
}

.popular-badge{
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg,#2563eb,#1d4ed8);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 10px 28px;
    border-radius: 999px;
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(37,99,235,.3);
}
/* ABOUT PAGE - Same Width */

.company-box,
.contact-card{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section .container{
    max-width: 1200px;
    margin: 0 auto;
}
.company-box,
.contact-card{
    width:100% !important;
    max-width:1200px !important;
    margin:0 auto !important;
}
.contact-info-card{
    max-width:750px;
    margin:40px auto 0;
    background:#fff;
    border-radius:24px;
    border:1px solid #e9edf5;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    overflow:hidden;
}

.contact-row{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 28px;
    border-bottom:1px solid #eef2f7;
}

.contact-row:last-child{
    border-bottom:none;
}

.contact-row i{
    width:60px;
    height:60px;
    min-width:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:linear-gradient(135deg,#6a4df5,#2d7ff9); /* Same as Registered Office */
    color:#fff;
    font-size:22px;
}

.contact-row h4{
    margin:0 0 6px;
    font-size:20px;
}

.contact-row p{
    margin:0;
    line-height:1.6;
}
.contact-office-card{
    max-width:750px;
    margin:0 auto 40px;
    padding:40px;
    background:#fff;
    border-radius:24px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.contact-office-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px 50px;
    gap: 20px;
}
.contact-office-card h2{
    margin: 0;
}

/*==============================
CONTACT GRID
==============================*/

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
}

.contact-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:35px 40px;
    border-bottom:1px solid #ececec;
    border-right:1px solid #ececec;
    background:#fff;
}

.contact-item:nth-child(2n){
    border-right:none;
}

.contact-item:nth-last-child(-n+2){
    border-bottom:none;
}

/*==============================
ICON
==============================*/

.contact-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#6d5efc,#3875ff);
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(61,110,255,.18);
}

.contact-icon i{
    color:#fff !important;
    font-size:30px !important;
    display:block;
    line-height:1;
}

/*==============================
TEXT
==============================*/

.contact-item h4{
    margin:0 0 8px;
    font-size:1.45rem;
    color:#111827;
    font-weight:700;
}

.contact-item p{
    margin:0;
    color:#5b6475;
    font-size:1.05rem;
    line-height:1.7;
}

/*==============================
NO HOVER
==============================*/

.contact-item:hover{
    transform:none !important;
    background:#fff;
    box-shadow:none;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:768px){

.contact-grid{
    grid-template-columns:1fr;
}

.contact-item{
    border-right:none;
    padding:25px 20px;
}

.contact-item:not(:last-child){
    border-bottom:1px solid #ececec;
}

.contact-icon{
    width:60px;
    height:60px;
    min-width:60px;
}

.contact-icon i{
    font-size:24px !important;
}

}
.contact-icon{
    background:linear-gradient(135deg,#6c63ff,#3b82f6) !important;
    width:70px !important;
    height:70px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

.contact-icon i{
    color:#ffffff !important;
    font-size:30px !important;
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    font-family:"Font Awesome 6 Free" !important;
    font-weight:900 !important;
}
/* Disable all hover effects on contact section */

.contact-item,
.contact-item:hover,
.contact-item:focus,
.contact-item:active{
    transform: none !important;
    scale: 1 !important;
    translate: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    transition: none !important;
    cursor: default;
}

/* Remove hover from contact section */

.contact-item,
.contact-item *,
.contact-item:hover,
.contact-item *:hover{
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
    scale: 1 !important;
    transition: none !important;
}

.contact-icon{
    background: linear-gradient(135deg,#6c63ff,#3b82f6) !important;
}

.contact-icon:hover{
    background: linear-gradient(135deg,#6c63ff,#3b82f6) !important;
}
.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:0;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:40px 50px;
}

.contact-item:nth-child(1),
.contact-item:nth-child(2){
    border-bottom:1px solid #ececec;
}

.contact-item:nth-child(odd){
    border-right:1px solid #ececec;
}

.contact-icon{
    width:70px;
    height:70px;
    min-width:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:linear-gradient(135deg,#6c63ff,#3b82f6);
    box-shadow:0 10px 25px rgba(61,110,255,.18);
}

.contact-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-content h4{
    margin:0 0 6px;
    font-size:1.6rem;
    font-weight:700;
    color:#111827;
}

.contact-content p{
    margin:0;
    font-size:1rem;
    color:#5b6475;
    line-height:1.6;
}
/* ===== TEMP ALIGNMENT FIX ===== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
}

.contact-item{
    display:flex !important;
    align-items:center !important;
    gap:25px !important;
    padding:35px 45px !important;
}

.contact-icon{
    width:72px !important;
    height:72px !important;
    min-width:72px !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    margin:0 !important;
}

.contact-item > div:last-child{
    display:flex !important;
    align-items:center !important;
    gap:18px !important;
    flex-wrap:wrap;
}

.contact-item h4{
    margin:0 !important;
    min-width:170px;
    font-size:20px;
}

.contact-item p{
    margin:0 !important;
}

/* Remove any hover */
.contact-item:hover,
.contact-item *:hover{
    transform:none !important;
    background:transparent !important;
    box-shadow:none !important;
}
.office-section h3{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    font-size:1.45rem !important;
    font-weight:700 !important;
    color:#111827 !important;
    margin:20px 0 18px !important;
}
/* Company Information ke niche gap */
.company-info{
    margin-bottom: 30px;  
}

/* Footer CTA ke upar gap */
.footer{
    padding-top: 30px;    
}

/* CTA banner */
.footer-cta{
    margin-top: 0;
}
/* Contact Section */

.contact-section{
    padding:80px 0;
    text-align:center;
}

.contact-section h2{
    font-size:2.4rem;
    margin-bottom:18px;
}

.contact-section p{
    max-width:750px;
    margin:0 auto 18px;
    line-height:1.8;
    color:#5b6475;
}

.contact-card{
    max-width:950px;
    margin:45px auto 0;
    background:#fff;
    border-radius:22px;
    padding:20px 35px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    overflow:hidden;
}

.contact-row{
    display:grid;
    grid-template-columns:220px 1fr;
    align-items:center;
    padding:24px 10px;
    border-bottom:1px solid #ececec;
}

.contact-row:last-child{
    border-bottom:none;
}

.contact-row .label{
    font-size:1.25rem;
    font-weight:700;
    color:#4f46e5;
    text-align:center;
}

.contact-row .value{
    font-size:1.15rem;
    color:#24324a;
    text-align:left;
}

.contact-row .value a{
    color:#2563eb;
    text-decoration:none;
}

.contact-row .value a:hover{
    text-decoration:underline;
}
.contact-section{
    padding: 70px 0 30px;
    text-align: center;
}
.contact-section{
    padding: 70px 0 15px;
}
.contact-section p{
    max-width: 620px;
    margin: 0 auto 16px;
    line-height: 1.6;
    font-size: 1.05rem;
    color: #5f6b7a;
}

.contact-section p:last-of-type{
    margin-top: 10px;
    margin-bottom: 35px;
}
