/*  css of navbar */
.navbar-toggler{
    color: white;
}
/*.navbar-toggler-icon{
    background-color: bisque;
}*/
.bi-hand-index-thumb{
    color: azure;
}
nav{
    background-color: black;
    color: white;
    height: 100px;
}
.container-fluid{
    background-color: black;
}

.container-fluid a{
    color: bisque;

}
.container-fluid a:hover{
    background-color: bisque;
    color: black;
    text-decoration: none;
}
.container-fluid a ul li{
    background-color: black;
}
.dropdown-menu .dropdown-item{
    background-color: black;

}
.nav-item .dropdown-menu  .dropdown-item :hover{
    background-color: darkgoldenrod;
    color: white;

}
/* Navbar CSS ENDED FRom HERE*/
.navbar {
  position: relative;
  z-index: 1050;
}
.carousel {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: black;
    padding: 10px;
  }

  .dropdown-menu {
    position: static;
    float: none;
  }
}

/* card section startst from here*/
.card {
  margin-top: 40px;
}
.slider-container {
  overflow: hidden;
  margin-top: 50px;   /* top space */
}
.img-fluid {
  width: 100%;
  height: 400px;       /* ya jo aap chahte ho */
  object-fit: contain;  /* crop nahi karega */
}
.slider {
  display: flex;
  gap: 20px;
  animation: moveLeft 15s linear infinite;
}

.card {
  min-width: 18rem;
}

@keyframes moveLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.hero-text {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-top:10px;
  letter-spacing: 1px;
}
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
}

