/*====================================
  SARASWATI 777
  Online ID Provider Website
=====================================*/
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Racing+Sans+One:wght@300;400;500;600;700;800&display=swap');
/*====================================
    VARIABLES
=====================================*/
:root{
    --primary:#ffce26;
    --secondary:#e49400;
    --light:#f5f5f5;
    --black:#0F172A;
    --dark:#1E293B;
    --text:#F8FAFC;
    --white:#ffffff;
    --border:#e8e8e8;
    --shadow:0 10px 35px rgba(0,0,0,.08);
    --radius:12px;
    --transition:.35s ease;
}
/*====================================
    RESET
=====================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:var(--black);
    color:var(--white);
    line-height:1.7;
    overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6 {
    font-family:'Racing Sans One',sans-serif;
    color:var(--primary);
    font-weight:500;
}
img{
    max-width:100%;
    display:block;
}
a{
    text-decoration:none;
}
ul{
    list-style:none;
}
.bg-light {
    background-color: var(--dark) !important;
}
/*====================================
    BUTTONS
=====================================*/
.btn{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    transition:var(--transition);
    font-weight:600;
    font-size: 14px;
    cursor:pointer;
}
.btn-primary{
    background:var(--primary);
    color:#fff;
}
.btn-primary:hover{
    background:var(--secondary);
}
.btn-outline{
    border:2px solid var(--primary);
    color:var(--primary);
}
.btn-outline:hover{
    background:var(--primary);
    color:#fff;
}
.btn-light{
    background:#fff;
    color:var(--primary);
}
.btn-light:hover{
    background:var(--primary);
    color:#fff;
}
/*====================================
    SECTION TITLE
=====================================*/
.section-title{
    text-align:center;
    margin-bottom:40px;
}
.section-title span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:1px;
}
/*====================================
    HEADER
=====================================*/
#header{
    background:var(--black);
    box-shadow:0 3px 20px rgba(255,255,255,.05);
}
.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    margin: auto;
    z-index: 999;
}
.logo{
    width: 100%;
    max-width: 300px;
}
.logo i{
    color:var(--primary);
}

.navbar {
    padding: 0;
}
.navbar-expand-lg .navbar-nav .nav-link{
    font-family:'Racing Sans One',sans-serif;
    color:var(--white);
    font-weight:500;
    transition:var(--transition);
    padding: 10px 20px;
    position: relative;
}
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .active .nav-link{
    color:var(--primary);
}
.navbar-expand-lg .navbar-nav .nav-link:after {
    content: "";
    width: 10px;
    bottom: 0;
    height: 3px;
    right: 0;
    z-index: 2;
    position: absolute;
    opacity: 0;
    transition: .3s;
    background-color: #55595c;
}
.navbar-expand-lg .navbar-nav .nav-link:hover::after,
.navbar-expand-lg .navbar-nav .active .nav-link:after {
    width: 100%;
    opacity: 1;
    transition: .3s;
    background-color: #ffce26;
}
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Smooths out the cursor transition gap */
  }
}
/*====================================
    DROPDOWN
=====================================*/
.submenu{
    position:absolute;
    top:45px;
    left:0;
    width:260px;
    background:#fff;
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    border-radius:8px;
    overflow:hidden;
}
.dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
}
.submenu li{
    width:100%;
}
.submenu li a{
    display:block;
    padding:14px 20px;
}
.submenu li a:hover{
    background:var(--light);
}
/*====================================
    HEADER BUTTONS
=====================================*/
.header-btns{
    display:flex;
    gap:12px;
}
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}
/* ================= HERO SLIDER ================= */
.hero-slider{
    position:relative;
    height:460px;
    overflow:hidden;
}
.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity .8s ease;
}
.slide.active{
    opacity:1;
    z-index:2;
}
.slide img{
    width:100%;
    height:100%;
    object-fit:fill;
}
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}
.slide-content{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    max-width:650px;
    z-index:10;
}
.slide-content h1{
    font-size:60px;
    margin:20px 0;
    line-height: 60px;
}
.slide-content p{
    font-size:18px;
    margin-bottom:35px;
}
.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    color:#fff;
    cursor:pointer;
    font-size:22px;
    z-index:20;
}
.prev{
    left:30px;
}
.next{
    right:30px;
}
.prev:hover,
.next:hover{
    background:var(--primary);
}
.slider-dots{
    position:absolute;
    bottom:35px;
    width:100%;
    text-align:center;
    z-index:20;
}
.dot{
    display:inline-block;
    width:14px;
    height:14px;
    margin:0 6px;
    background:var(--black);
    border-radius:50%;
    cursor:pointer;
}
.dot.active{
    background:var(--primary);
}
@media(max-width:768px){
.hero-slider{
    height:400px;
}
.slide-content{
    left:20px;
    right:20px;
}
.slide-content h1{
    font-size: 28px;
    line-height: 34px;
    margin: 8px 0;
}
.slide-content p{
    font-size:16px;
    margin-bottom: 15px;
}
.prev,
.next{
    display:none;
}
}
/*====================================
    ABOUT SECTION
=====================================*/
.about-home{
    padding:50px 0;
}
.about-home img{
    margin-bottom: 30px;
}
.about-home p{
    color:var(--white);
    margin-bottom:25px;
}
.about-list{
    margin-bottom:35px;
}
.about-list li{
    padding:4px 0;
    color:var(--white);
    font-weight:500;
}

