    body{
        padding-top:75px;
        background:#f5f7fa;
        font-family:'Segoe UI',sans-serif;
    }

    .misionvision {
        flex: 0 0 auto;
        width: 100%;
        margin-left:25px;
    }

    .product-item,
    .gallery-item{
        display:block;
        overflow:hidden;
        border-radius:10px;
    }

    .product-item img,
    .gallery-item img{
        transition:all .4s ease;
        cursor:pointer;
    }

    .product-item:hover img,
    .gallery-item:hover img{
        transform:scale(1.08);
    }
    
    .gallery-item img{ 
        width:100%; 
        height:250px; 
        object-fit:cover; 
        transition:0.4s; 
    } 
    
    .gallery-item img:hover{ 
        transform:scale(1.05); 
    } 

    .gallery-img{
        transition:.4s;
        border-radius:10px;
    }

    .gallery-img:hover{
        transform:scale(1.05);
    }

    .gallery img{
        cursor:pointer;
        border-radius:10px;
        transition:.3s;
    }

    .gallery img:hover{
        transform:scale(1.05);
    }
    
    @keyframes scrollGallery{ 
        from{ 
            transform:translateX(0); 
        } 
        to{ 
            transform:translateX(-50%); 
        } 
    }

    .site-logo{
        height:55px;
        width:auto;
    }

    /* card */
    .card{
        transition:.3s;
        border:none;
        box-shadow:0 0 15px rgba(0,0,0,.08);
    }
 
    .card:hover{
        transform:translateY(-5px);
        box-shadow:0 15px 30px rgba(0,0,0,.15);
    }

    /* banner */
  .hero-banner{
    height:450px;
    /* background-image: url("/assets/img/benner/Benner-bg.png"); */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
    .hero-overlay{
        background:rgba(0,0,0,.55);
        height:100%;
        color:white;
        display:flex;
        align-items:center;
    }

    .hero{
        min-height:380px;
        background:linear-gradient(135deg,#0d6efd,#084298);
        /* background:#fff; */
        color:white;
        display:flex;
        align-items:center;

        margin-top:60px;        
        border-radius:25px;
        padding:60px;
        text-align:center;
        box-shadow:
        0 10px 30px rgba(0,0,0,.08);
    }

    .hero1{
        padding:80px 0 60px; 
        background-color: #0A3D91;
    }    

    .hero h1{
        font-size:50px;
        font-weight:700;
    }

    .hero p{
        font-size:18px;
        color:#666;
        margin-top:15px;
    }

    .hero .btn{
        margin-top:20px;
        padding:12px 30px;
        border-radius:50px;
    }   

    .company-logo{
        width:130px;
        height:130px;
        border-radius:50%;
        border:5px solid white;
    }

    .section1{
        padding:1px 0;
    }
    .section2{
        padding-top:100px;
        padding-bottom:60px;
        padding-left:10px;
        padding-right:10px;
    }
    .section3{
        padding-top:50px;
        padding-bottom:10px;
        padding-left:10px;
        padding-right:10px;
    }
    .section4{
       padding-top:50px;
        padding-bottom:60px;
        padding-left:10px;
        padding-right:10px;
    }
  /* ========================== GALLERY SECTION ========================== */ .section5{ padding:50px 10px 60px; } /* Gallery Wrapper */ .gallery-marquee{ overflow:hidden; position:relative; border-radius:25px; } /* Track */ .gallery-track{ display:flex; gap:20px; width:max-content; animation:galleryScroll 40s linear infinite; } .gallery-marquee:hover .gallery-track{ animation-play-state:paused; } /* Item */ .gallery-item{ position:relative; display:block; overflow:hidden; border-radius:20px; flex-shrink:0; background:rgba(255,255,255,.08); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.08); transition:.4s; } /* Image */ .gallery-item img{ width:280px; height:280px; object-fit:cover; border-radius:20px; transition:.6s; } /* Hover Zoom */ .gallery-item:hover img{ transform:scale(1.12); } /* Premium Glow */ .gallery-item:hover{ transform:translateY(-8px); box-shadow:0 15px 35px rgba(0,0,0,.25); } /* Shine Effect */ .gallery-item::before{ content:''; position:absolute; top:0; left:-120%; width:60%; height:100%; background:linear-gradient( 90deg, transparent, rgba(255,255,255,.25), transparent ); transition:.8s; z-index:2; } .gallery-item:hover::before{ left:150%; } /* Gradient Fade Left */ .gallery-marquee::before{ content:''; position:absolute; left:0; top:0; width:120px; height:100%; z-index:5; background:linear-gradient( to right, #0f172a, transparent ); } /* Gradient Fade Right */ .gallery-marquee::after{ content:''; position:absolute; right:0; top:0; width:120px; height:100%; z-index:5; background:linear-gradient( to left, #0f172a, transparent ); } /* Animation */ @keyframes galleryScroll{ 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } } /* Mobile */ @media(max-width:768px){ .gallery-item img{ width:220px; height:220px; } }
    .section6{
        padding-top:50px;
        padding-bottom:60px;
        padding-left:10px;
        padding-right:10px;
    }
    .section7{
        padding-top:50px;
        padding-bottom:60px;
        padding-left:10px;
        padding-right:10px;
    }
    .section8{
        padding-top:50px;
        padding-bottom:60px;
        padding-left:10px;
        padding-right:10px;
    }
   /* Section */ .section9{ padding:50px 10px 60px; } /* Main Cards */ .section9 .card{ background:rgba(255,255,255,.08) !important; backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.08) !important; border-radius:20px; transition:.35s; color:#fff; } .section9 .card:hover{ transform:translateY(-5px); box-shadow:0 15px 35px rgba(0,0,0,.25); } /* Form Fields */ .section9 .form-control{ background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.10); color:#fff; border-radius:12px; } .section9 .form-control::placeholder{ color:#cbd5e1; } .section9 .form-control:focus{ background:rgba(255,255,255,.10); color:#fff; border-color:#60a5fa; box-shadow:none; } /* Inquiry Points */ .section9 .fa-check-circle{ color:#22c55e; } /* Rating Number */ .section9 .display-4{ color:#fff; } /* Progress Bars */ .section9 .progress{ height:10px; background:rgba(255,255,255,.08); } .section9 .progress-bar{ border-radius:20px; } /* Reviews Cards */ .section9 .bg-light{ background:rgba(255,255,255,.05) !important; border:1px solid rgba(255,255,255,.08); border-radius:15px; } .section9 .bg-light h6{ color:#fff; } .section9 .bg-light p{ color:#cbd5e1; } /* Text */ .section9 p, .section9 span, .section9 div, .section9 h5, .section9 h6{ color:#fff; } /* Buttons */ .section9 .btn-primary{ background:linear-gradient(135deg,#2563eb,#4f46e5); border:none; border-radius:30px; padding:10px 22px; font-weight:600; } .section9 .btn-primary:hover{ background:linear-gradient(135deg,#4f46e5,#2563eb); } /* HR */ .section9 hr{ border-color:rgba(255,255,255,.10); }
   /* ===================================== LOCATION SECTION ===================================== */ .section10{ padding:50px 10px 60px; } /* ===================================== CONTACT CARD ===================================== */ .contact-card{ background:rgba(255,255,255,.08); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.08); border-radius:20px; overflow:hidden; transition:.35s; height:100%; } .contact-card:hover{ transform:translateY(-5px); box-shadow:0 15px 35px rgba(0,0,0,.25); } /* ===================================== CONTACT HEADER ===================================== */ .contact-header{ background:linear-gradient(135deg,#2563eb,#4f46e5); padding:22px; text-align:center; position:relative; } .contact-header::after{ content:''; position:absolute; bottom:0; left:0; width:100%; height:1px; background:rgba(255,255,255,.15); } .contact-header h4{ color:#fff; font-weight:700; margin:0; letter-spacing:.5px; } /* ===================================== CONTACT BODY ===================================== */ .contact-body{ padding:25px; color:#fff; } .contact-item{ display:flex; align-items:flex-start; gap:12px; margin-bottom:18px; color:#cbd5e1; font-size:15px; } .contact-item i{ color:#60a5fa; min-width:20px; margin-top:3px; font-size:16px; } /* ===================================== INPUTS ===================================== */ .contact-body label{ color:#fff; font-weight:600; } .contact-body .form-control{ background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.10); color:#fff; border-radius:12px; padding:12px 15px; } .contact-body .form-control::placeholder{ color:#cbd5e1; } .contact-body .form-control:focus{ background:rgba(255,255,255,.10); color:#fff; border-color:#60a5fa; box-shadow:none; } /* ===================================== BUTTON ===================================== */ .contact-body .btn-primary{ background:linear-gradient(135deg,#2563eb,#4f46e5); border:none; border-radius:30px; padding:12px 20px; font-weight:600; transition:.3s; } .contact-body .btn-primary:hover{ transform:translateY(-2px); } /* ===================================== MAP CARD ===================================== */ .map-card{ background:rgba(255,255,255,.08); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.08); border-radius:20px; overflow:hidden; padding:10px; transition:.35s; height:100%; } .map-card:hover{ box-shadow:0 15px 35px rgba(0,0,0,.25); } /* ===================================== MAP ===================================== */ .map-card iframe{ border-radius:15px; } /* ===================================== DIVIDER ===================================== */ .contact-body hr{ border-color:rgba(255,255,255,.10); }
    .section-title{
        text-align:center;
        margin-bottom:20px;
         font-size:30px;
        font-weight:700;
    }
  
    .logo-text{
        position:relative;
    }   

    .logo-text::after{
        content:'';
        position:absolute;
        left:0;
        bottom:-10px;
        width:100%;
        height:4px;
        background:
        linear-gradient(
            to right,
            #FF9933 33%,
            #FFFFFF 33% 66%,
            #138808 66%
        );
        border-radius:20px;
    }   

    .search-box{
        background:white;
        border-radius:8px;
        height:50px;
        padding-left:25px;
        padding:25px;
        box-shadow:0 2px 12px rgba(0,0,0,.12)
    }

    .category-card{
        transition:.3s;
        border:none;
    }

    .category-card:hover{
        transform:translateY(-5px);
    }

    .company-card{
        transition:.3s;
    }

    .company-card:hover{
        transform:translateY(-5px);
    }

    /* Stats */
    .stats{ background:rgba(255,255,255,.08); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.08); margin-top:-50px; position:relative; z-index:10; border-radius:20px; box-shadow:0 15px 35px rgba(0,0,0,.20); padding:30px 20px; } .stat-box{ text-align:center; color:#fff; position:relative; } /* Divider */ .stat-box:not(:last-child)::after{ content:''; position:absolute; right:0; top:15%; width:1px; height:70%; background:rgba(255,255,255,.10); } .stat-title{ color:#60a5fa; font-weight:700; margin-bottom:8px; font-size:15px; } .stat-box{ font-size:16px; font-weight:500; } @media(max-width:768px){ .stats{ margin-top:20px; padding:20px; } .stat-box{ margin-bottom:15px; } .stat-box::after{ display:none; } }
/* ========================== NAVBAR ========================== */ .navbar{ background:rgba(15,23,42,.92)!important; backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); padding:12px 0; border-bottom:1px solid rgba(255,255,255,.08); } /* Logo */ .logo-wrapper{ display:flex; align-items:center; text-decoration:none; } .site-logo{ height:50px; width:auto; } .logo-text{ color:#fff; font-size:18px; font-weight:700; margin-left:10px; letter-spacing:.5px; } /* Menu */ .navbar-nav{ gap:8px; } .navbar-nav .nav-link{ color:#e2e8f0!important; font-weight:500; padding:10px 18px!important; border-radius:10px; position:relative; transition:.3s; } /* Hover Effect */ .navbar-nav .nav-link:hover{ color:#fff!important; background:rgba(255,255,255,.08); } /* Active Underline */ .navbar-nav .nav-link::after{ content:''; position:absolute; left:15px; bottom:6px; width:0; height:2px; background:#60a5fa; transition:.3s; } .navbar-nav .nav-link:hover::after{ width:calc(100% - 30px); } /* ========================== LANGUAGE DROPDOWN ========================== */ .language-dropdown{ position:relative; display:flex; align-items:center; margin-left:15px; } .language-dropdown select{ appearance:none; border:none; outline:none; cursor:pointer; background:rgba(255,255,255,.08); color:#fff; padding:10px 42px 10px 42px; border-radius:12px; font-size:14px; font-weight:500; border:1px solid rgba(255,255,255,.08); } .language-dropdown select:hover{ background:rgba(255,255,255,.12); } .globe{ position:absolute; left:15px; color:#60a5fa; pointer-events:none; } .arrow{ position:absolute; right:15px; color:#cbd5e1; pointer-events:none; font-size:12px; } /* Mobile */ @media(max-width:991px){ .logo-text{ display:none; } .language-dropdown{ margin-top:15px; margin-left:0; } .navbar-nav{ margin-top:15px; } .navbar-nav .nav-link{ margin-bottom:5px; } }
    /* Navbar */
    /* .navbar{
        background:#0f172a;
        padding:15px 0;
    }

    .navbar-brand{
        color:#fff !important;
        font-size:28px;
        font-weight:600;
    }

    .nav-link{
        color:#fff !important;
        margin-left:20px;
    }

    .nav-link:hover{
        color:#38bdf8 !important;
    } */

    .book-cover{
        display:inline-block;
        perspective:1500px;
    }

    .book-cover img{
        width:350px;
        border-radius:15px;
        box-shadow:0 20px 40px rgba(0,0,0,.25);
        transition:.5s;
    }

    .book-cover:hover img{
        transform:rotateY(-20deg) scale(1.05);
    }

    .video-wrapper{
        position:relative;
    }

    .video-wrapper img{
        border-radius:15px;
    }

    .play-btn{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        width:90px;
        height:90px;
        border:none;
        border-radius:50%;
        background:#0d6efd;
        color:#fff;
        font-size:40px;
        cursor:pointer;
        box-shadow:0 10px 25px rgba(0,0,0,.25);
    }

    .play-btn:hover{
        transform:translate(-50%,-50%) scale(1.1);
    }    

    .modal-content{
        background:#111;
        border-radius:15px;
    }
    
    .btn-close{
        filter:invert(1);
    }

    .modal-header{
        background:#0d6efd;
        color:#fff;
    }
    
    .modal-header .btn-close{
        filter:invert(1);
    }

    .book-page{
        position:relative;
        height:70vh;
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .book-page img{
        max-width:90%;
        max-height:90%;
        border-radius:10px;
        background:#fff;
        padding:10px;
        box-shadow:0 0 30px rgba(0,0,0,.4);
    }

    .arrow-btn{
        position:absolute;
        top:50%;
        transform:translateY(-50%);
        width:60px;
        height:60px;
        border:none;
        border-radius:50%;
        background:rgba(0,0,0,.7);
        color:#fff;
        font-size:30px;
        cursor:pointer;
        z-index:999;
    }

    .arrow-btn:hover{
        background:#0d6efd;
    }

    .left-arrow{
        left:30px;
    }

    .right-arrow{
        right:30px;
    }

    .page-counter{
        color:#fff;
        text-align:center;
        padding:15px;
        font-size:18px;
    }

   .section3{ padding:50px 10px 10px; } /* Product Card */ .product-card{ background:rgba(255,255,255,.08); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.08); border-radius:20px; overflow:hidden; transition:all .35s ease; height:100%; } .product-card:hover{ transform:translateY(-8px); box-shadow:0 15px 35px rgba(0,0,0,.25); border-color:rgba(255,255,255,.15); } /* Product Image */ .product-image{ position:relative; overflow:hidden; } .product-image img{ width:100%; height:250px; object-fit:cover; transition:.5s; } .product-card:hover .product-image img{ transform:scale(1.08); } /* Overlay */ .product-overlay{ position:absolute; inset:0; background:rgba(15,23,42,.75); display:flex; flex-direction:column; justify-content:center; align-items:center; gap:10px; opacity:0; transition:.35s; } .product-card:hover .product-overlay{ opacity:1; } /* Buttons */ .product-overlay .btn{ border-radius:30px; padding:8px 18px; font-size:14px; font-weight:600; } /* Content */ .product-content{ padding:18px; text-align:center; } .catalog-link{ display:block; color:#fff; font-size:18px; font-weight:600; text-decoration:none; margin-bottom:8px; transition:.3s; } .catalog-link:hover{ color:#60a5fa; } .product-content p{ color:#cbd5e1; margin-bottom:10px; font-size:14px; } /* Price */ .price{ color:#34d399; font-size:22px; font-weight:700; }

    .swiper{
        padding:20px 50px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        color:#0d6efd;
    }

    .catalog-link{
        display:inline-flex;
        align-items:center;
        gap:10px;
        text-decoration:none;
        color:#0d6efd;
        font-size:18px;
        font-weight:700;
        position:relative;
        transition:.3s;
    }

    .catalog-link::after{
        content:'';
        position:absolute;
        left:0;
        bottom:-5px;
        width:0;
        height:3px;
        background:#0d6efd;
        transition:.3s;
    }

    .catalog-link:hover{
        color:#084298;
    }

    .catalog-link:hover::after{
        width:100%;
    }

    .catalog-link i{
        font-size:10px;
    }

      .section-title p{
        color:#f5f7fa;
        font-size:18px;
    }

    /* Services Section */ .section4{ padding:50px 10px 60px; } .services-section{ background:transparent; } /* Service Card */ .service-card{ background:rgba(255,255,255,.08); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.08); border-radius:20px; padding:35px 25px; text-align:center; height:100%; transition:.35s ease; overflow:hidden; position:relative; } .service-card:hover{ transform:translateY(-8px); box-shadow:0 15px 35px rgba(0,0,0,.25); border-color:rgba(255,255,255,.15); } /* Icon */ .service-icon{ width:85px; height:85px; margin:auto; border-radius:50%; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#2563eb,#06b6d4); color:#fff; font-size:34px; margin-bottom:22px; box-shadow:0 10px 25px rgba(37,99,235,.30); } /* Title */ .service-card h4{ color:#fff; font-weight:700; margin-bottom:15px; font-size:22px; } /* Description */ .service-card p{ color:#cbd5e1; min-height:75px; line-height:1.7; margin-bottom:20px; } /* Button */ .service-btn{ border-radius:30px; padding:10px 22px; font-weight:600; border:none; background:linear-gradient(135deg,#2563eb,#4f46e5); } .service-btn:hover{ background:linear-gradient(135deg,#4f46e5,#2563eb); } /* Mobile */ @media(max-width:768px){ .service-card{ padding:25px 20px; } .service-icon{ width:75px; height:75px; font-size:28px; } }



    .section-title h2{
        font-size:45px;
        font-weight:800;
        color:#fff;
    }

       /* Documents Section */ .section8{ padding:50px 10px 60px; } /* Document Card */ .document-card{ background:rgba(255,255,255,.08); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.08); border-radius:20px; overflow:hidden; transition:.35s ease; height:100%; } .document-card:hover{ transform:translateY(-8px); box-shadow:0 15px 35px rgba(0,0,0,.25); border-color:rgba(255,255,255,.15); } /* Preview */ .document-preview{ height:220px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.03); border-bottom:1px solid rgba(255,255,255,.08); } .document-preview i{ font-size:75px; color:#ef4444; } /* Content */ .document-content{ padding:25px; text-align:center; } .document-content h5{ color:#fff; font-weight:700; margin-bottom:10px; } .document-content p{ color:#cbd5e1; min-height:50px; line-height:1.7; } /* Buttons */ .btn-group-custom{ display:flex; gap:10px; justify-content:center; margin-top:15px; } .btn-group-custom .btn{ border-radius:30px; padding:8px 18px; font-weight:600; } /* Different Icons Color */ .fa-file-pdf{ color:#ef4444; } .fa-book{ color:#f59e0b; } .fa-file-signature{ color:#22c55e; } .fa-award{ color:#60a5fa; }

    .btn-group-custom{
        display:flex;
        gap:10px;
        justify-content:center;
    }

    /* map Location
    .contact-section{
        padding:60px 0;
    }

    .contact-card{
        background:#fff;
        border-radius:15px;
        overflow:hidden;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
        height:100%;
    }

    .contact-header{
        background:linear-gradient(135deg,#0d6efd,#00b4ff);
        color:#fff;
        padding:20px;
    }

    .contact-body{
        padding:25px;
    }

    .contact-item{
        margin-bottom:15px;
    }

    .contact-item i{
        width:25px;
        color:#0d6efd;
    }

    .map-card{
        background:#fff;
        border-radius:15px;
        overflow:hidden;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

    .map-card iframe{
        display:block;
    } */
/* ========================== PREMIUM FOOTER ========================== */ .footer{ background:linear-gradient(135deg,#0f172a,#1e293b); color:#fff; padding:80px 0 25px; position:relative; overflow:hidden; } /* Top Glow Border */ .footer::before{ content:''; position:absolute; top:0; left:0; width:100%; height:1px; background:linear-gradient( 90deg, transparent, #60a5fa, transparent ); } /* Footer Title */ .footer-title{ font-size:34px; font-weight:700; margin-bottom:25px; color:#fff!important; position:relative; } /* Footer Text */ .footer-text{ color:#cbd5e1; text-align: justify; line-height:2; font-size:16px; } /* Headings */ .footer-heading{ font-size:24px; font-weight:700; margin-bottom:25px; color:#fff; position:relative; } .footer-heading::after{ content:''; position:absolute; left:0; bottom:-10px; width:50px; height:3px; border-radius:20px; background:#60a5fa; } /* Links */ .footer-links{ list-style:none; padding:0; margin:0; } .footer-links li{ margin-bottom:14px; } .footer-links a{ color:#cbd5e1!important; text-decoration:none; transition:.3s; } .footer-links a:hover{ color:#60a5fa!important; padding-left:8px; } /* Social Icons */ .social-links{ display:flex; flex-wrap:wrap; gap:12px; margin-top:25px; } .social-icon{ width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.08); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,.08); color:#fff; font-size:18px; text-decoration:none; transition:.35s; } .social-icon:hover{ background:#2563eb; color:#fff; transform:translateY(-5px); box-shadow:0 10px 25px rgba(37,99,235,.35); } /* Newsletter */ .newsletter-text{ color:#cbd5e1; font-size:15px; margin-bottom:18px; } .subscribe-box{ position:relative; } .subscribe-box input{ width:100%; height:52px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.08); border-radius:50px; color:#fff; outline:none; padding:0 60px 0 20px; } .subscribe-box input::placeholder{ color:#cbd5e1; } .subscribe-btn{ position:absolute; top:5px; right:5px; width:42px; height:42px; border:none; border-radius:50%; background:linear-gradient( 135deg, #2563eb, #4f46e5 ); color:#fff; } /* Divider */ .india-divider-premium{ position:relative; width:100%; height:3px; margin:60px 0 40px; border-radius:50px; background:linear-gradient( to right, #FF9933 0%, #FF9933 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #138808 66.66%, #138808 100% ); } .chakra{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:40px; height:40px; background:#1e293b; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#0A3D91; font-size:22px; box-shadow:0 0 15px rgba(255,255,255,.15); } /* Footer Bottom */ .footer-bottom{ border-top:1px solid rgba(255,255,255,.08); padding-top:25px; display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:15px; text-align:center; } .footer-bottom p{ margin:0; color:#cbd5e1; } .footer-bottom a{ color:#cbd5e1; text-decoration:none; transition:.3s; margin-left:20px; } .footer-bottom a:hover{ color:#60a5fa; } /* Responsive */ @media(max-width:768px){ .footer{ padding:60px 0 20px; } .footer-title{ font-size:28px; } .footer-heading{ font-size:22px; } .footer-bottom{ flex-direction:column; } .footer-bottom a{ margin:0 10px; } }
    /* Footer */
    /* .footer{    
        background:linear-gradient(135deg,#111827,#1f2937);      
        color:#fff;       
        padding:80px 0 25px;
    }
    .footer-section{
        background:#212529;
        padding:70px 0 25px;
        color:#ffffff;
    }    
    .footer-title{ 
        font-size:34px;
        font-weight:700; 
        margin-bottom:30px;
        color:#ffffff !important; 
        position:relative;
    }  
   
    .footer-links, 
    .footer-contact{ 
        list-style:none; 
        padding:0; 
    } 
   
    .footer-links li, 
    .footer-contact li{ 
        margin-bottom:12px; 
    } 

    .footer-contact li{
        color:#ffffff !important;
        list-style:none;
        margin-bottom:10px;
    }   
    
    .footer-links a{ 
        color:#6c757d;      
        text-decoration:none; 
        transition:.3s;
    } 

    .footer-links a:hover{ 
        color:#0d6efd;
         padding-left:8px; 
    } 

    .social-icon{
        position:relative;
        width:45px;
        height:45px;
        border:1px solid rgba(255,255,255,.25);
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        text-decoration:none;
        color:#ffffff;
        font-size:22px;
         transition:.35s ease;
    }

    .demo-content{
        min-height:500px;
        display:flex;
        justify-content:center;
        align-items:center;
        font-size:40px;
        font-weight:bold;
    } 
    .social-icon:hover{
        background:#fff;
        color:#0d6efd;
        transform:translateY(-6px);
    } 
    
    .footer-divider{ 
        border-color:rgba(255,255,255,.08);
        margin:60px 0 25px;
    } 
    
    .bottom-link{ 
        text-decoration:none; 
        color:#6c757d; 
    }
   
    .footer-links a,
    .bottom-link{
        color:#ffffff !important;
        text-decoration:none;
    }
    
    .bottom-link:hover{ 
        color:#0d6efd; 
    }

    .footer-links a:hover,
    .bottom-link:hover{
        color:#0d6efd !important;
    }
      
    .footer-section h3,
    .footer-section h4,
    .footer-section h5,
    .footer-section p{
        color:#ffffff !important;
    }

    .footer-heading{
        font-size:28px;
        font-weight:700;
        margin-bottom:25px;
        position:relative;
    }

    .footer-heading::after{
        content:'';
        width:55px;
        height:3px;
        background:#3b82f6;
        position:absolute;
        left:0;
        bottom:-10px;
    }

    .footer-text{
        color:#d1d5db;
        line-height:36px;
        font-size:20px;
    }

    .footer-links{
        list-style:none;
        padding:0;
    }

    .footer-links li{

        margin-bottom:18px;
    }

    .social-icons{
        margin-top:30px;
    }

    .social-icons a{
        width:55px;
        height:55px;
        display:inline-flex;
        justify-content:center;
        align-items:center;
        border-radius:50%;
        border:1px solid rgba(255,255,255,.3);
        color:#fff;
        margin-right:12px;
        transition:.3s;
        text-decoration:none;
    }

    .social-icons a:hover{
        background:#3b82f6;
        border-color:#3b82f6;
        transform:translateY(-6px);
    }

    .contact-info p{
        margin-bottom:20px;
        color:#fff;
        font-size:18px;
    }

    .contact-info i{
        width:30px;
        color:#3b82f6;
    }

    .footer-bottom{
        display:flex;
    
        justify-content:center;
        text-align:center;        
        align-items:center;
        flex-wrap:wrap;
    }

    .footer-bottom p{
        margin:0;
        color:#d1d5db;
    }

    .footer-bottom a{
        color:#fff;
        text-decoration:none;
        margin-left:25px;
        transition:.3s;
    }

    .footer-bottom a:hover{
        color:#3b82f6;
    }

    @media(max-width:768px){
        .footer-bottom div{
            margin-top:15px;
        }
    }
    .india-divider-premium{
        position:relative;
        width:100%;
        height:3px;
        margin:60px 0 40px;
        border-radius:50px;
        background:linear-gradient(
            to right,
            #FF9933 0%,
            #FF9933 33.33%,
            #FFFFFF 33.33%,
            #FFFFFF 66.66%,
            #138808 66.66%,
            #138808 100%
        );        
    }
    .chakra{
        position:absolute;
        left:50%;
        top:50%;
        transform:translate(-50%,-50%);
        width:38px;
        height:38px;
        background:#1f2937;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        color:#0A3D91;
        font-size:22px;
        font-weight:bold;
        box-shadow:0 0 8px rgba(255,255,255,.2);    
    }  */
    
    /* Newsletter */
    .newsletter-text{
        color:rgba(255,255,255,.75);
        font-size:14px;
        margin-bottom:18px;
    }
    .newsletter {
        display: flex;
        flex-direction: column;
    }

    .newsletter input {
        padding: 10px;
        border: none;
        margin-bottom: 10px;
    }
    .newsletter button {
        padding: 10px;
        border: none;
        background: #4CAF50;
        color: white;
        cursor: pointer;
    }

    .newsletter button:hover {
        background: #45a049;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
        }
        .footer-col {
            width: 100%;
            margin-bottom: 20px;
        }
    }
    .section-bg{
        background:linear-gradient(
            135deg,
            #f8fafc,
            #eef4ff
        );
    }

    /* Visiting Card */
    .flip-card{
        width:550px;
        height:300px;
        margin:auto;
        perspective:1000px;
    }
 
    .flip-card-inner{
        position:relative;
        width:100%;
        height:100%;
        transition:transform .8s;
        transform-style:preserve-3d;
    }

    .flip-card-back{
        transform:rotateY(180deg);
    }

    .flip-card:hover 
    .flip-card-inner{
        transform:rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back{
        position:absolute;
        width:100%;
        height:100%;
        backface-visibility:hidden;
        border-radius:15px;
        overflow:hidden;
        box-shadow:0 10px 25px rgba(0,0,0,.15);
    }

    .flip-card-front img,
    .flip-card-back img{
        width:100%;
        height:100%;
        object-fit:cover;
    } 

    .flip-card img{
        width:100%;
        border-radius:15px;
        box-shadow:0 10px 25px rgba(0,0,0,.15);
        display:block;
    }

    .card-label{
        text-align:center;
        margin-top:15px;
        font-size:24px;
        font-weight:700;
        color:#0d6efd;
        transition:.3s;
    }

    /* Languages */
    .top-bar{
        background:#ffffff;
        padding:15px 0;
        box-shadow:0 2px 20px rgba(0,0,0,.05);
    }

    /* Premium Language Dropdown */
    .language-dropdown{
        position:relative;
        width:240px;
        margin-left:auto;
    }

    .language-dropdown select{
        width:75%;
        height:45px;
        border:none;
        outline:none;
        border-radius:50px;
        background:#ffffff;
        padding-left:50px;
        padding-right:45px;
        font-size:15px;
        font-weight:600;
        appearance:none;
        cursor:pointer;
        box-shadow:
        0 10px 25px rgba(0,0,0,.08);
        transition:.3s;
    }

    .language-dropdown select:hover{
        box-shadow:
        0 15px 35px rgba(13,110,253,.15);
    }

    .language-dropdown .globe{
        position:absolute;
        left:18px;
        top:50%;
        transform:translateY(-50%);
        color:#0d6efd;
        font-size:18px;
    }

    .language-dropdown .arrow{
        position:absolute;
        right:75px;
        top:50%;
        transform:translateY(-50%);
        color:#666;
        pointer-events:none;
    }    

    /* Hide Google Translate */
    .goog-te-banner-frame{
        display:none !important;
    }

    .goog-te-gadget{
        display:none !important;
    } 

    .subscribe-box{
        display:flex;
        align-items:center;
        width:100%;
        max-width:380px;
        height:58px;
        border-radius:50px;
        background:rgba(255,255,255,.08);
        border:1px solid rgba(255,255,255,.15);
        overflow:hidden;
        backdrop-filter:blur(10px);
        transition:.3s ease;
    }

    .subscribe-box:hover,
    .subscribe-box:focus-within{
        border-color:#0d6efd;
        box-shadow:
        0 0 0 4px rgba(13,110,253,.15);
    }

    .subscribe-box input{
        flex:1;
        height:100%;
        border:none;
        background:transparent;
        color:#fff;
        padding:0 20px;
        outline:none;
        font-size:15px;
    }

    .subscribe-box input::placeholder{
        color:rgba(255,255,255,.55);
    }

    .subscribe-btn{
        width:50px;
        height:47px;
        border:none;
        background:#0d6efd;
        color:#fff;
        font-size:18px;
        cursor:pointer;
        transition:.3s ease;
    }

    .subscribe-btn:hover{
        background:#0b5ed7;
        transform:scale(1.05);
    }

    .header{
        border-bottom:1px solid #e5e5e5;
        background:#fff;
        position:sticky;
        top:0;
        z-index:1000
    }

    .logo{
        font-size:32px;
        font-weight:800;
        color:#0d6efd
    }

    .search-wrap{
        max-width:900px;
        margin:auto
    }    
    
    .category{
        background:#f8f9fa;
        border-radius:12px;
        padding:15px;
        text-align:center
    }

    .result{
        padding:22px 0;
        border-bottom:1px solid #eee
    }

    .result a.title{
        font-size:28px;
        color:#1a0dab;
        text-decoration:none
    }

    .result a.title:hover{
        text-decoration:underline
    }

    .url{
        color:#188038;
        font-size:14px
    }

    .badgex{
        background:#eef2f7;
        padding:6px 10px;
        border-radius:20px;
        margin-right:5px
    }

    .social-links{
        display:flex;
        gap:12px;
    }

    /* Premium Tooltip */
    .social-icon::after{
        content:attr(data-tooltip);
        position:absolute;
        top:-52px;
        left:50%;
        transform:translateX(-50%) scale(.8);
        background:#fff;
        color:#222;
        font-size:13px;
        font-weight:600;
        padding:8px 14px;
        border-radius:30px;
        white-space:nowrap;
        opacity:0;
        visibility:hidden;
        box-shadow:
        0 10px 25px rgba(0,0,0,.15);
        transition:.35s ease;
    }

    /* Arrow */
    .social-icon::before{
        content:"";
        position:absolute;
        top:-12px;
        left:50%;
        transform:translateX(-50%);
        border-width:7px;
        border-style:solid;
        border-color:#fff transparent transparent transparent;
        opacity:0;
        visibility:hidden;
        transition:.35s ease;
    }

    .social-icon:hover::after,
    .social-icon:hover::before{
        opacity:1;
        visibility:visible;
    }

    .social-icon:hover::after{
        transform:translateX(-50%) scale(1);
    }

    #scrollTopBtn{
        position:fixed;
        right:25px;
        bottom:25px;
        width:70px;
        height:70px;
        display:flex;
        align-items:center;
        justify-content:center;
        text-decoration:none;
        opacity:0;
        visibility:hidden;
        transform:translateY(20px);
        transition:.4s ease;
        z-index:9999;
    }

    #scrollTopBtn.show{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .progress-ring{
        position:absolute;
        transform:rotate(-90deg);
    }

    .progress-bg{
        fill:none;
        stroke:#e5e7eb;
        stroke-width:4;
    }

    .progress-bar{
        fill:none;
        stroke:#0d6efd;
        stroke-width:4;
        stroke-linecap:round;
        stroke-dasharray:188.4;
        stroke-dashoffset:188.4;
        transition:.2s linear;
    }

    .arrow1{
        width:54px;
        height:54px;
        background:#fff;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        color:#0d6efd;
        font-size:20px;
        box-shadow:0 10px 30px rgba(0,0,0,.15);
        transition:.3s;
    }

    #scrollTopBtn:hover .arrow1{
        background:#0d6efd;
        color:#fff;
        transform:scale(1.08);
    }

    

    /* rightside menu */
    *{
        margin:0;
        padding:0;
        box-sizing:border-box;
        scroll-behavior:smooth;
    }    

    /* Demo Sections */
    .sectionmenu{
        height:100vh;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:60px;
        font-weight:700;
        color:#fff;
    }

  .menu-btn{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);

    width:50px;
    height:60px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    border-radius:30px 0 0 30px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:22px;
    cursor:pointer;

    z-index:99999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.menu-btn i{
    color:#fff;
    font-size:22px;
}
    .menu-btn span{ white-space:nowrap; opacity:0; transition:.3s; font-weight:600; } .menu-btn:hover{ width:170px; } .menu-btn:hover span{ opacity:1; }

    /* #section1{
        background:#0f172a;
    } */
   

    #section2{ background:linear-gradient(135deg,#0f172a,#1e293b); padding:80px 0; } #section2 .section-title{ text-align:center; margin-bottom:50px; } #section2 .section-title h2{ color:#fff; font-size:42px; font-weight:700; margin-bottom:10px; } #section2 .section-title p{ color:#cbd5e1; font-size:16px; } .p-white{ color:#cbd5e1; line-height:1.8; } .about-info-card{ background:rgba(255,255,255,.08); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.08); border-radius:20px; padding:30px; transition:.35s; margin-bottom:25px; } .about-info-card:hover{ transform:translateY(-5px); box-shadow:0 15px 35px rgba(0,0,0,.25); } .about-info-card h3{ color:#fff; font-weight:700; margin-bottom:5px; } .about-info-card h4{ color:#fff; font-weight:600; margin-bottom:15px; } .about-info-card hr{ border-color:rgba(255,255,255,.12); margin:20px 0; } #section2 .card{ background:rgba(255,255,255,.08); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.08); border-radius:18px; transition:.35s; height:100%; } #section2 .card:hover{ transform:translateY(-5px); box-shadow:0 15px 35px rgba(0,0,0,.25); } #section2 .card-body{ padding:25px; } #section2 .card h5{ font-weight:700; margin-bottom:12px; } #section2 .card p{ color:#e2e8f0; margin-bottom:0; } .text-success{ color:#34d399 !important; } .text-primary{ color:#60a5fa !important; } @media(max-width:768px){ #section2{ padding:60px 0; } .book-cover{ margin-bottom:30px; } #section2 .section-title h2{ font-size:32px; } }
    
    #section3{
        background:#334155;
    }
    #section4{
        background:#475569;
    }
    #section5{
        background:#64748b;
    }
    #section6{
        background:#0f172a;
    }
    #section7{
        background:#1e293b;
    }
    #section8{
        background:#334155;
    }
    #section9{
        background:#475569;
    }
    #section10{
        background:#64748b;
    }
    #section11{
        background:#64748b;
    }

    /* Floating Menu */
    .floating-menu{
        position:fixed;
        right:2px;
        top:50%;
        transform:translateY(-50%);
        z-index:9999;
        display:flex;
        align-items:center;
    }

    /* Menu Button */
    .menu-btn{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);

    width:50px;
    height:60px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    border-radius:30px 0 0 30px;

    display:flex;
    align-items:center;

    overflow:hidden;
    cursor:pointer;

    z-index:99999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:all .4s ease;
}

