
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary);
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top {
    transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid var(--bs-secondary);
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-secondary);
}

.nav-bar .navbar-toggler { 
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        rgba(0, 18, 72, 0.35),
        rgba(0, 18, 72, 0.35)
    ),
    url(../img/carousel-2.png);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}





/*********************************
 CAROUSEL RESPONSIVE FIX
*********************************/

/* REMOVE ALL OVERLAYS / SHADOW */
.carousel-item::before,
.carousel-item::after,
.carousel-caption::before,
.carousel-caption::after,
.carousel-inner::before,
.carousel-inner::after {
    display: none !important;
    content: none !important;
}

/* REMOVE DARK BACKGROUND */
.carousel-caption {
    background: transparent !important;
    box-shadow: none !important;
}

/* ===============================
 DESKTOP VIEW (1375 x 522)
================================ */
@media (min-width: 992px) {

    .carousel .carousel-inner .carousel-item {
        height: 522px !important;
    }

    .carousel .carousel-inner .carousel-item img {
        width: 1375px;
        height: 522px !important;
        object-fit: cover;
        margin: 0 auto;
        display: block;
    }
}

/* ===============================
 TABLET VIEW
================================ */
@media (max-width: 991px) and (min-width: 577px) {

    .carousel .carousel-inner .carousel-item {
        height: 420px !important;
    }

    .carousel .carousel-inner .carousel-item img {
        width: 100%;
        height: 420px !important;
        object-fit: cover;
    }
}

/* ===============================
 MOBILE VIEW
================================ */
@media (max-width: 576px) {

    .carousel .carousel-inner .carousel-item {
        height: 300px !important;
    }

    .carousel .carousel-inner .carousel-item img {
        width: 100%;
        height: 300px !important;
        object-fit: cover;
    }

    .carousel-item .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-item .carousel-caption p {
        font-size: 14px;
    }
}

/* REMOVE 100vh & 720px CONFLICT */
.carousel .carousel-inner .carousel-item,
.carousel-item img {
    min-height: unset !important;
    max-height: unset !important;
}




/*********************************
 MOBILE BANNER CUT FIX
*********************************/

/* DESKTOP & TABLET */
@media (min-width: 577px) {
    .carousel .carousel-inner .carousel-item img {
        object-fit: cover !important;
    }
}

/* MOBILE VIEW – NO CUT */
@media (max-width: 576px) {

    .carousel .carousel-inner .carousel-item {
        height: auto !important;
    }

    .carousel .carousel-inner .carousel-item img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        background-color: #ffffff;
    }
}




header,
.navbar,
.navbar-area {
    background-color: #ffffff !important;
}



/** why choose us*/




.why-choose-us {
  padding: 80px 0;
  background: #ffffff;
}