.about-home .online_ids a{
    text-decoration: none;
}
.about-home .online_ids a h4{
    color: var(--light);
}
.about-home .online_ids a p{
    color: var(--white);
}
.about-home .online_ids a i{
    color:var(--primary);
}
/*====================================
    SERVICES
=====================================*/
.services{
    padding:50px 0;
}
.services img{
    margin-bottom: 30px;
}
.service-card{
    background:var(--dark);
    border:1px solid var(--black);
    border-radius:var(--radius);
    padding:35px;
    text-align:center;
    transition:.35s;
    margin-bottom: 30px;
}
.service-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}
.service-card h5{
    color:var(--white);
}
.service-card i{
    width:60px;
    height:60px;
    line-height:60px;
    border-radius:50%;
    background:var(--black);
    color:var(--primary);
    font-size:26px;
    margin-bottom:25px;
}
.service-card h3{
    margin-bottom:15px;
}
.service-card p{
    color:var(--white);
    margin-bottom:20px;
}
.service-card a{
    color:var(--primary);
    font-weight:600;
}
/*====================================
    WHY CHOOSE US
=====================================*/
.why{
    padding:60px 0;
}
.why .why-box h2{
    margin-bottom:15px;
}
.why .why-box p{
    color:var(--white);
    font-size: 14px;
}
.why img{
    margin: auto;
}
/*====================================
    COUNTER
=====================================*/
.counter{
    padding:40px 0 60px;
}
.counter .counter-box{
    padding:30px 10px;
    text-align:center;
    transition:var(--transition);
    margin-bottom: 30px;
}
.counter .counter-box:hover{
    box-shadow:var(--shadow);
    transform:translateY(-8px);
}
.counter .counter-box h2{
    color:var(--primary);
    font-size:52px;
    font-weight:700;
    margin-bottom:10px;
}
.counter .counter-box p{
    color:var(--white);
    font-weight:500;
}
.counter h2{
    color:var(--primary);
    margin-bottom:10px;
    text-align: center;
}
.counter p{
    color:var(--white);
    font-weight:500;
    font-size: 14px;
    text-align: center;
}

/*====================================
    PROCESS
=====================================*/
.process{
    padding:50px 0;
}
.process .process-box{
    background:var(--dark);
    border-radius:var(--radius);
    padding:35px;
    box-shadow:var(--shadow);
    position:relative;
    transition:var(--transition);
    margin-bottom: 30px;
    text-align: center;
}
.process .process-box:hover{
    transform:translateY(-10px);
}
.process .process-box h5{
    color:var(--white);
    font-size: 22px;
}
.process .process-box p{
    color:var(--white);
    font-style:italic;
    margin-bottom:10px;
}
.process .process-box i{
    color:var(--primary);
    font-size: 32px;
    margin-bottom: 18px;
}

