.stats-box {
  position: absolute;
  top: -60px; /* upar overlap */
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  justify-content: space-between;
  gap: 60px;

  background: #ffffff;
  padding: 25px 60px;
  border-radius: 50px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 10;
}

.stat {
  text-align: center;
}

.stat h2 {
  font-size: 40px;
  color: #1E88E5; /* same banner blue */
  margin: 0;
  font-weight: 700;
}

.stat p {
  font-size: 14px;
  color: #333;
  margin: 5px 0 0;
  letter-spacing: 1px;
}

.about-section {
  position: relative;
  padding-top: 100px; /* space for overlap */
}
@media (max-width: 768px) {
  .stats-box {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    top: -80px;
  }
}

.banner-section {
    position: relative;
    width: 100%;
}

/* MAIN CONTAINER */
.single-banner-video {
    position: relative;
    height: 90vh; /* FULL BANNER HEIGHT */
    overflow: hidden;
}

/* VIDEO FIX */
.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* OVERLAY */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2;

    display: flex;
    align-items: center;   /* 👈 vertical center */
}

/* FLEX LAYOUT */
.banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT CONTENT */
.banner-left {
    color: #fff;
    max-width: 520px;

    margin-left: 60px; /* 👈 left se spacing (Oasis jaisa) */
}

.banner-left h1 {
    font-size: 72px;   /* 👈 bada karo */
    font-weight: 700;
    line-height: 1.05;
    margin: 10px 0;
}
.small-text {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
}
.banner-left p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
}

/* RIGHT SIDE */
.banner-right {
    width: 40%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .banner-flex {
        flex-direction: column;
        text-align: center;
    }

    .banner-left h1 {
        font-size: 40px;
    }

    .banner-right {
        display: none;
    }
}

.banner-left {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.single-banner-video {
    position: relative;
    height: 70  vh; /* 👈 important (90vh nahi, full screen) */
    overflow: hidden;
}

.custom-tagline {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 10px;
    font-weight: 500;
}

.customheadc{
    color:#007487;
    font-weight: 600 !important;
}


/* About :start */
.about-modern {
    padding: 80px 20px;
    background: #f4f9ff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT */
.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0F4C5C;
    margin-bottom: 20px;
}

.about-left h2 span {
    color: #0492b6;
}

.about-left p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #0492b6;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #023c4b;
    color: #fff;
}

/* RIGHT IMAGE */
.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* 3D CARD EFFECT */
.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 10px 20px rgba(30,136,229,0.2);
    transition: 0.4s;
}

.image-card img {
    width: 100%;
    display: block;
}

/* HOVER EFFECT 🔥 */
.image-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}
/* About end */

.customtxtclr{
    color:#0492b6 !important;
}


/* Video ke liey */
.video-section {
    text-align: center;
    background: #000;
    padding: 80px 20px;
}

.video-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

.video-subtitle {
    color: #bbb;
    margin-bottom: 40px;
}

/* VIDEO BOX */
.video-box {
    position: relative;
    max-width: 900px;
    margin: auto;
    cursor: pointer;
}