.menu-btn:hover{
    width:170px;
}

.menu-btn i{
    min-width:50px;
    text-align:center;
    color:#fff;
    font-size:24px;
}

.menu-btn span{
    white-space:nowrap;
    color:#fff;
    font-size:15px;
    font-weight:600;
    opacity:0;
    transition:.3s;
}

.menu-btn:hover span{
    opacity:1;
}

    /* Navigation */
    .nav-panel{
        width:0;
        overflow:hidden;
        transition:.5s ease;
        margin-right:15px;
    }

    .floating-menu:hover 
    .nav-panel{
        width:220px;
    }

    .nav-panel ul{
        list-style:none;
        background:rgba(255,255,255,.12);
        backdrop-filter:blur(15px);
        border-radius:20px;
        padding:20px;
    }

    .nav-panel li{
        margin:15px 0;
    }

    /* Link */
    .nav-panel a{
        display:flex;
        align-items:center;
        gap:15px;
        color:#fff;
        text-decoration:none;
        font-size:15px;
        font-weight:600;
        padding:8px 10px;
        border-radius:12px;
        transition:.3s;
    }

    /* Dot */
    .dot{
        width:12px;
        height:12px;
        border-radius:50%;
        background:#fff;
        transition:.3s;
    }

    .nav-panel a:hover{
        background:rgba(255,255,255,.15);
        transform:translateX(-5px);
    }

    .nav-panel a:hover .dot{
        transform:scale(1.5);
        box-shadow:0 0 10px rgba(255,255,255,.8), 0 0 20px rgba(255,255,255,.5);
    }

    /* Active */
    .nav-panel a.active{
        background:rgba(255,255,255,.18);
    }

    .nav-panel a.active .dot{
        transform:scale(1.6);
        box-shadow:
            0 0 10px rgba(255,255,255,.9),
            0 0 25px rgba(255,255,255,.6);
    }

    .h-350{
        height: 350px !important;
    }
    .fw-bold{
        color:white !important;
    }
    .p-white{
         color:#f5f7fa;
    }
       