/*====================================
    TESTIMONIALS
=====================================*/
.testimonials{
    padding:50px 0;
}
.testimonials .testimonial-box{
    background:#fff;
    border-radius:var(--radius);
    padding:35px;
    box-shadow:var(--shadow);
    position:relative;
    transition:var(--transition);
    margin-bottom: 30px;
}
.testimonials .testimonial-box:hover{
    transform:translateY(-10px);
}
.testimonials .testimonial-box::before{
    content:"\f10d";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    top:25px;
    right:25px;
    font-size:40px;
    color:rgba(11,94,215,.09);
}
.testimonials .testimonial-box p{
    color:var(--text);
    font-style:italic;
    margin-bottom:10px;
}
.testimonials .testimonial-box h5{
    color:var(--dark);
    font-size: 18px;
}

/*====================================
    FOOTER
=====================================*/
.footer-top {
    border-top: 15px solid var(--primary);
}
.footer-top svg {
    width: calc(60% + 1.3px);
    height: 15px;
    margin: auto;
    display: block;
}
.footer-top .footer-shape-fill {
    fill: var(--primary);
}

footer{
    color:#fff;
    padding:50px 0 92px;
}
footer .footer-box{
    margin-bottom:30px;
}
footer .footer-box img{
    width: 80%;
    margin-bottom: 14px;
}
footer .footer-box h3{
    font-size:28px;
    margin-bottom:20px;
}
footer .footer-box h4{
    margin-bottom:20px;
    font-size:18px;
    color: var(--white);
}
footer .footer-box p{
    color:rgba(255,255,255,.85);
    margin-bottom:12px;
    font-size: 14px;
}
footer .footer-box ul.onlineIDs li{
    width: 48%;
    display: inline-block;
}
footer .footer-box ul.footer-links li a{
    font-size: 14px;
    display: block;
    color:rgba(255,255,255,.85);
    transition:var(--transition);
    text-decoration: none;
    padding: 3px 0;
}
footer .footer-box ul.footer-links li a:hover{
    color:var(--primary);
    padding-left:6px;
}
footer .footer-box i{
    color:var(--primary);
    margin-right:8px;
}
footer .footer-box img.icon-img{
    width: auto;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

.copyright{
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.15);
    color:var(--text);
    font-size:14px;
}
.copyright p {
    font-family:'Racing Sans One',sans-serif;
    margin-bottom: 0;
}
.copyright ul.copyright-social {
    margin: 0;
    padding: 0;
    text-align: end;
}
.copyright ul.copyright-social li {
    list-style-type: none;
    margin: 0;
    display: inline-block;
}
.copyright ul.copyright-social li a {
    color: var(--text);
    text-decoration: none;
    display: block;
    font-size: 16px;
    width: 36px;
}
.copyright ul.copyright-social li a:hover {
    color: var(--primary);
    text-decoration: none;
}