.hero-text {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.hero-text {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text {
  text-align: center;
  margin-top: 20px;   /* top space */
}

.hero-section {
  position: relative;
}

.hero-text {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
}
/* text ended */
h2 {
  font-weight: 700;
}

p {
  color: #555;
}
.container{
    margin-top:0px;
    margin-bottom:50px;
}
.hero-section {
  padding-bottom: 0;   /* important */
}

.hero-text {
  margin: 0;           /* removes h1 margin */
  padding-bottom: 8px; /* small controlled spacing */
  text-align: center;
  font-weight: 700;
}

.content-section {
  margin-top: 0 !important;  /* kills Bootstrap mt */
}
.hero-text {
  padding-bottom: 0;
}
.hero-text { margin-bottom: 0; }
.hero-text {
  margin: 0;
  padding: 0;
  color: #2196ff;  /* your blue color */
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
}
.container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* Forms ka  data */
  /* body {
    background: #f5f7fb;
  } */

  .premium-card {
    border-radius: 18px;
  }

  .form-floating > .form-control,
  .form-floating > .form-select {
    border-radius: 10px;
  }

  .icon-input {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 5;
  }

  .icon-padding {
    padding-left: 45px !important;
  }

  .btn-gradient {
    background: linear-gradient(135deg, #198754, #20c997);
    border: none;
    border-radius: 12px;
    color: #fff;
  }

  .btn-gradient:hover {
    opacity: 0.9;
  }

/*------------------------extra  text--------------------------------*/

.left-image {
  min-height: 100%;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* image stretch nahi hogi */
}
/*---------------------------------------------updated css------------------------------*/
/* ===== GLOBAL ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fa;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== NAVBAR ===== */
.navbar {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  font-weight: 500;
}

/* ===== CAROUSEL ===== */
.carousel-item img {
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-caption {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
}

/* ===== HEADINGS ===== */
.main-heading {
  text-align: center;
  margin: 60px 0;
  color: #2c3e50;
  font-weight: 700;
}

.section-title {
  text-align: center;
  font-weight: 700;
  margin: 50px 0 20px;
  color: #2c3e50;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  color: #0d6efd;
  margin-bottom: 20px;
}

.content-section p {
  line-height: 1.8;
  color: #555;
}

.content-section img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== FORM ===== */
.card {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.card-header {
  border-radius: 20px 20px 0 0 !important;
}

.form-control,
.form-select {
  border-radius: 10px;
}

.btn-success {
  padding: 12px;
  font-weight: 600;
  border-radius: 10px;
}

/* ===== FAQ ===== */
.accordion-item {
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
}

.accordion-body {
  background: #222;
  color: #fff;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 60px;
}

footer h5 {
  font-weight: 700;
}

/* ===================================
   RESPONSIVE BREAKPOINTS
=================================== */

/* ===== TABLET ===== */
@media (max-width: 991px) {

  .carousel-item img {
    height: 400px;
  }

  .content-section {
    padding: 40px 0;
  }

  .main-heading {
    margin: 40px 0;
    font-size: 26px;
  }

}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .carousel-item img {
    height: 300px;
  }

  .carousel-caption {
    font-size: 14px;
    padding: 10px;
  }

  .main-heading {
    font-size: 22px;
    margin: 30px 0;
    padding: 0 10px;
  }

  .section-title {
    font-size: 22px;
  }

  .content-section {
    padding: 30px 15px;
  }

  .content-section h2 {
    font-size: 20px;
  }

  .card {
    margin: 10px;
  }

  footer p {
    font-size: 13px;
  }

}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

  .carousel-item img {
    height: 220px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .main-heading {
    font-size: 18px;
  }

}
/*-----------------------Navbar updated changes----------------------------*/
/* Dropdown item focus (arrow key navigation fix) */
.dropdown-item:focus,
.dropdown-item.active {
    background-color: #198754 !important;  /* Green background */
    color: #fff !important;               /* White text */
}

/* Navbar link focus (keyboard navigation fix) */
.nav-link:focus {
    color: #198754 !important;
}
.navbar .nav-link:focus {
    outline: none;
    box-shadow: none;
}
/*-------------card section-------------*/
.feature-card {
  transition: 0.3s ease;
  border-radius: 15px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}
/* hero section */
.hero-section {
  height: 90vh;
  background: linear-gradient(135deg, #0f2027, #2c5364);
}
/*-----------------Second File----------------------*/
/* HERO SECTION */
.hero-section {
  height: 90vh;
  background: linear-gradient(135deg, #0f2027, #2c5364);
}

/* SERVICES SLIDER CARD */
.swiper-slide {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* COUNTER SECTION */
.counter-section {
  background: #f8f9fa;
}

.counter {
  font-size: 40px;
  font-weight: bold;
  color: #198754;
}

/* GRADIENT SECTION */
.gradient-section {
  background: linear-gradient(45deg, #11998e, #38ef7d);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 1000;
}
/*------------some another sections ----------------------------*/
.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-card {
    transition: 0.4s ease;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
body{
background:#0b0b0b;
color:white;
}
.lead-card{
background:#111;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.6);
}

.lead-card .form-control,
.lead-card .form-select{
background:#1c1c1c;
border:1px solid #333;
color:white;
}

.lead-card label{
color:#ccc;
}

.lead-card .form-control:focus,
.lead-card .form-select:focus{
background:#1c1c1c;
color:white;
border-color:#00c896;
box-shadow:none;
}
.btn-gradient{
background:linear-gradient(45deg,#00c896,#00a86b);
border:none;
color:white;
border-radius:8px;
}

.btn-gradient:hover{
background:linear-gradient(45deg,#00a86b,#00c896);
}
.icon-input{
position:absolute;
left:14px;
top:50%;
transform:translateY(-50%);
color:#888;
}

.icon-padding{
padding-left:40px;
}
.form-image{
height:100%;
object-fit:cover;
border-radius:16px 0 0 16px;
}
/*-------dropdown changes------------*/
/* Remove white border and shadow from dropdown */
.dropdown-menu{
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important; /* optional */
}

/* If you still want white background but no border */
.dropdown-menu{
    border: none !important;
    box-shadow: none !important;
}
/*this changes forms--*/
.lead-form-section{
    background:#f8f9fa;
    padding:25px;
    border-radius:10px;
}

.lead-form-box{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.lead-image{
    max-height:300px;
}

.lead-form-box input,
.lead-form-box select,
.lead-form-box textarea{
    font-size:14px;
}
/*---form size reduce--*/
.form-image{
    height:100%;
    width:100%;
    object-fit:cover;
    border-radius:10px 0 0 10px;
}
.col-md-5{
    max-height:600px;
}
.lead-card{
    max-width:950px;
    margin:auto;
}

.lead-card .form-control,
.lead-card .form-select{
    font-size:14px;
    padding:10px 12px;
}

.lead-card .form-floating label{
    font-size:14px;
}

.icon-input{
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    font-size:14px;
}

.icon-padding{
    padding-left:35px;
}
/*----imagekat reduce---*/
.form-image{
    width: 100%;
    height: auto;
    object-fit: contain; /* image will not crop */
    border-radius: 10px 0 0 10px;
}
#get{
  color:white;
}