/* 24-06-2026 */

/* ==========================
   FLOATING CALLBACK BUTTON
========================== */

.callback-trigger{
    position:fixed;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:60px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    border-radius:0 30px 30px 0;
    display:flex;
    align-items:center;
    overflow:hidden;
    cursor:pointer;
    z-index:99999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:all .4s ease;
}

.callback-trigger:hover{
    width:200px;
}

.callback-trigger i{
    min-width:40px;
    text-align:center;
    color:#fff;
    font-size:24px;
}

.callback-trigger span{
    white-space:nowrap;
    color:#fff;
    font-size:15px;
    font-weight:600;
    opacity:0;
    transition:.3s;
}

.callback-trigger:hover span{
    opacity:1;
}

/* ==========================
   OVERLAY
========================== */

.callback-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99998;
}

.callback-overlay.active{
    opacity:1;
    visibility:visible;
}

/* ==========================
   POPUP
========================== */

.callback-popup{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(.85);
    width:90%;          /* 95% થી 90% */
    max-width:450px;    /* 620px થી 450px */
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:99999;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.callback-popup.active{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,-50%) scale(1);
}

/* Header */

.popup-header{
    background:linear-gradient(135deg,#3466e8,#2149c8);
    padding:20px 25px;
    color:#fff;
}

.popup-header h2{
    font-size:28px;     /* 42px થી 28px */
    margin-bottom:8px;
}

.popup-header p{
    font-size:14px;
    opacity:.95;
}

/* Close Button */

.popup-close{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#222;
    font-size:16px;
    cursor:pointer;
}

/* Form */

.popup-body{
    padding:20px;
}

.form-control{
    width:100%;
    padding:14px 16px;
    border:1px solid #d7dce8;
    border-radius:12px;
    margin-bottom:14px;
    font-size:15px;
    outline:none;
}

.form-control:focus{
    border-color:#3466e8;
}

textarea.form-control{
    resize:none;
    height:100px;       /* 140px થી 100px */
}

/* Submit Button */

.submit-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#3466e8,#2149c8);
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-2px);
}