section.bottom-fixed {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--black);
    padding: 10px 0 4px;
    z-index: 999;
    justify-content: space-around;
    align-items: baseline;
}
section.bottom-fixed a {
    font-family:'Racing Sans One',sans-serif;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    display: block;
}
section.bottom-fixed svg {
    width: 30px;
    height: 30px;
    display: block;
    margin: auto;
}
section.bottom-fixed .whatsapp a {
    font-size:18px;
}
section.bottom-fixed .whatsapp svg {
    width: 50px;
    height: 50px;
    animation: spring-pop 3s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

@keyframes spring-pop {
  /* 0% to 70% (First 1.4 seconds): Stays completely normal and still */
  0%, 70% {
    bottom: 0px;
    transform: scale(1);
  }
  
  /* 75% (At 1.5s): Drops down and shrinks out of sight */
  75% {
    bottom: -50px;
    transform: scale(0.8);
  }
  
  /* 100% (At 2.0s): Pops back up dramatically with the spring effect */
  100% {
    bottom: 0px;
    transform: scale(1);
  }
}

/* Contact Form */
.contact-form input,
.contact-form select,
.contact-form textarea{
    border:1px solid #ddd;
    border-radius:8px;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    margin-bottom:20px;
    transition:.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
    outline:none;
    box-shadow:0 0 0 3px rgba(11,94,215,.12);
}
.contact-form textarea{
    resize:vertical;
    min-height:140px;
}

/*====================================
    STICKY HEADER
=====================================*/
.sticky{
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

/*====================================
    SIMPLE FADE ANIMATION
=====================================*/
.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}
.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

.hero{
    position: relative;
    padding:70px 0 70px;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}
.hero-content h1 {
    font-size: 32px;
    font-weight: 600;
}
.hero-content p {
    max-width:800px;
    margin:10px auto;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

/*====================================
    RESPONSIVE
=====================================*/
/* Laptop */
@media(max-width:1200px){
.hero h1{
    font-size:48px;
}
.hero-content h1 {
    font-size: 26px;
}
.section-title h2{
    font-size:36px;
}
.about-home h2{
    font-size:36px;
}
}
/* Tablet */
@media(max-width:992px){
.hero{
    text-align:center;
}
.hero-content h1 {
    font-size: 26px;
}
.hero-buttons{
    justify-content:center;
}
.hero-image{
    margin-top:30px;
}
.footer-grid{
    grid-template-columns:1fr 1fr;
}
.header-btns{
    display:none;
}
}
/* Mobile Menu */
@media(max-width:768px){
.navbar{
    padding: 0;
}
.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 0rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
    width: 90%;
}
.navbar-toggler {
    color: var(--white);
    padding: .05rem .05rem;
    font-size: 1.25rem;
}
#navbar.active{
    display:block;
}
#navbar ul{
    flex-direction:column;
    align-items:flex-start;
    gap:0;
}
#navbar ul li{
    width:100%;
}
#navbar ul li a{
    display:block;
    width:100%;
    padding:16px 25px;
}
.submenu{
    position:relative;
    width:100%;
    top:0;
    left:0;
    opacity:1;
    visibility:visible;
    display:none;
    box-shadow:none;
    border-radius:0;
    background:#f7f7f7;
}
.dropdown.open .submenu{
    display:block;
}
.hero{
    padding:40px 0 30px;
}
.hero h1{
    font-size:26px;
}
.section-title h2{
    font-size:30px;
}
.about-home h2{
    font-size:30px;
}
.cta h2{
    font-size:34px;
}
.counter-grid{
    grid-template-columns:repeat(2,1fr);
}
.process-grid{
    grid-template-columns:repeat(2,1fr);
}
.footer-grid{
    grid-template-columns:1fr;
}

.copyright p {
    text-align: center;
}
.copyright ul.copyright-social {
    text-align: center;
}
}
/* Small Mobile */
@media(max-width:576px){
.hero h1{
    font-size:26px;
}
.hero-buttons{
    flex-direction:column;
    align-items:center;
}
.hero-buttons .btn{
    width:100%;
    text-align:center;
}
.section-title h2{
    font-size:28px;
}
.about-home h2{
    font-size:28px;
}
.service-card,
.testimonial,
.counter-grid div,
.why-grid div,
.process-grid div{
    padding:25px;
}
.counter-grid,
.process-grid{
    grid-template-columns:1fr;
}
.cta h2{
    font-size:28px;
}
}
/*====================================
    UTILITIES
=====================================*/
.text-center{
    text-align:center;
}
.mt-20{
    margin-top:20px;
}
.mt-30{
    margin-top:30px;
}
.mt-40{
    margin-top:40px;
}
.mb-20{
    margin-bottom:20px;
}
.mb-30{
    margin-bottom:30px;
}
.mb-40{
    margin-bottom:40px;
}
.shadow{
    box-shadow:var(--shadow);
}
.rounded{
    border-radius:var(--radius);
}
.bg-primary{
    background:var(--primary);
    color:#fff;
}
.bg-light{
    background:var(--light);
}
/*====================================
    CUSTOM SCROLLBAR
=====================================*/
::-webkit-scrollbar{
    width:10px;
}
::-webkit-scrollbar-track{
    background:#eee;
}
::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:10px;
}
::-webkit-scrollbar-thumb:hover{
    background:var(--secondary);
}