
 /* nav bar and body styling */
*{box-sizing:border-box;margin:0;padding:0;font-family:'Segoe UI',system-ui,Arial,sans-serif}
  body{background:#f4f7fb;padding-top:35px} /* space for fixed nav */

  /* NAVBAR LAYOUT */
  nav{position:fixed;top:0;left:0;width:100%;height:78px;background:#015a86;color:#fff;display:flex;align-items:center;justify-content:space-between;padding:0 20px;z-index:9999;box-shadow:0 6px 18px rgba(2,17,34,0.35)}

  /* LEFT: main links */
  .nav-left{display:flex;align-items:center;gap:20px}
  .nav-left a{color:#ffffff;text-decoration:none;font-size:18px;font-weight:600;padding:10px 8px;border-radius:8px;transition:all .18s}
  .nav-left a:hover{background:rgba(255,255,255,0.04);color:#faf171d7}

  /* CENTER: logo (keeps centered) */
  .logo{position:absolute;left:50%;transform:translateX(-50%);display:flex;align-items:center;justify-content:center;height:78px}
  .logo img{height:50px;display:block}

  /* RIGHT: phone list + buy button */
  .nav-right{display:flex;align-items:center;gap:14px}
  .phone-list{display:flex;flex-direction:column;gap:6px;text-align:right}
  .phone-list a{color:#fff;text-decoration:none;font-weight:700;font-size:15px}
  .phone-list a .fa-phone{margin-right:8px}

  .buy-btn{background:linear-gradient(90deg,#ffd34f,#f7c64d);color:#03203a;padding:10px 18px;border-radius:30px;font-weight:800;text-decoration:none;box-shadow:0 6px 20px rgba(255,185,0,0.25);transition:transform .18s}
  .buy-btn:hover{transform:translateY(-3px)}

  /* DROPDOWN (desktop) */
  .dropdown{position:relative}
  .nav-left .dropdown-toggle:hover{background:rgba(255,255,255,0.04);color:#faf171d7}
  .dropdown-toggle{cursor:pointer}
  .dropdown-content{position:absolute;left:0;top:calc(100% + 10px);min-width:220px;background:#fff;color:#01203a;border-radius:10px;overflow:hidden;box-shadow:0 12px 30px rgba(255, 255, 255, 0);display:none;flex-direction:column}
  .dropdown-content a{display:block;padding:12px 14px;text-decoration:none;color:#01192c;font-weight:600;border-bottom:1px solid #ffffff}
  .dropdown-content a:hover{background:#c7b303}

  /* MOBILE BUTTON */
  .menu-btn{display:none;font-size:30px;color:#fff;cursor:pointer}

  /* MOBILE DRAWER */
  .mobile-menu{position:fixed;top:0;right:-100%;width:300px;height:100%;background:#01203a;padding:26px;display:flex;flex-direction:column;gap:12px;transition:right .28s ease;z-index:100000}
  .mobile-menu .close{align-self:flex-end;font-size:28px;color:#fff;cursor:pointer}
  .mobile-menu a{color:#fff;text-decoration:none;font-size:18px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,0.06);display:block}

  /* MOBILE dropdown content - ensure stacked items */
  .mobile-dropdown-content{display:none;flex-direction:column;padding-left:12px;margin-bottom:8px}
  .mobile-dropdown-content a{display:block;padding:10px 0;font-size:17px}

  /* RESPONSIVE */
  @media(max-width:980px){
    .nav-left{display:none}
    .phone-list{display:none}
    .menu-btn{display:block}
    .logo{position:static;transform:none;margin:auto}
    nav{justify-content:space-between}
  }

  @media(max-width:420px){
    .buy-btn{padding:9px 14px;font-size:15px}
    .logo img{height:48px}
  }

/* end nav bar */


/* carousel start */
.carousel-section { position: relative; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh; overflow: hidden; } .carousel-container { position: relative; width: 100%; height: 100%; } .carousel-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity 1s ease-in-out, visibility 0s 1s; padding: 0; } .carousel-slide.active { opacity: 1; visibility: visible; transition: opacity 1s ease-in-out, visibility 0s 0s; z-index: 1; } /* Slide background colors */ .slide-1 { background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%); } .slide-A { background: linear-gradient(135deg, #fdeda63d 0%, #fffbeb 100%); } .slide-2 { background: linear-gradient(135deg, #F9D048 0%, #e6b824 100%); } .slide-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); } /* Layout */ .content-wrapper { display: flex; width: 100%; height: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; } /* LEFT TEXT */ .text-content { flex: 0 0 60%; display: flex; flex-direction: column; justify-content: center; padding-right: 60px; animation: slideInLeft 1s ease-out; } /* RIGHT IMAGE */ .image-content { flex: 0 0 40%; display: flex; align-items: center; justify-content: center; animation: slideInRight 1s ease-out; } @media screen and (min-width: 992px) { .image-content { margin-top: 40px; } } .carousel-slide.active .text-content { animation: slideInLeft 1s ease-out; } .carousel-slide.active .image-content { animation: slideInRight 1s ease-out; } /* Animations */ @keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } } @keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } } /* Heading */ .carousel-heading { font-size: clamp(2.1rem, 4vw, 4.2rem); font-weight: 600; color: #ffffff; margin-bottom: 24px; margin-left: 20px; line-height: 1.1; letter-spacing: -0.02em; } /* Description */ .carousel-description { font-size: clamp(1.1rem, 2vw, 1.4rem); color: rgba(255, 255, 255, 0.9); margin-bottom: 40px; line-height: 1.6; max-width: 600px; } /* CTA Button */ .cta-button { display: inline-block; padding: 18px 40px; font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 600; color: #ffffff; background: rgba(255, 255, 255, 0.2); border: 2px solid rgba(255, 255, 255, 0.8); border-radius: 50px; text-decoration: none; transition: all 0.3s ease; backdrop-filter: blur(10px); cursor: pointer; width: fit-content; } .cta-button:hover { background: rgba(255, 255, 255, 0.3); border-color: #ffffff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); } .cta-button-2 { display: inline-block; padding: 18px 40px; font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 600; color: white; background: gold; border: 2px solid gold; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; backdrop-filter: blur(10px); cursor: pointer; width: fit-content; } .cta-button-2:hover { background: gold; border-color: #ffffff; transform: translateY(-2px); box-shadow: 0 10px 30px gray; } /* Main Image */ .carousel-image { width: 120%; height: 100%; max-height: 500px; object-fit: contain; /* full image always visible */ object-position: center; transition: transform 0.3s ease; } .carousel-image:hover { transform: scale(1.02); } /* Indicators */ .carousel-indicators { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; } .indicator { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); cursor: pointer; transition: all 0.3s ease; } .indicator.active { background: #ffffff; width: 40px; border-radius: 6px; } .carousel-prev-btn, .carousel-next-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: #fff; border: none; font-size: 32px; padding: 10px 15px; cursor: pointer; z-index: 10; border-radius: 50%; transition: 0.3s ease; } .carousel-prev-btn:hover, .carousel-next-btn:hover { background: rgba(0,0,0,0.7); } .carousel-prev-btn { left: 20px; } .carousel-next-btn { right: 20px; } /* =========== MOBILE RESPONSIVE (unchanged except fixed removed) =========== */ @media (max-width: 968px) { .carousel-section { height: 100vh; height: 100dvh; } .carousel-slide { height: 100vh; height: 100dvh; } .content-wrapper { flex-direction: column; padding: 5vh 5vw; height: 100%; justify-content: space-evenly; } .text-content { padding-right: 0; margin-bottom: 3vh; text-align: center; align-items: center; } .image-content { width: 100%; max-width: 90vw; } .carousel-heading { font-size: clamp(2rem, 6vw, 1.5rem); } .carousel-description { font-size: clamp(0.95rem, 3.5vw, 1.15rem); } .carousel-image { max-height: 40vh; object-fit: cover; } .carousel-indicators { bottom: 3vh; position: absolute; } } @media (max-width: 480px) { .carousel-image { max-height: 35vh; border-radius: 12px; } .indicator { width: 10px; height: 10px; } .indicator.active { width: 32px; } } /* Extra small screens */ @media (max-width: 360px) { .carousel-heading { font-size: 1.4rem; } .carousel-description { font-size: 0.85rem; } .carousel-image { max-height: 30vh; } } /* Landscape */ @media (max-width: 968px) and (orientation: landscape) { .content-wrapper { flex-direction: row; padding: 3vh 5vw; justify-content: space-between; } .text-content { flex: 0 0 55%; text-align: left; align-items: flex-start; padding-right: 3vw; } .image-content { flex: 0 0 40%; } .carousel-image { max-height: 70vh; } } /* ================= CAROUSEL END ================= */
/* caraousel end */

/* tally global */

    /* =======================  GLOBAL BRAND TRUST SECTION  ======================= */
.global-brand-section {
    
    background: #eaf5ff;
    padding: 40px 20px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.global-brand-container {
    
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
      /* adjusted */
}

/* Heading */
.global-brand-title {
    margin-top: 50px;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

/* Artistic gold underline */
.global-brand-underline {
    width: 550px;
    height: 18px;
    background: url('tally-yello-line.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

/* Row layout */
.global-brand-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
       /* adjusted spacing */
       margin-bottom: 50px;
}

/* Items */
.global-brand-item {
    width: 300px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

/* Golden vertical line */
.global-brand-line {
    width: 4px;
    height: 70px;
    background: linear-gradient(to bottom, #d4a017, #b8860b, #daa520);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
}

/* Big number */
.global-brand-number {
    font-size: 42px;
    font-weight: 800;
    color: #0b72d1;
    margin-bottom: 14px;
}

/* Golden badge */
.global-brand-badge {
    margin-top: 20px;
    margin-left: -30px;
    display: inline-block;
    background: #f7d372;
    color: #3a3a3a;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 14px;
    font-weight: 600;
}

/* Description */
.global-brand-text {
    margin-left: -30px;
    font-size: 16px;
    color: #334155;
    line-height: 1.6;
}

/* Hide underline on mobile */
@media (max-width: 768px) {
    .global-brand-underline {
        display: none;
    }

    .global-brand-title {
        font-size: 28px;
    }

    .global-brand-number {
        font-size: 36px;
    }

    .global-brand-row {
        gap: 40px;
    }
}
/* tally global end */





/* tally price section */

    /* section code for the product */
  .qrx-price-section{
    padding:10px 25px;
    background:linear-gradient(180deg,#eef7ff 0%, #ffffff 100%);
    font-family:Arial, Helvetica, sans-serif;
}

.qrx-price-container{
    max-width:1200px;
    margin:auto;
}

/* Heading */
.qrx-head-wrap{
    text-align:center;
    max-width:700px;
    margin:0 auto 55px;
}

.qrx-mini-tag{
    display:inline-block;
    background:#eaf2ff;
    color:#4f6db8;
    padding:8px 16px;
    border-radius:25px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.qrx-main-title{
    margin:0 0 14px;
    font-size:42px;
    color:#2c4f95;
    font-weight:700;
}

.qrx-sub-title{
    font-size:16px;
    color:#555;
    line-height:1.5;
}

/* Grid */
.qrx-price-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */
.qrx-price-card{
    background:#f7f7f7;
    border-radius:16px;
    padding:28px 22px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.qrx-price-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 30px rgba(0,0,0,.12);
}

.qrx-popular-card{
    border:2px solid #f5b400;
}

/* Badge */
.qrx-badge{
    display:inline-block;
    background:#4f6db8;
    color:#fff;
    padding:7px 14px;
    border-radius:25px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.qrx-green{
    background:#28a745;
}

/* Text */
.qrx-plan-name{
    font-size:30px;
    line-height:1.2;
    color:#5c77ba;
    margin:0 0 12px;
    font-weight:700;
}

.qrx-plan-desc{
    font-size:18px;
    line-height:1.5;
    color:#333;
    margin-bottom:24px;
}

/* Price */
.qrx-price-row{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:22px;
    flex-wrap:wrap;
}

.qrx-currency-icon{
    width:26px;
    height:auto;
}

.qrx-price{
    font-size:50px;
    font-weight:700;
    color:#3455a4;
    line-height:1;
}

.qrx-vat{
    font-size:16px;
    color:#555;
}

/* Button */
.qrx-buy-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#f5b400;
    color:#000;
    text-decoration:none;
    padding:15px;
    border-radius:8px;
    font-weight:600;
    font-size:22px;
    margin-bottom:26px;
    transition:.3s ease;
}

.qrx-buy-btn:hover{
    background:#e0a000;
}

/* Features */
.qrx-feature-title{
    font-size:25px;
    margin:0 0 18px;
    color:#111;
}

.qrx-feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.qrx-feature-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:20px;
    line-height:1.55;
    color:#111;
    margin-bottom:12px;
}

.qrx-check{
    color:#1aa334;
    font-weight:800;
}

.qrx-cross{
    color:red;
    font-weight:800;
}

/* Tablet */
@media(max-width:1100px){
.qrx-price-grid{
    grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */
@media(max-width:700px){

.qrx-price-section{
    padding:60px 14px;
}

.qrx-main-title{
    font-size:30px;
}

.qrx-sub-title{
    font-size:16px;
}

.qrx-price-grid{
    grid-template-columns:1fr;
    gap:22px;
}

.qrx-plan-name{
    font-size:28px;
}

.qrx-price{
    font-size:44px;
}

.qrx-feature-title{
    font-size:22px;
}

.qrx-feature-list li{
    font-size:18px;
}

.qrx-buy-btn{
    font-size:20px;
}

}

/* tally prime why showcase  start*/
    /* Reset and Base Styles */


.tally-prime-showcase-section {
    width: 100%;
    padding: 1px 0;
    padding-top: 10px;
    background: linear-gradient(135deg, #FFFBE5 0%, #FFFBE5 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

/* Header Styles */
.tally-prime-header-container {
    text-align: center;
    margin-bottom: 50px;
    animation: tallyPrimeFadeInDown 0.8s ease-out;
  padding-top: 20px;
}

.tally-prime-main-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #243770;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px #829fe4;
    letter-spacing: -1px;
}

.tally-prime-subtitle {
    font-size: 1.2rem;
    color: #0F172A;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Wrapper */
.tally-prime-features-wrapper {
    width: 100%;
    background: transparent;
    overflow: hidden;
    position: relative;
}

/* Slider Container */
.tally-prime-slider-container {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.tally-prime-feature-slide {
    display: none;
    animation: tallyPrimeFadeIn 0.6s ease-in-out;
}

.tally-prime-feature-slide.tally-prime-active-slide {
    display: block;
}

/* Content Grid */
.tally-prime-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    align-items: center;
    background: #FFFBE5;
}

/* Text Column */
.tally-prime-text-column {
    padding: 50px 60px;
}

.tally-prime-feature-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #17255f;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #091a41 0%, #0a2461 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tally-prime-feature-list {
    list-style: none;
    padding: 0;
}

.tally-prime-feature-item {
    font-size: 1rem;
    color: #4a5568;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    transition: transform 0.3s ease, color 0.3s ease;
}

.tally-prime-feature-item:hover {
    transform: translateX(5px);
    color: #0F172A;
}

.tally-prime-feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3c57a8 0%, #243770 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Image Column */
.tally-prime-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.tally-prime-image-wrapper {
    width: 100%;
    max-width: 450px;   /* adjust as you want */
    height: 300px;      /* fixed block height */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;

    transition: transform 0.3s ease;
}

.tally-prime-image-wrapper:hover {
    transform: scale(1.05);
}

.tally-prime-feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* FULL IMAGE ALWAYS VISIBLE */
    object-position: center;
    padding: 10px;
}

/* Navigation Controls */
.tally-prime-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
}

.tally-prime-nav-button {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, #243770 0%, #243770 100%);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.tally-prime-nav-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.tally-prime-nav-button:active {
    transform: scale(0.95);
}

/* Dots Navigation */
.tally-prime-dots-container {
    display: flex;
    gap: 12px;
}

.tally-prime-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tally-prime-dot:hover {
    background: #a0aec0;
    transform: scale(1.2);
}

.tally-prime-dot.tally-prime-active-dot {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 30px;
    border-radius: 6px;
}

/* Animations */
@keyframes tallyPrimeFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes tallyPrimeFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 968px) {
    .tally-prime-showcase-section {
        padding: 50px 0;
    }

    .tally-prime-main-heading {
        font-size: 2rem;
    }

    .tally-prime-subtitle {
        font-size: 1rem;
    }

    .tally-prime-content-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .tally-prime-text-column {
        padding: 40px 30px;
        order: 2;
    }

    .tally-prime-image-column {
        order: 1;
    }

    .tally-prime-feature-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .tally-prime-feature-item {
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 30px;
    }

    .tally-prime-image-wrapper {
        min-height: 300px;
    }

    .tally-prime-controls-wrapper {
        padding: 20px;
        gap: 20px;
    }

    .tally-prime-nav-button {
        width: 45px;
        height: 45px;
    }

    .tally-prime-slider-container {
        min-height: auto;
    }
}

@media screen and (max-width: 480px) {
    .tally-prime-showcase-section {
        padding: 40px 0;
    }

    .tally-prime-main-heading {
        font-size: 1.6rem;
    }

    .tally-prime-subtitle {
        font-size: 0.9rem;
    }

    .tally-prime-header-container {
        margin-bottom: 30px;
    }

    .tally-prime-content-grid {
        padding: 0;
    }

    .tally-prime-text-column {
        padding: 30px 20px;
    }

    .tally-prime-feature-title {
        font-size: 1.5rem;
    }

    .tally-prime-feature-item {
        font-size: 0.9rem;
        padding: 10px 0;
        padding-left: 28px;
    }

    .tally-prime-feature-item::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        top: 10px;
    }

    .tally-prime-image-wrapper {
        min-height: 250px;
    }

    .tally-prime-nav-button {
        width: 40px;
        height: 40px;
    }

    .tally-prime-nav-button svg {
        width: 20px;
        height: 20px;
    }

    .tally-prime-dot {
        width: 10px;
        height: 10px;
    }

    .tally-prime-dot.tally-prime-active-dot {
        width: 25px;
    }

    .tally-prime-slider-container {
        min-height: auto;
    }
}
/* tally why to choose showcase end */

/* services section start */
 
    .services-unique-container {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 20px;
        }

        .services-unique-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-unique-subtitle {
            font-size: 1.1rem;
            color: #3b82f6;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .services-unique-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #243770, #243770);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }

        .services-unique-description {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-unique-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        /* Service Card */
        .services-unique-card {
            background: #FDF5E2;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px white;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(50px);
            position: relative;
        }

        .services-unique-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .services-unique-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
        }

        .services-unique-card-image {
            height: 220px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .services-unique-card-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.6s ease;
        }

        .services-unique-card:hover .services-unique-card-image img {
            transform: scale(1.1);
        }

        .services-unique-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, #fdf5e250);
        }

        .services-unique-card-content {
            padding: 25px;
        }

        .services-unique-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        .services-unique-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1e293b;
        }

        .services-unique-card-desc {
            font-size: 1rem;
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .services-unique-card-link {
            display: inline-flex;
            align-items: center;
            color: #3b82f6;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .services-unique-card-link:hover {
            color: #8b5cf6;
        }

        .services-unique-card-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .services-unique-card-link:hover i {
            transform: translateX(5px);
        }

        /* Animation delay for staggered effect */
        .services-unique-card:nth-child(1) { transition-delay: 0.1s; }
        .services-unique-card:nth-child(2) { transition-delay: 0.2s; }
        .services-unique-card:nth-child(3) { transition-delay: 0.3s; }
        .services-unique-card:nth-child(4) { transition-delay: 0.4s; }
        .services-unique-card:nth-child(5) { transition-delay: 0.5s; }
        .services-unique-card:nth-child(6) { transition-delay: 0.6s; }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-unique-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
                gap: 25px;
            }

            .services-unique-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .services-unique-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .services-unique-title {
                font-size: 2.2rem;
            }

            .services-unique-description {
                font-size: 1.1rem;
            }

            .services-unique-card {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .services-unique-container {
                padding: 0 15px;
                margin: 60px auto;
            }

            .services-unique-title {
                font-size: 1.8rem;
            }

            .services-unique-subtitle {
                font-size: 1rem;
            }

            .services-unique-card-content {
                padding: 20px;
            }
        }

        /* Scroll animation styles */
        @keyframes servicesUniqueFadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Decorative elements */
        .services-unique-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .services-unique-decoration-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.05));
        }

        .services-unique-decoration-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
        }

        .services-unique-decoration-circle:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
        }
 /* services end */
 
 /* video album section */
    /* === SECTION BACKGROUND === */
.art-video-section {
  width: 100%;
  padding: 50px 40px;
  background: linear-gradient(135deg, #55eafdd3, #75efffb2, #f8f7f6);
  position: relative;
  overflow: hidden;
}

/* Light glow background elements */
.art-video-section::before,
.art-video-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 60%);
  filter: blur(70px);
}
.art-video-section::before {
  top: -120px;
  left: -80px;
}
.art-video-section::after {
  bottom: -130px;
  right: -90px;
}

/* CONTAINER */
.art-container {
  position: relative;
  z-index: 5;
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  gap: 50px;
  margin: auto;
}

/* HEADING */
.art-heading {
  font-size: 55px;
  line-height: 1.2;
  font-family: "Dancing Script";
  color: rgb(10, 1, 1);
  font-weight: 700;
  text-shadow: 0px 0px 15px rgba(255,255,255,0.7);
}

/* VIDEO BOX */
.video-box {
  position: relative;
  width: 100%;
  max-width: 700px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  animation: glow 2s infinite alternate;
  cursor: pointer;
}

/* Glow animation */
@keyframes glow {
  from { box-shadow: 0 0 20px rgba(255,255,255,0.5); }
  to   { box-shadow: 0 0 45px rgba(255,255,255,1); }
}

.video-box video {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: rgba(229, 255, 0, 0.95);
  cursor: pointer;
  transition: 0.3s ease;

  /* GLOW / PULSE ANIMATION */
  animation: pulseGlow 1.4s infinite ease-in-out;
}

/* Triangle inside button */
.play-btn::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 23px;
  border-style: solid;
  border-width: 18px 0 18px 28px;
  border-color: transparent transparent transparent white;
}

/* KEYFRAMES FOR GLOW EFFECT */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 12px rgba(255, 255, 0, 0.8), 
                0 0 20px rgba(255, 238, 0, 0.6);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 255, 0, 1),
                0 0 40px rgba(255, 238, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.12);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 255, 0, 0.8), 
                0 0 20px rgba(255, 238, 0, 0.6);
    transform: translate(-50%, -50%) scale(1);
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .art-container {
    flex-direction: column;
    text-align: center;
  }
  .art-heading {
    font-size: 33px;
  }
  .video-box {
    max-width: 100%;
  }
}

/* video end */


/* testimonial start */
     /* Unique container class to avoid conflicts */
        .testimonials-unique-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 60px 20px;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .testimonials-unique-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            color: #1e293b;
            font-weight: 700;
        }

        .testimonials-unique-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonials-unique-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 40px 0;
        }

        .testimonials-unique-slider-wrapper {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .testimonials-unique-card {
            flex: 0 0 calc(100% / 3);
            padding: 15px;
            transition: all 0.4s ease;
        }

        .testimonials-unique-card-inner {
            background-color: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .testimonials-unique-card.testimonials-unique-active .testimonials-unique-card-inner {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .testimonials-unique-quote-icon {
            font-size: 2.5rem;
            color: #e2e8f0;
            margin-bottom: 15px;
            position: absolute;
            top: 15px;
            right: 25px;
            z-index: 0;
        }

        .testimonials-unique-review-text {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .testimonials-unique-star-rating {
            display: flex;
            margin-bottom: 20px;
        }

        .testimonials-unique-star-rating i {
            color: #fbbf24;
            font-size: 1.2rem;
            margin-right: 3px;
        }

        .testimonials-unique-reviewer-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1e293b;
            margin-top: auto;
        }

        /* Navigation buttons */
        .testimonials-unique-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #3b82f6;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .testimonials-unique-nav-btn:hover {
            background-color: #3b82f6;
            color: white;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        .testimonials-unique-prev-btn {
            left: 0;
        }

        .testimonials-unique-next-btn {
            right: 0;
        }

        /* Dots indicator */
        .testimonials-unique-dots-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .testimonials-unique-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonials-unique-dot.testimonials-unique-active {
            background-color: #3b82f6;
            transform: scale(1.3);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .testimonials-unique-card {
                flex: 0 0 50%;
            }
            
            .testimonials-unique-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .testimonials-unique-card {
                flex: 0 0 100%;
            }
            
            .testimonials-unique-nav-btn {
                width: 42px;
                height: 42px;
                font-size: 1rem;
            }
            
            .testimonials-unique-title {
                font-size: 1.8rem;
            }
            
            .testimonials-unique-subtitle {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .testimonials-unique-container {
                padding: 40px 15px;
            }
            
            .testimonials-unique-card-inner {
                padding: 25px 20px;
            }
            
            .testimonials-unique-review-text {
                font-size: 1rem;
            }
        }

        /* Focus animation for center card */
        @keyframes testimonials-unique-pulse {
            0% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); }
            50% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2); }
            100% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); }
        }

        .testimonials-unique-card.testimonials-unique-active .testimonials-unique-card-inner {
            animation: testimonials-unique-pulse 4s infinite;
        }
/* testimonial end */

/* google map and form start */
 
    /* === LIGHT THEME CONTACT SECTION === */
.contact-section {
  width: 100%;
  padding: 80px 40px;
  background: linear-gradient(135deg, #cce7ff, #e6f2ff); /* sky gradient */
  color: #1a1a1a;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT MAP */
/* .contact-left {
  flex: 1 1 45%;
  min-height: auto;
  border-radius: 15px;
  overflow: hidden;
 
} */
 .contact-left {
  flex: 1 1 45%;
  min-height: auto;
  border-radius: 15px;
  overflow: hidden;
}

.contact-left iframe {
  width: 100% !important;
  height: 300px; /* adjust as needed */
  border: 0;
  display: block;   /* removes inline gap */
}

@media (max-width: 600px) {
    .contact-left iframe {
       width: 100%;
    max-width: 100%;
    overflow: hidden;
    }
}

/* RIGHT FORM */
.contact-right {
  flex: 1 1 50%;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-right .form-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffd700; /* golden accent */
  text-align: center;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.6);
}

/* FORM ELEMENTS */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  background: #f5faff;
  color: #1a1a1a;
  font-size: 16px;
  transition: 0.3s;
}

.form-group input::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #ffd700;
  background: #fffbe6;
}

/* SUBMIT BUTTON */
.btn-buy {
  display: block;
  width: 100%;
  padding: 15px 0;
  background: linear-gradient(45deg, #ffd700, #ffb700);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
  transition: 0.4s;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: glowBtn 1.5s infinite alternate;
}

.btn-buy:hover {
  box-shadow: 0 0 35px rgba(255, 215, 0, 1);
  transform: translateY(-2px);
}

/* GLOW ANIMATION */
@keyframes glowBtn {
  0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 35px rgba(255, 215, 0, 1); }
  100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
}

/* RESPONSIVE */
@media(max-width: 991px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-left, .contact-right {
    flex: 1 1 100%;
  }
  .contact-right .form-title {
    font-size: 24px;
  }
}

 /* google map and form end */


 /* footer start */

 /* faq start */
    /* === FAQ SECTION BASE === */
.faq-section {
  width: 100%;
  padding: 80px 40px;
  background: #f0f8ff; /* light professional background */
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #1a1a1a;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  color: #063b77;
  margin-bottom: 50px;
  /* text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); */
}

/* FAQ ITEM */
.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  background: #ffffff;
  transition: 0.3s;
}

.faq-question {
  width: 100%;
  padding: 18px 25px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  background: #e6f2ff;
  border: none;
  cursor: pointer;
  position: relative;
  color: #1a1a1a;
  transition: 0.3s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background: #ffffff;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* adjust as needed */
  padding: 15px 25px 25px 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}
  /* faq end */


  /* footer start */
    
   /* footer */
.main-footer {
    background: #006EA6;
    padding: 60px 7% 25px;
    font-family: "Segoe UI", sans-serif;
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #FCAF1B;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #FCAF1B;
}

.footer-col p a {
    color: white;
    text-decoration: none;
}

.social-icons a {
    margin-top: 10px;
    display: inline-block;
    margin-right:12px;
    font-size: 20px;
    color: #FCAF1B;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #FCAF1B;
}

/* Map Column */
.map-col .map-img {
    width: 100%;
    max-width: 100%;
    height: 250px;
    border-radius: 12px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
    transition: 0.3s;
}

.map-col .map-img:hover {
    transform: scale(1.03);
}
.footer-icon {
    margin-top: 12px;
    margin-right: 8px;
    color: white;
    font-size: 16px;
}

/* Bottom Footer */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #d9e6ff;
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .map-img {
    width: 300px;
    height: 250px;}
    
    
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .map-col .map-img {
        max-height: 220px;
    }
     .map-img {
    width: 300px;
    height: 250px;}
    
}

/* company  statics */
 .stats-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 20px;
            background: linear-gradient(135deg, #015A86 0%, #015A86 50%, #015A86 100%);
            overflow: hidden;
        }

        /* Animated background particles */
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
            animation: particleFloat 20s ease-in-out infinite;
        }

        @keyframes particleFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        /* Main container */
        .stats-container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            width: 100%;
        }

        /* Section header */
        .stats-header {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInDown 1s ease-out;
        }

        .stats-subtitle {
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #667eea;
            margin-bottom: 15px;
        }

        .stats-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .stats-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ============================================
           STATISTICS GRID
           ============================================ */
        .stats-grid {
          
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            padding: 20px;
        }

        /* Individual stat card with 3D effect */
        .stat-card {
          background-color: #feffffde;
            position: relative;
            /* background: rgba(255, 255, 255, 0.03); */
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 50px 40px;
            border: 3px solid gold;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out backwards;
        }

        /* Stagger animation delay for each card */
        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }
        .stat-card:nth-child(4) { animation-delay: 0.4s; }

        /* 3D hover effect */
        .stat-card:hover {
            transform: perspective(1000px) rotateX(-5deg) rotateY(5deg) translateY(-10px);
            border-color: rgba(102, 126, 234, 0.5);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(102, 126, 234, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        /* Animated gradient background on hover */
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        /* Animated border shine effect */
        .stat-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%
            );
            transform: rotate(45deg);
            animation: shine 3s ease-in-out infinite;
        }

        @keyframes shine {
            0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* Icon container with 3D depth */
        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            box-shadow: 
                0 10px 30px rgba(102, 126, 234, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: translateZ(20px);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .stat-card:hover .stat-icon {
            transform: translateZ(40px) rotateY(360deg);
            box-shadow: 
                0 20px 50px rgba(102, 126, 234, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        /* Number counter with glow effect */
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #015A86;
            line-height: 1;
            margin-bottom: 15px;
            text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
            transform: translateZ(30px);
            transition: all 0.5s ease;
        }

        .stat-card:hover .stat-number {
            transform: translateZ(50px) scale(1.05);
            text-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
        }

        /* Suffix styling (like +, K, etc.) */
        .stat-suffix {
            font-size: 2.5rem;
            color: #667eea;
            margin-left: 5px;
        }

        /* Label text */
        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: gold;
            text-transform: uppercase;
            letter-spacing: 2px;
            transform: translateZ(20px);
            transition: all 0.5s ease;
        }

        .stat-card:hover .stat-label {
            color: #015A86;
            transform: translateZ(35px);
        }

        /* Description text */
        .stat-description {
            font-size: 0.9rem;
            color: #015A86;
            margin-top: 10px;
            line-height: 1.6;
            transform: translateZ(15px);
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes countUp {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        
        /* Tablet */
        @media (max-width: 1024px) {
            .stats-title {
                font-size: 2.8rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .stat-number {
                font-size: 3rem;
            }

            .stat-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .stats-section {
                padding: 60px 15px;
            }

            .stats-header {
                margin-bottom: 50px;
            }

            .stats-title {
                font-size: 2.2rem;
            }

            .stats-description {
                font-size: 1rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 10px;
            }

            .stat-card {
                padding: 40px 30px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-suffix {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 1rem;
            }

            .stat-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
                margin-bottom: 25px;
            }

            /* Disable 3D effects on mobile for better performance */
            .stat-card:hover {
                transform: perspective(1000px) translateY(-5px);
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            .stats-title {
                font-size: 1.8rem;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .stat-card {
                padding: 35px 25px;
            }
        }

        /* end statics */

        /* whats app */
        .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
   
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    transition: 0.2s ease-in-out;
}
/* end whats app */


/* load google map*/

/* for lead form */
/* ===== SECTION ===== */
.tvx-query-section{
    padding:80px 18px;
    background:
    linear-gradient(135deg,#0d2d62 0%, #163f82 45%, #f8f4e7 45%, #fff8de 100%);
    font-family:Arial, Helvetica, sans-serif;
}

.tvx-query-wrap{
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:40px;
    align-items:center;
}

/* LEFT */
.tvx-query-left{
    color:#fff;
}

.tvx-mini-badge{
    display:inline-block;
    padding:8px 16px;
    background:#f2c100;
    color:#0d2d62;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.tvx-main-title{
    font-size:54px;
    line-height:1.15;
    margin:0 0 18px;
    font-weight:800;
    color:#ffffff;
}

.tvx-main-title span{
    color:#ffd54a;
}

.tvx-sub-text{
    font-size:20px;
    line-height:1.8;
    color:#dbe8ff;
    margin-bottom:34px;
    max-width:700px;
}


/* POINTS */
.tvx-points-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}


.tvx-point-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:18px;
    color:#020335;
    background:rgba(255, 255, 255, 0.856);
    border:1px solid rgba(255,255,255,.10);
    padding:14px 16px;
    border-radius:12px;
    backdrop-filter:blur(6px);
}
.tvx-check{
    color:#4fc3ff;
    font-weight:800;
    font-size:20px;
    line-height:1;
    margin-top:2px;
}

/* RIGHT FORM */
.tvx-form-box{
    background:#ffffff;
    border-radius:18px;
    padding:34px 28px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.tvx-form-title{
    margin:0 0 8px;
    font-size:34px;
    color:#0d2d62;
    font-weight:800;
}

.tvx-form-sub{
    margin:0 0 24px;
    font-size:16px;
    color:#555;
}

/* FORM */
.tvx-form-group{
    margin-bottom:18px;
}

.tvx-form-group label{
    display:block;
    margin-bottom:7px;
    font-size:14px;
    color:#0d2d62;
    font-weight:700;
}

.tvx-form-group input,
.tvx-form-group select{
    width:100%;
    height:52px;
    border:1px solid #d7dfef;
    border-radius:10px;
    padding:0 14px;
    font-size:15px;
    outline:none;
    transition:.3s ease;
    background:#fff;
}

.tvx-form-group input:focus,
.tvx-form-group select:focus{
    border-color:#1e63d8;
    box-shadow:0 0 0 4px rgba(30,99,216,.08);
}

/* BUTTON */
.tvx-submit-btn{
    width:100%;
    border:none;
    border-radius:12px;
    background:linear-gradient(90deg,#f5b400,#ffd95a);
    color:#111;
    height:56px;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.3s ease;
}

.tvx-submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 25px rgba(245,180,0,.25);
}

.tvx-btn-arrow{
    font-size:20px;
}

/* TABLET */
@media(max-width:1050px){

.tvx-query-wrap{
    grid-template-columns:1fr;
}

.tvx-query-left{
    text-align:center;
}

.tvx-sub-text{
    margin-left:auto;
    margin-right:auto;
}

}

/* MOBILE */
/* @media(max-width:700px){

.tvx-query-section{
    padding:60px 14px;
    background:
    linear-gradient(180deg,#0d2d62 0%, #173f82 52%, #fff8de 52%, #ffffff 100%);
}

.tvx-main-title{
    font-size:34px;
}

.tvx-sub-text{
    font-size:16px;
    line-height:1.7;
}

.tvx-points-grid{
    grid-template-columns:1fr;
}

.tvx-point-item{
    font-size:15px;
}

.tvx-form-box{
    padding:24px 18px;
}

.tvx-form-title{
    font-size:28px;
}

} */
/* REPLACE ONLY THIS MOBILE CSS BLOCK */

@media(max-width:700px){

.tvx-query-section{
    padding:60px 14px;
    background:
    linear-gradient(180deg,#0d2d62 0%, #173f82 52%, #fff8de 52%, #ffffff 100%);
}

.tvx-main-title{
    font-size:34px;
}

.tvx-sub-text{
    font-size:16px;
    line-height:1.7;
}

/* UPDATED: TWO COLUMN POINT ITEMS ON MOBILE */
.tvx-points-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.tvx-point-item{
    font-size:14px;
    padding:12px 10px;
    line-height:1.45;
}

.tvx-check{
    font-size:16px;
    margin-top:1px;
}

.tvx-form-box{
    padding:24px 18px;
}

.tvx-form-title{
    font-size:28px;
}

}

/* LARGE SCREEN */
@media(min-width:1600px){

.tvx-main-title{
    font-size:68px;
}

.tvx-sub-text{
    font-size:23px;
}


}

/* hero . css */
.nxh-hero-wrap{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 20px;
    font-family:Arial, Helvetica, sans-serif;
    background:
    linear-gradient(135deg,#061321 0%,#0a2340 35%,#0d355d 70%,#081523 100%);
}

/* Decorative Orbs */
.nxh-bg-orb{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.28;
    z-index:1;
}

.nxh-orb-1{
    width:340px;
    height:340px;
    background:#00bfff;
    top:-100px;
    left:-90px;
}

.nxh-orb-2{
    width:340px;
    height:340px;
    background:#ffc107;
    right:-100px;
    bottom:-100px;
}

/* Subtle Grid */
.nxh-grid-overlay{
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size:40px 40px;
    z-index:1;
}

/* Container */
.nxh-hero-container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1000px;
}

.nxh-hero-content{
    text-align:center;
    max-width:900px;
    margin:auto;
}

/* Badge */
.nxh-mini-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    color:#ffd65c;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    margin-bottom:28px;
    letter-spacing:1px;
}

/* Heading */
.nxh-main-heading{
    margin:0 0 20px;
    font-size:68px;
    line-height:1.03;
    font-weight:700;
    color:#ffffff;
    letter-spacing:-1px;
}

.nxh-main-heading span{
    color:#ffd65c;
}

.nxh-sub-text{
    max-width:900px;
    margin:0 auto 36px;
    color:#d7e7f7;
    font-size:22px;
    line-height:1.8;
}

/* Features */
.nxh-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin-bottom:40px;
}

.nxh-feature-box{
    padding:15px 14px;
    border-radius:14px;
    color:#fff;
    font-size:15px;
    font-weight:600;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.10);
    backdrop-filter:blur(8px);
    transition:all .3s ease;
    /* cursor:pointer; */
}

.nxh-feature-box:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,0.14);
    border-color:#ffd65c;
    box-shadow:0 12px 25px rgba(0,0,0,0.20);
}

/* Buttons */
.nxh-btn-area{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.nxh-btn-primary,
.nxh-btn-secondary{
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:.3s ease;
}

.nxh-btn-primary{
    background:linear-gradient(90deg,#ffd65c,#f4b400);
    color:#111;
    box-shadow:0 12px 25px rgba(255,193,7,.25);
}

.nxh-btn-primary:hover{
    transform:translateY(-4px);
}

.nxh-btn-secondary{
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.06);
}

.nxh-btn-secondary:hover{
    background:#fff;
    color:#0b2440;
}

/* Tablet */
@media(max-width:992px){
.nxh-main-heading{
    font-size:52px;
}
.nxh-sub-text{
    font-size:18px;
}
.nxh-feature-grid{
    grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */
@media(max-width:600px){

.nxh-hero-wrap{
    min-height:auto;
    padding:75px 16px;
}

.nxh-main-heading{
    font-size:36px;
    line-height:1.18;
}

.nxh-sub-text{
    font-size:16px;
    line-height:1.7;
}

.nxh-feature-grid{
    grid-template-columns:repeat(2,1fr); 
    gap:10px;
}

.nxh-feature-box{
    font-size:14px;
    padding:14px 10px;
}

.nxh-btn-primary,
.nxh-btn-secondary{
    width:100%;
    text-align:center;
}
}

/* Big Screens */
@media(min-width:1600px){
.nxh-main-heading{
    font-size:82px;
}
.nxh-sub-text{
    font-size:24px;
}
}
.nxh-hero-content{
    text-align:center;
    max-width:1150px;
    margin:auto;
}
/* end hero */
/* CTA */
/* ===== SECTION ===== */
.trx-cta-section{
    padding:40px 18px;
    background:linear-gradient(135deg,#0d2d62 0%, #163f82 55%, #0f2b58 100%);
    font-family:Arial, Helvetica, sans-serif;
}

/* WRAP */
.trx-cta-wrap{
    max-width:1380px;
    margin:auto;
    display:grid;
    grid-template-columns:70% 30%;
    gap:30px;
    align-items:center;
    padding:34px 38px;
    border-radius:18px;
    background:
    linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.16);
}

/* LEFT */
.trx-mini-badge{
    display:inline-block;
    padding:8px 15px;
    border-radius:30px;
    background:#f6c400;
    color:#0d2d62;
    font-size:13px;
    font-weight:800;
    margin-bottom:14px;
}

.trx-main-heading{
    margin:0;
    color:#ffffff;
    font-size:40px;
    line-height:1.3;
    font-weight:800;
    max-width:900px;
}

.trx-main-heading span{
    color:#ffd95a;
}

/* RIGHT */
.trx-cta-right{
    text-align:right;
}

.trx-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:250px;
    height:64px;
    padding:0 28px;
    border-radius:60px;
    text-decoration:none;
    font-size:20px;
    font-weight:800;
    color:#111;
    background:linear-gradient(90deg,#f6c400,#ffd95a);
    box-shadow:0 14px 28px rgba(246,196,0,.28);
    transition:all .3s ease;
}

.trx-cta-btn:hover{
    transform:translateY(-4px) scale(1.02);
    box-shadow:0 20px 34px rgba(246,196,0,.35);
}

.trx-arrow{
    font-size:22px;
}

/* TABLET */
@media(max-width:1024px){

.trx-cta-wrap{
    grid-template-columns:1fr;
    text-align:center;
}

.trx-cta-right{
    text-align:center;
}

.trx-main-heading{
    font-size:32px;
    margin:auto;
}

}

/* MOBILE */
@media(max-width:700px){

.trx-cta-section{
    padding:30px 14px;
}

.trx-cta-wrap{
    padding:24px 18px;
    gap:20px;
}

.trx-main-heading{
    font-size:24px;
    line-height:1.45;
}

.trx-cta-btn{
    width:100%;
    min-width:100%;
    height:56px;
    font-size:18px;
}

}

/* LARGE SCREEN */
@media(min-width:1600px){

.trx-main-heading{
    font-size:48px;
}

}