/* Mobile */

@media(max-width:768px){

.callback-trigger:hover{
    width:60px;
}

.callback-trigger span{
    display:none;
}

.popup-header{
    padding:25px;
}

.popup-header h2{
    font-size:30px;
}

.popup-header p{
    font-size:15px;
}

.popup-body{
    padding:25px;
}

}

/* ==========================
   FLOATING AREA
========================== */

.floating-area{
    position:fixed;
    right:15px;
    bottom:15px;
    z-index:99999;

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.4s ease;
}

.floating-area.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ==========================
   SCROLL PROGRESS BUTTON
========================== */

.scroll-progress{
    position:relative;
    width:50px;
    height:50px;
    margin-bottom:8px;
    cursor:pointer;
}

.scroll-progress svg{
    position:absolute;
    top:0;
    left:0;
    transform:rotate(-90deg);
}

.scroll-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:38px;
    height:38px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2563eb;
    font-size:13px;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
}

/* ==========================
   CHAT BUTTON
========================== */

.chat-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#4f46e5);
    color:#fff;
    font-size:16px;
    cursor:pointer;
    position:relative;
    box-shadow:0 10px 25px rgba(37,99,235,.30);
}

.chat-btn::before{
    content:'';
    position:absolute;
    inset:-4px;
    border-radius:50%;
    border:2px solid rgba(37,99,235,.25);
    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.5);
        opacity:0;
    }

}