.video-box img {
    width: 100%;
    display: block;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn span {
    color: #fff;
    font-size: 28px;
    margin-left: 5px;
}

/* POPUP */
.video-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-content {
    width: 80%;
    max-width: 900px;
    position: relative;
}

.video-content iframe {
    width: 100%;
    height: 500px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* product card */


/* product card */

.producrcard{
    background:#0492b6 !important
}

.elementor-96 .elementor-element.elementor-element-136ac32 > .elementor-background-overlay {
    background: linear-gradient(90deg, #034866, #116889);
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-96 .elementor-element.elementor-element-d8ba0c4:not(.elementor-motion-effects-element-type-background), .elementor-96 .elementor-element.elementor-element-d8ba0c4>.elementor-motion-effects-container>.elementor-motion-effects-layer {
    background-color: #0492b6 !important;
}

/* Get Quote  */

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-icon:hover {
  background: #1ebe5d;
}

/* menu */

/* Mobile Header Fix */
@media (max-width: 767px) {

  /* Full row flex bana do */
  .elementor-element-d4f6e81 .elementor-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo left */
  .elementor-element-5fdb616 {
    width: auto !important;
  }

  /* Menu column right push */
  .elementor-element-c48ed5a {
    width: auto !important;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
  }

  /* Toggle button right align */
  .elementor-menu-toggle {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
  }

}

/* About us responsive */


/* Mobile */
@media (max-width: 767px) {

  .about-container {
    flex-direction: column;
    text-align: left;
  }

  .about-left h2 {
    font-size: 28px;
  }

  .about-left p {
    font-size: 14px;
  }

  /* Image neeche aaye */
  .about-right {
    margin-top: 20px;
  }

  .image-card {
    max-width: 100%;
  }

  /* Button full width optional */
  .about-btn {
    display: inline-block;
    width: fit-content;
  }
}

/* end */
.about-banner {
    width: 100%;
    height: 350px;
    background: url('../../assets/images/banner-about.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 🔥 Premium Blue Overlay */
.about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to right,
        rgba(31, 33, 34, 0.75),
        rgba(3, 32, 51, 0.6)
    );

    z-index: 1;
}

/* Text above overlay */
.about-banner * {
    position: relative;
    z-index: 2;
}

.about-banner-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.about-banner-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.about-banner-content p {
    font-size: 18px;
}
.welcome-row {
    text-align: center;
    margin: 5rem 0; /* top & bottom gap */
}

.welcome-row h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0492b6 ;
    position: relative;
    display: inline-block;
}

/* underline design */
.welcome-row h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #0492b6;
    margin: 10px auto 0;
    border-radius: 2px;
}

.welcome-row {
    text-align: center;
    margin: 5rem 0;
}

.welcome-row h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0492b6 ;
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    color: #555;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.welcome-row h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #0492b6;
    margin: 12px auto 0;
}
/* End */

/* sub-manu hover background */

/* Sub Menu Background Color */
.elementor-nav-menu--dropdown {
    background-color: #0492b6 !important; /* Header ka color */
}

/* Submenu Item Hover Color */
.elementor-nav-menu--dropdown a:hover {
    background-color: #0492b6 !important;
    color: #fff !important;
}

/* Active/Open Menu */
.elementor-nav-menu--dropdown .menu-item:hover > a {
    background-color: #0492b6 !important;
}

/* pdf download */
.downloads-section {
    padding: 40px 20px;
    background: #f5f5f5;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.downloads-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.download-box {
    background: #e9e9e9;
    padding: 25px 35px;
    min-height: 95px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;

    border-radius: 10px;
    transition: 0.3s ease;
}

.download-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.download-box {
    background: #e9e9e9;
    padding: 25px 35px;
    min-height: 95px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;

    border-radius: 10px;
    transition: 0.3s ease;
}


.download-text:hover {
    text-decoration: underline;
}

.download-icon {
    color: #c50606;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    
    background: transparent;   /* white circle remove */
    border-radius: 0;          /* round remove */
    min-width: auto;
    min-height: auto;
    padding: 0;
    box-shadow: none;
}

.download-icon svg {
    width: 24px;
    height: 24px;
}

.download-icon:hover {
    color: #0492b6;
    background: transparent;
}

/* Tablet */
@media (max-width: 768px) {

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .downloads-title {
        font-size: 34px;
    }

    .download-box {
        padding: 20px;
    }

    .download-text {
        font-size: 14px;
    }
}
/* Mobile */
@media (max-width: 480px) {

    .download-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .download-icon {
        align-self: center;
        margin-top: 10px;
    }

    .download-text {
        width: 100%;
        text-align: center;
    }
}

/* End download */

/* model  */

.image-modal{
    display:none;
    position:fixed;
    z-index:99999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    text-align:center;
}

.image-modal img{
    max-width:90%;
    max-height:90%;
    margin-top:3%;
    border-radius:10px;
}

.close-btn{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}

/* responsive download section */
/* Mobile Menu dropdown css */

/* end */

/* Why Choose Us */
.why-choose {
  background: #f5f5f5;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.why-choose .container {
  max-width: auto;
  margin: auto;
}

.small-title {
  color: #777;
  font-size: 14px;
  margin-bottom: 5px;
}

h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #1f2a37;
}

.desc {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Accordion */
.accordion-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s;
}


/* hover effect */
.accordion-item:hover {
  transform: translateY(-3px);
}


/* Header */
.accordion-header {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #0492b6;
}

/* Title */
.accordion-header .title {
  font-size: 16px;
}

/* Content */
.accordion-content {
  display: none;
  padding: 15px 20px;
  color: #444;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.accordion-item.active .accordion-content {
  display: block;
}

.cusicon {
  width: 35px;
  height: 35px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cusicon {
  transition: transform 0.3s;
}
.cusicon i {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item.active .icon i {
  transform: rotate(180deg);
}
/* Accordion wrapper */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px; /* spacing between boxes */
}
/* Why Choose Us End */

/* our mission  */
/* Section */
.mv-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eef4f8, #ffffff);
  font-family: 'Poppins', sans-serif;
}

/* Grid */
.mv-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.mv-card {
  width: 320px;
  padding: 40px 25px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b3c5d, #0f5c8c);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Hover effect */
.mv-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Glow overlay */
.mv-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(25deg);
  transition: 0.6s;
  opacity: 0;
}

.mv-card:hover::before {
  opacity: 1;
  transform: rotate(25deg) translateY(100%);
}

/* Icon */
.mv-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Title */
.mv-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Text */
.mv-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-card {
    width: 100%;
  }
}
/* end mission */
.customcolor{
    color:#0492b6 !important;
}

.whatsapp-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-btn:hover{
    transform: scale(1.05);
    background: #20ba5a;
}

.whatsapp-btn img{
    width: 24px;
    height: 24px;
}

@media(max-width:768px){
    .whatsapp-btn{
        font-size: 14px;
        padding: 8px 14px;
    }

    .whatsapp-btn img{
        width: 20px;
        height: 20px;
    }
}