/* --------------------
   GLOBAL STYLES
-----------------------*/
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
a {
  text-decoration: none;
}

/* Buttons */
.btn {
    border-radius: 6px;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #0454b5;
    color: #fff !important;
}
.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
}
.btn-primary:hover {
  background-color: #00408c;
  border-color: #00408c;
}
.btn-outline-primary {
  border-width: 2px;
}

.topbar.bg-primary.text-white.py-2 {
    background-color: #0454b5 !important;
}
.sticky-wrapper {
  position: sticky;
  top: 0;
  z-index: 1050;
}
/* --------------------
   TOPBAR
-----------------------*/
.topbar {
  font-size: 14px;
}
.topbar i {
  margin-right: 5px;
}
/* Sticky Navbar Shadow on Scroll */
.sticky-top {
  z-index: 1030;
  transition: all 0.3s ease-in-out;
}

.sticky-top.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --------------------
   NAVBAR
-----------------------*/
.navbar {
  font-weight: 600;
}
.navbar-nav .nav-link {
  margin: 0 10px;
  color: #333;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #0056b3;
}

/* --------------------
   HERO SECTION
-----------------------*/
/* --------------------
   HERO SECTION
-----------------------*/
.hero-section {
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5e9fff47; /* dark overlay */
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 32px;
  line-height: 1.3;
  color: #000; /* screenshot mai black text hai */
}

.hero-subtitle {
  font-size: 22px;
}

.hero-desc {
  font-size: 16px;
  color: #222;
}

.hero-btn {
  padding: 12px 25px;
  font-size: 16px;
}

.hero-cta {
    font-size: 17px;
    color: #333;
}

.hero-form {
  border-radius: 8px;
}
.hero-form .card-header {
    border-radius: 8px 8px 0 0;
    font-size: 16px;
    background-color: #0454b5 !important;
}
@media (max-width: 768px) {
 .hero-section {
    min-height: auto;   /* ✅ height auto ho jayegi */
    padding: 40px 0;    /* ✅ upar niche spacing */
    display: block;     /* ✅ flex hatao, taki naturally expand ho */
  }

  .hero-bg {
    height: 100%;       /* ✅ image stretch hogi content ke hisab se */
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-cta {
    font-size: 16px;
  }
  .hero-form {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: auto;   /* ✅ height auto ho jayegi */
    padding: 40px 0;    /* ✅ upar niche spacing */
    display: block;     /* ✅ flex hatao, taki naturally expand ho */
  }

  .hero-bg {
    height: 100%;       /* ✅ image stretch hogi content ke hisab se */
  }
  
}


@media (max-width: 991px) {
  .hero-section {
    height: auto !important;   /* content ke hisab se height lega */
    min-height: auto;
    padding: 40px 15px;
    display: block;            /* flex hata diya */
  }}
/* --------------------
   WHY CHOOSE US
-----------------------*/
/* Why Choose Us */
#why .card {
  transition: all 0.3s ease;
  border-radius: 10px;
  background: #fff;
}
#why .card:hover {
  transform: translateY(-5px);
}
.icon-circle {
  width: 70px;
  height: 70px;
  background: #f0f7ff; /* light blue bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0056b3;
}
#why h5 {
  font-size: 16px;
  margin-top: 10px;
}
#why p {
  font-size: 14px;
  color: #555;
}

/* --------------------
   CTA STRIPS
-----------------------*/
.cta-strip {
    background-color: #f0f7ff !important;
    padding: 90px 0px !important;
}
.cta-strip h3 {
    font-size: 41px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

/* --------------------
   HOW IT WORKS
-----------------------*/
/* How It Works */
#how-it-works .card {
  border-radius: 10px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
}
#how-it-works .card:hover {
  transform: translateY(-5px);
}
section#how-it-works {
    padding-top: 90px !important;
    padding-bottom: 110px !important;
}
.step-circle {
  width: 35px;
  height: 35px;
  background: #0056b3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.icon-circle-sm {
  width: 70px;
  height: 70px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0056b3;
  margin-top: 20px;
}
#how-it-works h5 {
  font-size: 16px;
  margin-top: 10px;
}
#how-it-works p {
  font-size: 14px;
  color: #555;
}

/* --------------------
   TESTIMONIALS
-----------------------*/
/* Testimonials */
#testimonials .card {
  border-radius: 10px;
  text-align: left;
  transition: all 0.3s ease;
}
#testimonials .card:hover {
  transform: translateY(-5px);
}
#testimonials .testimonial-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  font-style: italic;
}
#testimonials .stars i {
  font-size: 14px;
}


/* --------------------
   CORE SERVICES
-----------------------*/
/* Our Core Services */

#core-services .card {
  border-radius: 10px;
  transition: all 0.3s ease;
}
#core-services .card:hover {
  transform: translateY(-5px);
}