/* ==========================
   CHAT BOX
========================== */

.chat-box{
    position:fixed;
    right:70px;
    bottom:20px;
    width:340px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
    z-index:99998;
}

.chat-box.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Header */

.chat-header{
    background:linear-gradient(135deg,#2563eb,#4f46e5);
    color:#fff;
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.agent{
    display:flex;
    align-items:center;
    gap:10px;
}

.avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
}

.agent h4{
    font-size:14px;
}

.online{
    color:#9CFF84;
    font-size:11px;
}

.close-btn{
    border:none;
    background:none;
    color:#fff;
    cursor:pointer;
    font-size:18px;
}

/* Body */

.chat-body{
    height:220px;
    padding:15px;
    background:#f8fafc;
}

.message{
    background:#fff;
    padding:12px;
    border-radius:14px;
    max-width:220px;
    font-size:13px;
    line-height:1.6;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
}

/* Footer */

.chat-footer{
    display:flex;
    gap:8px;
    padding:12px;
    border-top:1px solid #eee;
}

.chat-footer input{
    flex:1;
    padding:10px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:13px;
}

.send-btn{
    width:42px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:#fff;
    cursor:pointer;
}

/* Mobile */

@media(max-width:576px){

.chat-box{
    width:92%;
    right:4%;
}

}

/* appone css here */

       .hero-banner {
            height: 450px;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        .client-passport-photo {
            width: 80px;
            height: 325px;
            object-fit: cover;
            object-position: center top;
            border-radius: 6px;
            border: 2px solid #ddd;
            padding: 3px;
        }

        .service-icon-img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }
        /* =========================================
   VIDEO + SLIDER SAME SIZE
========================================= */

#section7 .row {
    align-items: stretch !important;
}