.section-tag {
  color: #1bbfa3;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

/* Choose Box */
.choose-box {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.choose-box .number {
  width: 50px;
  height: 50px;
  background: #1bbfa3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.choose-box h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.choose-box p {
  margin-top: 5px;
  color: #666;
  font-size: 15px;
}

/* Right Side */
.image-stack {
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 12px;
}

.img-small {
  width: 60%;
  position: absolute;
  bottom: -60px;
  left: -60px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 2;
}

.experience-badge h3 {
  color: #111;
  font-size: 24px;
  margin-bottom: 5px;
}

.experience-badge span {
  font-size: 14px;
  color: #555;
}



/** Area of business*/

.business-area {
  padding: 70px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.small-title {
  color: #0b1c8c;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.main-title span {
  color: red;
}

.slider-wrapper {
  position: relative;
}

.cards {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.cards::-webkit-scrollbar {
  display: none;
}

.card {
  min-width: 340px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.img-box {
  position: relative;
}

.img-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 3px;
}

.card h3 {
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #003a40;
}

/* arrows */
.nav {
  position: absolute;
  top: 45%;
  background: #fff;
  border: none;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.prev { left: -20px; }
.next { right: -20px; }

@media(max-width: 768px) {
  .card {
    min-width: 280px;
  }
}



/** Our sevide crusal */



.our-services {
  padding: 90px 0;
  background: #23288b url("world-map.png") center/cover no-repeat;
  color: #fff;
}

/* Heading */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header span {
  font-size: 14px;
  opacity: 0.9;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
}

/* Cards Row – ONE ROW */
.services-row {
  display: flex;
  flex-direction: row;     /* 👈 LEFT to RIGHT */
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;       /* 👈 ek hi row me rakhega */
}

/* 4 Card */
.service-card {
  background: #fff;
  color: #111;
  width: 280px;            /* 4 cards fit hone ke liye */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0px 40px rgba(0,0,0,0.3);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.service-content {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Arrow */
.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  font-size: 18px;
}

/* Count Bubble */
.count {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #0a2a2a;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Dots */
.slider-dots {
  margin-top: 40px;
  text-align: center;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  background: #aaa;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}

.slider-dots .active {
  background: red;
}

/* Responsive */
@media (max-width: 992px) {
  .services-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .services-row {
    flex-direction: column;
    align-items: center;
  }
}



/** Mission and Area*/




.business-mission {
  width: 100%;
  background: #000;
}

.mission-wrapper {
  display: flex;
  position: relative;
  min-height: 420px;
}

.mission-box {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* CHANGE IMAGES HERE */
.left-box {
  background-image: url("https://shrigeetanandgenerator.com/img/factories.png");
}

.right-box {
  background-image: url("https://shrigeetanandgenerator.com/img/industries.jpg");
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  height: 100%;
  padding: 60px 50px;
}

.overlay h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

.overlay p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

.yellow-btn {
  display: inline-block;
  background: #ffd400;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.yellow-btn:hover {
  background: #ffbf00;
}

/* RED CENTER LINE */
.divider {
  width: 6px;
  background: #ff0000;
}


/** Mobile fix*/

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

  .mission-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .mission-box {
    min-height: 320px;
  }

  .overlay {
    padding: 30px 20px;
    text-align: left;
  }

  .overlay h2 {
    font-size: 22px;
  }

  .overlay p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
  }

  .yellow-btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  /* RED DIVIDER MOBILE FIX */
  .divider {
    width: 100%;
    height: 4px;
  }
}

/** END Mobile fix**/



/** END Mission and Area*/



/** Location*/

.service-links {
  padding: 60px 0;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 20px;
}

.links-grid a {
  display: inline-block;
  background: #2e7d32;
  color: #ffffff;
  text-align: center;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: 0.3s ease;
}

.links-grid a:hover {
  background: #2e7d32;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
}


/** Location*/





/** WhatsApp and call buttion*/

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.footer-left,
.footer-right {
  width: 50%;
  text-align: center;
  padding: 14px 0;
}

.footer-left {
  background-color: #0a8f6a; /* WhatsApp green */
}

.footer-right {
  background-color: #f01818; /* Call red */
}

.fixed-footer a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fixed-footer a:hover {
  opacity: 0.9;
}

/* Mobile responsive text */
@media (max-width: 768px) {
  .fixed-footer a {
    font-size: 14px;
  }
}



/** end WhatsApp and call buttion*/


/** For mobile view*/



@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 28px !important;
    line-height: 1.2;
  }
}

/** end For mobile view*/


/**end image and content area */

.generator-section {
  padding: 80px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.generator-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left Image */
.generator-image {
  flex: 45%;
}

.generator-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Right Content */
.generator-content {
  flex: 55%;
}

.generator-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.generator-content h3 {
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 10px;
  font-weight: 600;
}

.generator-content h4 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 8px;
  font-weight: 600;
}

.generator-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .generator-wrapper {
    flex-direction: column;
  }
}

/**image and content area */



/*contact page */



.contact-section {
  padding: 70px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
}

.contact-info {
  width: 50%;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.info-box {
  border: 1px solid #3b4fff;
  padding: 25px;
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.icon {
  font-size: 26px;
}

.info-box h4 {
  color: #2d2dbf;
  margin-bottom: 8px;
}

/* ===================== */
/* CONTACT FORM */
/* ===================== */

.contact-form {
  width: 50%;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 6px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 25px;
}

.contact-form .row {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 50px;          /* ✅ same size for all boxes */
  padding: 12px 15px;
  border: none;
  margin-bottom: 15px;
  border-radius: 4px;
  outline: none;
  font-size: 15px;
  box-sizing: border-box;
}

/* Message box slightly bigger */
.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  background: #e11900;
  color: #fff;
  padding: 15px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

/* ===================== */
/* MOBILE RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}


/* endcontact page */