section#core-services {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}
#core-services .icon-circle-sm {
  width: 50px;
  height: 50px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0056b3;
}
#core-services h5 {
  font-size: 16px;
  margin-bottom: 5px;
}
#core-services p {
  font-size: 14px;
  color: #fff;
}

/* --------------------
   STATS SECTION
-----------------------*/
/* Stats Section */
/* Stats Section */
.stats-section .stats-box {
  background: #1e90ff url('../img/pattern.png') no-repeat center center;
  background-size: cover;
  border-radius: 10px;
  padding: 50px 20px;
}

.stats-section .stat-item i {
  color: #fff;
}

.stats-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stats-section p {
  font-size: 15px;
  margin: 0;
}

.fullcoree {
    padding-bottom: 20px !important;
    padding-top: 60px !important;
}

/* --------------------
   CONTACT SECTION
-----------------------*/
#contact h5 {
  font-weight: 600;
  margin-bottom: 15px;
}
#contact p {
  margin-bottom: 8px;
  font-size: 15px;
}
#contact i {
  color: #0056b3;
  margin-right: 8px;
}
h2.text-center.mb-4.headingcon {
    margin-bottom: 82px !important;
}
/* --------------------
   FAQ SECTION
-----------------------*/
.accordion-button {
  font-weight: 500;
  background: none;
  box-shadow: none !important;
  padding: 1rem 0;
}

.accordion-button::after {
  filter: invert(0.4); /* arrow हल्का black/grey */
}

.accordion-button:not(.collapsed) {
  background: none;
  color: #000;
  font-weight: 600;
  box-shadow: none;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

.accordion-body {
  padding: 0 0 1rem 0;
  font-size: 0.95rem;
  color: #555;
}


/* --------------------
   FINAL CTA (Light Blue)
-----------------------*/
.bg-lightblue {
  background-color: #f0f7ff;
}
.bg-lightblue h2 {
  font-size: 22px;
  color: #111;
}

/* --------------------
   FOOTER
-----------------------*/
footer {
  font-size: 14px;
}
footer h6 {
  margin-bottom: 15px;
}
footer ul li {
  margin-bottom: 6px;
}
footer ul li a {
  color: #444;
}
footer ul li a:hover {
  color: #0056b3;
  text-decoration: underline;
}
footer hr {
    margin: 20px 0;
    border-color: #8d8a8a;
}
.btnborder-radius {
    color: #3c3c3c !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
}

/* Testimonials */
#testimonials .card {
  border: none;
  border-radius: 10px;
  min-height: 250px;
}
#testimonials img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  /*border: 3px solid #0056b3;*/
}
#testimonials p {
  font-size: 15px;
  color: #555;
}
#testimonials h6 {
  margin-top: 10px;
  font-weight: 700;
  color: #0056b3;
}

.btn:hover{
    background-color: #55a2ff !important;
    border-color: #4176b5 !important;
    color:#fff !important;
}













.button.mx-auto {
    margin: 0 auto !important;
    text-align: center;
}



.cta-strip h3 {
  font-weight: 700;
  color: #222;
  text-align: center;
  line-height: 1.3;

  /* ✅ Responsive font size */
  font-size: clamp(20px, 5vw, 36px);
}


@media (max-width: 480px) {
  .logo-grid {
    gap: 10px;
    padding: 10px;
  }
  .logo-grid {
    display: inline-block !important;}
    
    iframe {
    width: 100% !important;
}
    
}
   .logo-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            max-width: 100%;
            margin: 40px auto;
            justify-items: center;
        }

        .logo-grid img {
            width: 100px;
            height: auto;
            border:#8ab9f8 solid 1px;
        }

        .heartbeat {
            animation: heartbeat 1s ease-in-out;
        }

        @keyframes heartbeat {
            0%   { transform: scale(1); }
            14%  { transform: scale(1.3); }
            28%  { transform: scale(1); }
            42%  { transform: scale(1.3); }
            70%  { transform: scale(1); }
            100% { transform: scale(1); }
        }
        
        
        .modal.custom-modal-zindex {
  z-index: 10001 !important;
}
.modal-backdrop.show {
      z-index: 1 !important;
}

     div#videoModal {
    background-color: #000000b3 !important;
}   
        
        
        .custom-modal-zindex {
    z-index: 9999 !important;
  }

  .modal-backdrop.show {
        z-index: 1 !important;
  }
  
  .modal.custom-modal-zindex {
  z-index: 9999 !important;
}

.modal-backdrop.show {
      z-index: 1 !important;
}

section.py-5.bg-light.padtopbot {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
    display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
  height: 100vh;  
}

p.fw-bold.mt-3.hero-cta {
    background-color: #ffffff;
    padding: 0px 10px;
}