/* Left & Right Column */
#section7 .col-lg-6 {
    display: flex;
    align-items: stretch;
}

/* =========================================
   VIDEO BOX
========================================= */

.video-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
}

/* Any Thumbnail Image */
.video-wrapper img {
    width: 100% !important;
    height: 350px !important;
    object-fit: cover !important;
    object-position: center center;
    display: block;
    border-radius: 10px;
}

/* =========================================
   SLIDER BOX
========================================= */

#carouselExample {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
}

#carouselExample .carousel-inner {
    width: 100%;
    height: 350px;
}

#carouselExample .carousel-item {
    width: 100%;
    height: 350px;
}

/* Any Slider Image */
#carouselExample .carousel-item img {
    width: 100% !important;
    height: 350px !important;
    object-fit: cover !important;
    object-position: center center;
    display: block;
}

/* =========================================
   PLAY BUTTON
========================================= */

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 75px;
    height: 75px;

    border: none;
    border-radius: 50%;

    background: #0d6efd;
    color: #fff;

    font-size: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    #section7 .col-lg-6 {
        display: block;
    }

    .video-wrapper,
    .video-wrapper img,
    #carouselExample,
    #carouselExample .carousel-inner,
    #carouselExample .carousel-item,
    #carouselExample .carousel-item img {
        height: 280px !important;
    }

}
/* =========================================================
   BUSINESS LOCATION - CONTACT CARD
========================================================= */

.section10 .contact-card {
    height: 100%;
    background: #243449;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Header */
.section10 .contact-header {
    padding: 18px 20px;
    background: #0d6efd;
}

.section10 .contact-header h4 {
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* Body */
.section10 .contact-body {
    padding: 22px 20px;
    color: #ffffff !important;
}

/* Each Contact Row */
.section10 .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 11px 0;

    color: #ffffff !important;

    font-size: 15px;
    line-height: 1.6;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* Icons */
.section10 .contact-item > i {
    width: 25px;
    min-width: 25px;

    margin-top: 4px;

    color: #4dabf7 !important;

    font-size: 18px;

    text-align: center;
}

/* All text white */
.section10 .contact-item span {
    color: #ffffff !important;
}

/* Links white */
.section10 .contact-item a {
    color: #ffffff !important;
    text-decoration: none;

    word-break: break-word;
}

/* Link hover */
.section10 .contact-item a:hover {
    color: #4dabf7 !important;
}

/* Address */
.section10 #addressText {
    color: #ffffff !important;
}

/* HR */
.section10 .contact-body hr {
    border-color: rgba(255, 255, 255, 0.25);
    opacity: 1;
    margin: 18px 0;
}

/* Change Address Label */
.section10 .contact-body label {
    color: #ffffff !important;
    font-size: 15px;
}

/* Address Input */
.section10 #addressInput {
    min-height: 45px;

    background: #ffffff;
    color: #212529;

    border: 1px solid #ced4da;
    border-radius: 7px;
}

.section10 #addressInput:focus {
    background: #ffffff;
    color: #212529;
}

/* Update Map Button */
.section10 .contact-body .btn-primary {
    min-height: 45px;

    font-weight: 600;

    border-radius: 7px;
}

/* =========================================================
   GOOGLE MAP
========================================================= */

.section10 .map-card {
    width: 100%;
    height: 100%;

    min-height: 450px;

    background: #ffffff;

    border-radius: 15px;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.section10 .map-card iframe {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 450px;

    border: 0;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section10 .section-title h2 {
    color: #ffffff !important;
}

.section10 .section-title p,
.section10 .section-title .p-white {
    color: #ffffff !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .section10 .contact-card {
        height: auto;
    }

    .section10 .map-card {
        min-height: 400px;
    }

    .section10 .map-card iframe {
        min-height: 400px;
    }
}

@media (max-width: 576px) {

    .section10 .contact-body {
        padding: 18px 15px;
    }

    .section10 .contact-item {
        font-size: 14px;
    }

    .section10 .map-card,
    .section10 .map-card iframe {
        min-height: 350px;
    }
}

.review-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.review-action-btn {
    width: 185px !important;
    height: 44px !important;

    padding: 5px 10px !important;
    margin: 0 !important;

    border-radius: 8px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 7px;

    font-size: 15px !important;
    font-weight: 600;

    line-height: 1 !important;
    white-space: nowrap !important;

    box-sizing: border-box !important;
}

.review-action-btn i {
    width: 18px;
    font-size: 15px;
    text-align: center;
    flex-shrink: 0;
}

.review-action-btn span {
    line-height: 1;
    white-space: nowrap;
}
/* =========================================
   Ratings & Reviews Section
========================================= */
#section9 {
    position: relative;
    padding-bottom: 0px !important;
    overflow: hidden;
}

/* Review cards */
#section9 .review-card {
    height: 100%;
}

/* Button area */
#section9 .review-buttons {
    margin-bottom: 10px;
}


/* =========================================
   Business Location Section
========================================= */
#section10 {
    position: relative;
    padding-top: 60px !important;
    clear: both;
}

/* =========================================
   SECTION 9 - INQUIRY & REVIEWS
========================================= */

#section9 {
    position: relative !important;
    display: block !important;

    width: 100% !important;

    height: auto !important;
    min-height: auto !important;

    padding-top: 70px !important;
    padding-bottom: 120px !important;

    overflow: visible !important;
    clear: both !important;
}

/* Main row must take children's full height */
#section9 > .container {
    height: auto !important;
    min-height: 0 !important;
}

#section9 .row {
    height: auto !important;
    min-height: 0 !important;
    align-items: stretch;
}

/* Left + Right columns */
#section9 .col-lg-5,
#section9 .col-lg-7 {
    height: auto !important;
}

/* Cards */
#section9 .contact-card,
#section9 .review-card,
#section9 .rating-card {
    height: 100% !important;
    min-height: 0 !important;
    position: relative !important;
}

/* Buttons */
#section9 .review-buttons {
    position: relative !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}


/* =========================================
   SECTION 10 - LOCATION
========================================= */

#section10 {
    position: relative !important;
    display: block !important;

    width: 100% !important;

    height: auto !important;

    padding-top: 80px !important;
    padding-bottom: 80px !important;

    clear: both !important;
}

.navbar{
    min-height:75px;
    padding:8px 0;
}

.site-logo{
    height:55px;
    width:auto;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-weight:500;
    padding:10px 15px !important;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:#0d6efd !important;
}

.dropdown-menu{
    border-radius:10px;
    min-width:220px;
}

.dropdown-item{
    padding:10px 18px;
}

.dropdown-item:hover{
    background:#0d6efd;
    color:#fff;
}

.language-dropdown{
    display:flex;
    align-items:center;
    gap:6px;
}

.language-dropdown select{
    border:none;
    background:transparent;
    color:#fff;
    outline:none;
}

.language-dropdown option{
    color:#000;
}

.search-open-btn{
    color:#fff;
}

.search-open-btn:hover{
    color:#0d6efd;
}

@media(max-width:991px){

    .navbar-nav{
        margin-top:15px;
    }

    .language-dropdown{
        margin-top:15px;
    }

}

/* app.blade.php */

.theme-btn1 {
    padding: 8px 12px !important;
}

.hero1 .hero1-bg {
    margin-top: 40px !important;
}

.error {
    color: red;
}


/* =========================
   PRELOADER
========================= */

.overlay-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loader {
    position: relative;
    width: 200px;
    height: 200px;
}

.loader svg {
    position: absolute;
    top: 0;
    left: 0;
}

.preloader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: auto;
    transform: translate(-50%, -50%);
}

.background {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 8;
}

.outer {
    fill: none;
    stroke: #0d6efd;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 502;
    stroke-dashoffset: 100;
    animation: rotateCircle 2s linear infinite;
}

@keyframes rotateCircle {
    from {
        stroke-dashoffset: 502;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* =========================================
   INDIA DIGITAL BUSINESS - FOOTER
========================================= */

.footer1 {
    background: #20283b !important;
    color: #ffffff !important;
    padding-top: 60px;
    padding-bottom: 25px;
}

.footer1 h3,
.footer1 p,
.footer1 span,
.footer1 li,
.footer1 a {
    color: #ffffff !important;
}

/* Footer Links */
.footer1 a {
    text-decoration: none;
}

.footer1 a:hover {
    color: #ffffff !important;
}

/* Social Icons */
.footer1 .footer-social1 a {
    color: #ffffff !important;
}

/* Contact Icons */
.footer1 .footer-contact-box1 .icon i {
    color: #ffffff !important;
}

/* Copyright Border */
.footer1 .coppyrihgt-border {
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    padding-top: 20px;
    margin-top: 20px;
}

/* Copyright Links */
.footer1 .conditions {
    text-align: right;
}

.footer1 .conditions a {
    color: #ffffff !important;
    margin-left: 20px;
}

/* Logo */
.footer1 .site-logo {
    height: 55px;
    width: auto;
}


/* =========================================
   MOBILE ONLY
   Desktop / Laptop ને TOUCH ન કરવું
========================================= */

@media (max-width: 768px) {

    /* ===============================
       HERO BANNER
    =============================== */

    .hero-banner {
        height: auto !important;
        min-height: 450px;
        background-position: center center;
        background-size: cover;
    }


    /* ===============================
       STATS BAR
    =============================== */

    .stats {
        margin-top: 20px !important;
        padding: 20px 15px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .stats .row {
        margin-left: 0;
        margin-right: 0;
    }

    .stats .stat-box {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
        padding: 10px;
    }

    .stats .stat-box::after {
        display: none !important;
    }

    .stat-title {
        font-size: 14px;
    }


    /* ===============================
       ABOUT SECTION
    =============================== */

    #section2 {
        padding: 60px 10px !important;
        overflow: hidden;
    }

    #section2 .container {
        width: 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }


    /* ===============================
       CLIENT PHOTO
    =============================== */

    #section2 .book-cover {
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 30px;
        margin-left: 0;
    }

    #section2 .book-cover img,
    #section2 .client-passport-photo {
        width: 180px !important;
        height: 220px !important;
        max-width: 100%;
        object-fit: cover;
        object-position: center top;
        margin: 0 auto;
        display: block;
    }


    /* ===============================
       ABOUT INFORMATION CARD
    =============================== */

    #section2 .col-md-8 {
        width: 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-info-card {
        width: 100%;
        padding: 20px !important;
        margin-bottom: 25px;
        box-sizing: border-box;
    }

    .about-info-card h3 {
        font-size: 24px;
    }

    .about-info-card h4 {
        font-size: 20px;
    }

    .about-info-card p {
        font-size: 15px;
        line-height: 1.7;
        word-break: break-word;
    }


    /* ===============================
       ABOUT POINTS
    =============================== */

    #section2 .misionvision {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 0;
        padding-right: 0;
    }

    #section2 .misionvision .card {
        width: 100%;
    }


    /* ===============================
       SECTION TITLE
    =============================== */

    #section2 .section-title {
        margin-bottom: 30px;
    }

    #section2 .section-title h2 {
        font-size: 32px !important;
        line-height: 1.2;
    }

    #section2 .section-title p {
        font-size: 15px;
        line-height: 1.6;
    }

}

/* =========================================================
   INDIA DIGITAL BUSINESS
   SAFE RESPONSIVE LAYER
   ---------------------------------------------------------
   Original custom.css is preserved above.
   Desktop/Laptop layout is intentionally NOT redesigned.
   ========================================================= */

/* ---------- GLOBAL SAFETY ---------- */
html,
body {
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

input,
textarea,
select,
button {
    box-sizing: border-box;
    max-width: 100%;
}


/* =========================================================
   DESKTOP - 1200px+
   Original layout preserved
   ========================================================= */
@media (min-width: 1200px) {

    .hero-banner,
    .section2,
    .section3,
    .section4,
    .section5,
    .section6,
    .section7,
    .section8,
    .section9,
    .section10 {
        width: 100%;
    }

}


/* =========================================================
   LAPTOP - 992px to 1199px
   Original desktop layout preserved
   ========================================================= */
@media (min-width: 992px) and (max-width: 1199px) {

    .hero-banner,
    .section2,
    .section3,
    .section4,
    .section5,
    .section6,
    .section7,
    .section8,
    .section9,
    .section10 {
        width: 100%;
    }

}


/* =========================================================
   TABLET - 768px to 991px
   Only safe sizing rules
   ========================================================= */
@media (min-width: 768px) and (max-width: 991px) {

    body {
        overflow-x: hidden;
    }

    .container {
        width: 100%;
    }

    /* Visiting Card */
    .flip-card {
        width: min(550px, 100%);
        height: auto;
        aspect-ratio: 550 / 300;
        margin-left: auto;
        margin-right: auto;
    }

    .flip-card-front,
    .flip-card-back {
        height: 100%;
    }

    /* Video + Slider */
    #section7 .video-wrapper,
    #section7 #carouselExample {
        width: 100%;
        max-width: 100%;
    }

    /* Documents */
    #section8 img {
        max-width: 100%;
        height: auto;
    }

    /* Map */
    .section10 .map-card,
    .section10 .map-card iframe {
        width: 100%;
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE - 481px to 767px
   Existing original mobile rules remain active
   ========================================================= */
@media (min-width: 481px) and (max-width: 767px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        max-width: 100%;
    }

    .hero-banner {
        width: 100%;
        max-width: 100%;
    }

    #section2,
    #section3,
    #section4,
    #section5,
    #section6,
    #section7,
    #section8,
    #section9,
    #section10 {
        max-width: 100%;
    }

    /* Product */
    #section3 .productSlider,
    #section3 .swiper {
        max-width: 100%;
        overflow: hidden;
    }

    /* Gallery */
    #section5 .gallery-marquee {
        max-width: 100%;
        overflow: hidden;
    }

    /* Visiting Card */
    .flip-card {
        width: 100%;
        max-width: 450px;
        height: auto;
        aspect-ratio: 550 / 300;
        margin-left: auto;
        margin-right: auto;
    }

    /* Video */
    #section7 .video-wrapper,
    #section7 #carouselExample {
        width: 100%;
        max-width: 100%;
    }

    /* Documents */
    #section8 img,
    #section8 iframe {
        max-width: 100%;
    }

    /* Map */
    .section10 .map-card,
    .section10 .map-card iframe {
        width: 100%;
        max-width: 100%;
    }

    /* Floating chat */
    .chat-box {
        max-width: calc(100vw - 20px);
    }

}


/* =========================================================
   SMALL MOBILE - 480px and below
   ========================================================= */
@media (max-width: 480px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        width: 100%;
        max-width: 100%;
    }

    .row {
        max-width: 100%;
    }

    /* Hero */
    .hero-banner {
        width: 100%;
        max-width: 100%;
    }

    /* Product */
    #section3 .productSlider,
    #section3 .swiper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    /* Gallery */
    #section5 .gallery-marquee {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    /* Visiting Card */
    .flip-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 550 / 300;
    }

    /* Video + Slider */
    #section7 .video-wrapper,
    #section7 #carouselExample,
    #section7 .video-wrapper img,
    #section7 #carouselExample .carousel-item img {
        max-width: 100%;
    }

    /* Documents */
    #section8 img,
    #section8 iframe {
        max-width: 100%;
    }

    /* Inquiry buttons */
    .review-action-btn {
        max-width: 100%;
    }

    /* Map */
    .section10 .map-card,
    .section10 .map-card iframe {
        width: 100%;
        max-width: 100%;
    }

    /* Callback */
    .callback-popup {
        max-width: calc(100vw - 20px);
    }

    /* Chat */
    .chat-box {
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        right: 10px;
    }

}

/* =========================================================
   MOBILE HEADER FIX
   ---------------------------------------------------------
   Keep LOGO + BUSINESS NAME + HAMBURGER on ONE LINE.
   Desktop / Laptop are untouched.
   ========================================================= */

@media (max-width: 768px) {

    /* Bootstrap navbar container must never wrap */
    .navbar > .container,
    .navbar > .container-fluid,
    .navbar .container,
    .navbar .container-fluid {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Logo area stays on the left and can shrink */
    .navbar-brand,
    .logo-wrapper {
        display: flex !important;
        align-items: center !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 58px) !important;
        margin-right: 0 !important;
        overflow: hidden;
    }

    /* Mobile logo */
    .navbar-brand .site-logo,
    .logo-wrapper .site-logo {
        height: 42px !important;
        width: auto !important;
        max-width: 42px !important;
        flex: 0 0 auto !important;
    }

    /* Business name stays beside logo */
    .logo-text {
        display: block !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        margin-left: 8px !important;
        font-size: 16px !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Hamburger stays on the RIGHT */
    .navbar-toggler {
        display: flex !important;
        flex: 0 0 46px !important;
        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        height: 42px !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 6px 8px !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        float: none !important;
        clear: none !important;
        transform: none !important;
    }

    /* Navbar collapse opens UNDER the header, not beside it */
    .navbar-collapse {
        flex-basis: 100% !important;
        flex-grow: 1 !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   480px AND BELOW
   ========================================================= */

@media (max-width: 480px) {

    .navbar {
        padding: 8px 0 !important;
    }

    .navbar > .container,
    .navbar > .container-fluid,
    .navbar .container,
    .navbar .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .navbar-brand,
    .logo-wrapper {
        max-width: calc(100% - 52px) !important;
    }

    .navbar-brand .site-logo,
    .logo-wrapper .site-logo {
        height: 38px !important;
        max-width: 38px !important;
    }

    .logo-text {
        font-size: 14px !important;
        margin-left: 7px !important;
        letter-spacing: .2px !important;
    }

    .navbar-toggler {
        flex-basis: 42px !important;
        width: 42px !important;
        min-width: 42px !important;
        max-width: 42px !important;
        height: 40px !important;
    }

}

.divider {
    height: 1px;
    width: 100%;
    margin: 24px 0;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0),
        rgba(96,165,250,0.45),
        rgba(255,255,255,0.18),
        rgba(96,165,250,0.45),
        rgba(255,255,255,0)
    );
}

.misionvision .card-body h5 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.misionvision .card-body h5 i {
    font-size: 20px;
    color: #60a5fa;
    flex-shrink: 0;
}

.misionvision .card-body h5 span {
    line-height: 1.4;
}

/* =========================================================
   POPUP BACKGROUND
========================================================= */

#databaseCatalogPopup {

    display: none;

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.85);

    z-index: 999999;

    align-items: center;
    justify-content: center;

}