/* Heartbeat animation */
@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}

/* Apply animation on hover */
.btn-heartbeat:hover {
  animation: heartbeat 1s ease-in-out;
}



.hover-zoom {
  transition: transform 0.3s ease;
  display: inline-block; /* zoom properly work karega */
}

.hover-zoom:hover {
  transform: scale(1.05); /* enlarge effect */
}



.flip-card {
  width: 100%;
  height: 500px;
  perspective: 1000px;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.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: 12px;
  overflow: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.flip-card-back {
  background: #0e77ff;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
}



















/* Video Border Around Form - 10px thick */
        .video-border {
            max-width: 520px;
            margin: 0 auto 40px;
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
        }
       
        .video-frame {
            position: relative;
            padding: 10px;
            background: rgba(0, 124, 186, 0.1);
        }
       
        /* Looping Video - Exactly 10px border */
        .border-video {
            width: 100%;
            height: 80px; 
            object-fit: cover;
            border-radius: 20px;
            display: block;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
        }
       
        /* Stable Form Container */
        .form-container {
            max-width: 480px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(25px);
            border-radius: 9px;
            padding: 20px 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow:
                0 25px 60px rgba(0,0,0,0.25),
                inset 0 1px 0 rgba(255,255,255,0.6);
            position: relative;
            z-index: 20;
            transform: translateY(-20px); 
            height: 640px;
                margin-top: 35px !important;
                    margin-bottom: 35px !important;
                    overflow:scroll;
                    overflow-x:hidden;
                    
        }
       
    h1.text-center.headform {
    font-size: 29px;
}    
       
        .subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 500;
        }
       
        label {
            display: block;
            margin-top: 10px;
            font-weight: 700;
            color: #34495e;
            font-size: 15px;
            letter-spacing: 0.5px;
        }
       
        input, select {
            width: 100%;
            padding: 5px 20px;
            margin-top: 8px;
            border: 2px solid #e1e8ed;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
       
        input:focus, select:focus {
            outline: none;
            border-color: #007cba;
            box-shadow:
                0 0 0 4px rgba(0, 124, 186, 0.15),
                0 8px 25px rgba(0, 124, 186, 0.2);
            transform: translateY(-3px);
        }
       
        input:invalid:focus, select:invalid:focus { border-color: #e74c3c; }
        input:valid, select:valid { border-color: #27ae60; }
       
        button#submitBtn {
            background: linear-gradient(135deg, #007cba 0%, #27ae60 100%);
            color: white;
            padding: 20px;
            border: none;
            width: 100%;
            margin-top: 20px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 15px;
            font-weight: 800;
            transition: all 0.4s ease;
            box-shadow: 0 15px 35px rgba(0, 124, 186, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
       
        button#submitBtn:hover:not(:disabled) {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 124, 186, 0.4);
        }
       
        button#submitBtn:disabled {
            background: linear-gradient(135deg, #bdc3c7, #95a5a6);
            cursor: not-allowed;
            transform: none;
        }
       
        .captcha-box {
            background: linear-gradient(135deg, rgba(248,249,250,0.9), rgba(233,236,239,0.9));
                padding: 10px 5px;
            border: 3px solid rgba(0,124,186,0.2);
            margin-top: 25px;
            text-align: center;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
       
        .captcha-code {
            font-size: 20px;
            font-weight: 900;
            color: #2c3e50;
            letter-spacing: 12px;
            font-family: 'Courier New', monospace;
            user-select: none;
            margin: 5px 0;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
        }
       
        .human-check {
                margin-top: 20px;
               
    text-align: center;
    padding: 0px 10px 15px;
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-radius: 20px;
            border: 2px solid rgba(0,124,186,0.3);
            box-shadow: 0 8px 25px rgba(0,124,186,0.15);
        }
       
        .human-check input[type="checkbox"] {
            width: auto;
            margin-right: 18px;
            transform: scale(1.5);
            accent-color: #007cba;
        }
       
        .error { color: #e74c3c; font-weight: 700; margin-top: 12px; }
        .success { color: #27ae60; font-weight: 700; }
       
        .hidden { display: none; }
       
        /* Responsive */
        @media (max-width: 600px) {
            .form-container { margin: 10px; padding: 25px; }
            .video-border { margin-bottom: 20px; }
            .border-video { height: 60px; }
        }












.form-container::-webkit-scrollbar {
  width: 5px;
  border-radius:10px;
}
 
.form-container::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.0);
  border-radius:33px 0px 33px 0px;
}
 
.form-container::-webkit-scrollbar-thumb {
  background-color: #0454b5;
  outline: 1px solid slategrey;
   border-radius:0px 33px 23px 0px;
}

body::-webkit-scrollbar {
  width: 1em;
}
 
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}