/* =========================================================
   POPUP BOX
========================================================= */

.databaseCatalogBox {

    position: relative;

    width: 92%;

    max-width: 1100px;

    height: 90vh;

    background: #111;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 10px 50px rgba(0,0,0,.5);

}


/* =========================================================
   HEADER
========================================================= */

.databaseCatalogHeader {

    height: 65px;

    background: #0d6efd;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 25px;

    font-size: 22px;

    font-weight: 600;

}


.databaseCatalogHeader button {

    border: none;

    background: transparent;

    color: #fff;

    font-size: 35px;

    line-height: 1;

    cursor: pointer;

}


/* =========================================================
   VIEWER
========================================================= */

.databaseCatalogViewer {

    position: relative;

    height: calc(100% - 110px);

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   IMAGE
========================================================= */

#databaseCatalogImage {

    max-width: 82%;

    max-height: 92%;

    width: auto;

    height: auto;

    object-fit: contain;

    background: #fff;

    padding: 8px;

    border-radius: 6px;

    display: block;

}


/* =========================================================
   ARROWS
========================================================= */

.databaseCatalogArrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 60px;

    height: 60px;

    border: none;

    border-radius: 50%;

    background: rgba(0,0,0,.9);

    color: #fff;

    font-size: 35px;

    cursor: pointer;

    z-index: 10;

}


.databaseCatalogArrow:hover {

    background: #0d6efd;

}


.databaseCatalogPrev {

    left: 20px;

}


.databaseCatalogNext {

    right: 20px;

}


/* =========================================================
   COUNTER
========================================================= */

.databaseCatalogCounter {

    position: absolute;

    bottom: 10px;

    left: 0;

    right: 0;

    text-align: center;

    color: #fff;

    font-size: 18px;

    font-weight: 600;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 768px) {

    .databaseCatalogBox {

        width: 96%;

        height: 85vh;

    }


    .databaseCatalogViewer {

        height: calc(100% - 110px);

    }


    #databaseCatalogImage {

        max-width: 78%;

        max-height: 88%;

    }


    .databaseCatalogArrow {

        width: 48px;

        height: 48px;

        font-size: 28px;

    }


    .databaseCatalogPrev {

        left: 5px;

    }


    .databaseCatalogNext {

        right: 5px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media(max-width: 450px) {

    .databaseCatalogHeader {

        height: 55px;

        padding: 0 15px;

        font-size: 18px;

    }


    .databaseCatalogBox {

        height: 80vh;

    }

}
/* =========================================================
   CUSTOM SLIDER PREVIOUS / NEXT ARROWS
========================================================= */

#carouselExample {
    position: relative;
}


/* =========================================================
   ARROW BUTTON
========================================================= */

#carouselExample .custom-slider-arrow {

    width: 70px !important;
    height: 70px !important;

    top: 50% !important;
    bottom: auto !important;

    transform: translateY(-50%);

    opacity: 1 !important;

    display: flex !important;

    align-items: center;
    justify-content: center;

    background: transparent !important;

    border: 0 !important;

    z-index: 20;

    transition: transform 0.3s ease;
}


/* =========================================================
   PREVIOUS POSITION
========================================================= */

#carouselExample .custom-slider-prev {

    left: 12px !important;
}


/* =========================================================
   NEXT POSITION
========================================================= */

#carouselExample .custom-slider-next {

    right: 12px !important;
}


/* =========================================================
   CIRCLE
========================================================= */

#carouselExample .custom-slider-arrow-circle {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);

    color: #0b2f63;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 17px;

    border: 2px solid rgba(255, 255, 255, 0.95);

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.22);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}


/* =========================================================
   HOVER CIRCLE
========================================================= */

#carouselExample .custom-slider-arrow:hover
.custom-slider-arrow-circle {

    background: #1475e5;

    color: #ffffff;

    border-color: #1475e5;

    transform: scale(1.12);

    box-shadow:
        0 8px 25px rgba(20, 117, 229, 0.45);
}


/* =========================================================
   PREVIOUS HOVER
========================================================= */

#carouselExample .custom-slider-prev:hover {

    transform:
        translateY(-50%)
        translateX(-3px);
}


/* =========================================================
   NEXT HOVER
========================================================= */

#carouselExample .custom-slider-next:hover {

    transform:
        translateY(-50%)
        translateX(3px);
}


/* =========================================================
   LEFT ARROW HOVER ANIMATION
========================================================= */

#carouselExample .custom-slider-prev:hover
.custom-slider-arrow-circle i {

    animation:
        sliderArrowLeft 0.45s ease;
}


/* =========================================================
   RIGHT ARROW HOVER ANIMATION
========================================================= */

#carouselExample .custom-slider-next:hover
.custom-slider-arrow-circle i {

    animation:
        sliderArrowRight 0.45s ease;
}


/* =========================================================
   LEFT ARROW
========================================================= */

@keyframes sliderArrowLeft {

    0% {
        transform: translateX(0);
    }

    45% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }

}


/* =========================================================
   RIGHT ARROW
========================================================= */

@keyframes sliderArrowRight {

    0% {
        transform: translateX(0);
    }

    45% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }

}


/* =========================================================
   FOCUS
========================================================= */

#carouselExample .custom-slider-arrow:focus {

    outline: none !important;

    box-shadow: none !important;
}


/* =========================================================
   INDICATORS
========================================================= */

#carouselExample .carousel-indicators {

    z-index: 25;

    margin-bottom: 12px;
}


#carouselExample .carousel-indicators button {

    width: 8px;
    height: 8px;

    margin-left: 4px;
    margin-right: 4px;

    border: 0;

    border-radius: 50%;

    opacity: 0.65;

    transition:
        width 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}


#carouselExample .carousel-indicators button.active {

    width: 24px;

    border-radius: 10px;

    opacity: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    #carouselExample .custom-slider-arrow {

        width: 58px !important;
        height: 58px !important;
    }


    #carouselExample .custom-slider-prev {

        left: 5px !important;
    }


    #carouselExample .custom-slider-next {

        right: 5px !important;
    }


    #carouselExample .custom-slider-arrow-circle {

        width: 42px;
        height: 42px;

        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    #carouselExample .custom-slider-arrow {

        width: 48px !important;
        height: 48px !important;
    }


    #carouselExample .custom-slider-prev {

        left: 2px !important;
    }


    #carouselExample .custom-slider-next {

        right: 2px !important;
    }


    #carouselExample .custom-slider-arrow-circle {

        width: 36px;
        height: 36px;

        font-size: 13px;
    }


    #carouselExample .carousel-indicators {

        margin-bottom: 7px;
    }


    #carouselExample .carousel-indicators button {

        width: 6px;
        height: 6px;

        margin-left: 3px;
        margin-right: 3px;
    }


    #carouselExample .carousel-indicators button.active {

        width: 18px;
    }

}


@media (max-width: 767px) {

    .hero-banner.section1 {
        position: relative;

        /* Banner image સંપૂર્ણ widthમાં */
        background-size: cover !important;

        /* Image centerમાં */
        background-position: center center !important;

        background-repeat: no-repeat !important;

        /* HTML bannerની ઉપર જ રહેશે */
        min-height: 650px;
        height: auto;
    }

    .hero-banner.section1 .hero-overlay {
        position: relative;
        z-index: 1;

        min-height: 650px;
        height: auto;
    }

    .hero-banner.section1 .container {
        position: relative;
        z-index: 2;

        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-banner.section1 .row {
        text-align: center;
    }

    .hero-banner.section1 .col-md-2,
    .hero-banner.section1 .col-md-10 {
        width: 100%;
    }

    .hero-banner.section1 .company-logo {
        max-width: 120px;
        max-height: 120px;
        width: auto;
        height: auto;
        object-fit: contain;

        margin: 10px auto 20px;
        display: block;
    }

    .hero-banner.section1 h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-banner.section1 h5 {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-banner.section1 .btn {
        margin: 4px 2px;
    }

    .hero-banner.section1 .stats {
        margin-top: 25px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-banner.section1 {
        min-height: 720px;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-banner.section1 .hero-overlay {
        min-height: 720px;
    }

    .hero-banner.section1 h1 {
        font-size: 25px;
    }

    .hero-banner.section1 h5 {
        font-size: 14px;
    }

    .hero-banner.section1 .company-logo {
        max-width: 100px;
        max-height: 100px;
    }
}



