* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: var(--jost);
}


/********** Template CSS **********/
:root {
    --primary: #2a1165;
    --secondary: #EDDD5E;
    --light: #F7F7F7;
    --dark: #404A3D;
    --shadow : 0px 0px 10px 1px #888;
}




/*=== Enquiry-Form-Starts ===*/

    

    .open-btn {
      padding: 12px 25px;
      background-color: var(--primary);
      color: white;
      font-size: 1rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .open-btn:hover {
      background-color: #004c99;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 99999999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
    }

    .modal-content {
      background-color: #447D9B;
      margin: 10% auto;
      padding: 30px 20px;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
      position: relative;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .modal-content h3 {
      margin-top: 0;
      color: white;
      margin-bottom: 20px;
    }
    
    #queryModal form{
        background-color:#447D9B !important;
    }

    .form-group {
      margin-bottom: 15px;
      text-align: left;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 5px;
      color: white !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .submit-btn {
      background-color: #0066cc;
      color: white;
      border: none;
      padding: 12px 20px;
      font-size: 1rem;
      border-radius: 6px;
      cursor: pointer;
      width: 100%;
      margin-top: 10px;
    }

    .submit-btn:hover {
      background-color: #004c99;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 40px;
      color: red;
      cursor: pointer;
    }

    .close-btn:hover {
      color: #000;
    }

    @media (max-width: 480px) {
      .modal-content {
        padding: 20px 15px;
      }
    }

/*=== Enquiry-Form-Ends ===*/



.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

  #google_translate_element {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 9999;
  }

  .goog-te-banner-frame.skiptranslate {
    display: none !important;
  }

/*=== Float-Call-Button-Starts ===*/

.call-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary);
    color: white;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: background 0.3s ease;
}

.call-button:hover {
    background-color: #0da3b7;
}

@media (max-width: 600px) {
    .call-button {
        font-size: 14px;
        padding: 13px 16px;
        bottom: 15px;
        left: 15px;
    }
}

/*=== Float-Call-Button-Ends ===*/

/*=== Float-Whatsapp-Button-Starts ===*/

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

@media (max-width: 600px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button img {
        width: 26px;
        height: 26px;
    }
}

/*=== Float-Whatsapp-Button-Ends ===*/

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}


/*** 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;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 10px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

nav .logo img {
    height: 50px;
}

@media (max-width: 1400px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 1400px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media(max-width:600px) {
    nav .logo img {
        height: 40px;
    }
}

@media(max-width:410px) {
    nav .logo img {
        height: 30px;
    }
}


/*** Header ***/
/*.carousel-caption {*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    background: rgba(0, 0, 0, .1);*/
/*    z-index: 1;*/
/*}*/

/*.carousel-control-prev,*/
/*.carousel-control-next {*/
/*    width: 15%;*/
/*}*/

/*.carousel-control-prev-icon,*/
/*.carousel-control-next-icon {*/
/*    width: 3rem;*/
/*    height: 3rem;*/
/*    border-radius: 3rem;*/
/*    background-color: var(--primary);*/
/*    border: 10px solid var(--primary);*/
/*}*/


/*#header-carousel .carousel-item {*/
/*        position: relative;*/
        /*min-height: 450px;*/
/*    }*/

/*#header-carousel .carousel-item img {*/
/*        position: relative;*/
/*        object-fit: contain;*/
/*        aspect-ratio: 1655/621;*/
/*    }*/


/*.page-header {*/
/*    background: url(../img/banner.jpg) center center no-repeat;*/
/*    background-size: cover;*/
/*}*/

/*.page-header .breadcrumb-item+.breadcrumb-item::before {*/
/*    color: var(--light);*/
/*}*/

/*.page-header .breadcrumb-item,*/
/*.page-header .breadcrumb-item a {*/
/*    font-size: 18px;*/
/*    color: var(--light);*/
/*}*/


.hero-banner {
    background-image: url('../../img/banner/banner.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

@media(max-width:950px){
    .hero-banner {
    background-image: url('../../img/banner/banner.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
  }
}

@media(max-width:600px){
    .hero-banner {
    background-image: url('../../img/banner/m-banner.png'); /* Replace with your image */
    background-size: cover;
    background-position: top;
  }
}

  .banner-overlay {
    background-color: rgba(0, 150, 200, 0.4);
    padding: 40px;
    border-radius: 16px;
    max-width: 90%;
  }

  .hero-banner h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;
  }

  .hero-banner h2 {
    font-size: 2rem;
    font-weight: 400;
    min-height: 50px;
  }

  .cursor {
    font-weight: bold;
    color: #00d0ff;
    animation: blink 0.7s infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  @media (max-width: 768px) {
    .hero-banner h1 {
      font-size: 2.2rem;
    }

    .hero-banner h2 {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .hero-banner {
      padding: 30px 10px;
    }

    .banner-overlay {
      padding: 20px;
    }

    .hero-banner h1 {
      font-size: 1.8rem;
    }

    .hero-banner h2 {
      font-size: 1.2rem;
    }
  }

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

@media(max-width:500px){
.service-item .service-text{
    padding: 5px;
    }
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}


/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}

/*=== Carousel-Starts ===*/

.carousel-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin: 0 auto;
}

.image-carousel .item img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
    border-radius: 10px;
}

.image-carousel .item img:hover {
    filter: grayscale(0%);
}

.owl-carousel .owl-item {
    padding: 10px;
}

/*=== Carousel-Ends ===*/

/*=== Dry-Injection-Starts ===*/

.table-page {
    max-width: 1400px;
    margin: auto;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.page-name {
    text-align: right;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

th {
    background-color: #004b55;
    color: white;
    padding: 1rem;
    text-align: left;
}

td {
    background-color: #fff;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

tr:hover td {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {

    th,
    td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    th,
    td {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/*=== Dry-Injection-Ends ===*/


/*=== About-CompanyProfile-Starts ===*/

/*.list-container {*/
/*    max-width: 1400px;*/
/*    margin: auto;*/
/*    background: white;*/
/*    padding: 2rem;*/
/*    border-radius: 16px;*/
/*    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
/*}*/

/*.list-container h2 {*/
/*    text-align: center;*/
/*    margin-bottom: 1.5rem;*/
/*    color: #333;*/
/*}*/

/*ul.stylish-list {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*ul.stylish-list li {*/
/*    background: #f0f0f0;*/
/*    margin-bottom: 1rem;*/
/*    padding: 1rem 1.5rem;*/
/*    border-radius: 12px;*/
/*    transition: background 0.3s ease, transform 0.2s ease;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    font-size: 1.1rem;*/
/*    color: #222;*/
/*}*/

/*ul.stylish-list li:hover {*/
/*    background: #e0e0e0;*/
/*    transform: translateX(5px);*/
/*}*/

/*ul.stylish-list li::before {*/
/*    content: "✓";*/
/*    color: green;*/
/*    font-weight: bold;*/
/*}*/

/*@media (max-width: 600px) {*/
/*    ul.stylish-list li {*/
/*        font-size: 1rem;*/
/*        padding: 0.9rem 1.2rem;*/
/*    }*/
/*}*/


/*  .about-section .container {*/
/*    max-width: 1000px;*/
/*    margin: 0 auto;*/
/*    text-align: center;*/
/*  }*/

/*  .about-section h2 {*/
/*    font-size: 2.5rem;*/
/*    color: #2b2b2b;*/
/*    margin-bottom: 20px;*/
/*    position: relative;*/
/*  }*/

/*  .about-section h2::after {*/
/*    content: "";*/
/*    display: block;*/
/*    width: 60px;*/
/*    height: 4px;*/
/*    background: #00aaff;*/
/*    margin: 10px auto 0;*/
/*    border-radius: 2px;*/
/*  }*/

/*  .about-section p {*/
/*    font-size: 1.1rem;*/
/*    line-height: 1.8;*/
/*    color: #555;*/
/*    max-width: 800px;*/
/*    margin: 0 auto;*/
/*  }*/

  /* Responsive */
/*  @media (max-width: 768px) {*/
/*    .about-section h2 {*/
/*      font-size: 2rem;*/
/*    }*/
/*    .about-section p {*/
/*      font-size: 1rem;*/
/*    }*/
/*  }*/

/*  @media (max-width: 480px) {*/
/*    .about-section {*/
/*      padding: 40px 15px;*/
/*    }*/
/*    .about-section h2 {*/
/*      font-size: 1.6rem;*/
/*    }*/
/*  }*/
  
  
/*    .mission-vision-section {*/
/*    padding: 60px 20px;*/
/*    background-color: transparent;*/
/*    font-family: 'Segoe UI', sans-serif;*/
/*  }*/

/*  .mission-vision-section .container {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 30px;*/
/*    justify-content: center;*/
/*    max-width: 1100px;*/
/*    margin: auto;*/
/*  }*/

/*  .mission-vision-section .box {*/
/*    background: #fff;*/
/*    padding: 30px;*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);*/
/*    flex: 1 1 400px;*/
/*    max-width: 500px;*/
/*    transition: transform 0.3s ease;*/
/*  }*/

/*  .mission-vision-section .box:hover {*/
/*    transform: translateY(-5px);*/
/*  }*/

/*  .icon-title {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin-bottom: 20px;*/
/*    gap: 12px;*/
/*  }*/

/*  .icon-title img {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*  }*/

/*  .icon-title h3 {*/
/*    font-size: 1.6rem;*/
/*    color: #222;*/
/*    margin: 0;*/
/*  }*/

/*  .mission-vision-section p {*/
/*    color: #555;*/
/*    font-size: 1.05rem;*/
/*    line-height: 1.7;*/
/*  }*/

  /* Responsive Adjustments */
/*  @media (max-width: 768px) {*/
/*    .mission-vision-section .container {*/
/*      flex-direction: column;*/
/*      align-items: center;*/
/*    }*/
/*  }*/

/*  @media (max-width: 480px) {*/
/*    .icon-title h3 {*/
/*      font-size: 1.3rem;*/
/*    }*/

/*    .mission-vision-section .box {*/
/*      padding: 25px 20px;*/
/*    }*/

/*    .mission-vision-section p {*/
/*      font-size: 1rem;*/
/*    }*/
/*  }*/



 /* About Intro */
  .about-intro {
    background: #f9f9f9;
    padding: 60px 20px;
  }

  .about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 30px;
  }

  .about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
  }

  .about-text {
    flex: 1;
    min-width: 280px;
  }

  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .about-text p {
    font-size: 1.1rem;
    color: #555;
  }

  /* Mission & Vision */
  .mission-vision-section {
    background: #fff;
    padding: 60px 20px;
  }

  .mv-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    gap: 30px;
  }

  .mv-box {
    flex: 1 1 45%;
    background: #f0f4f8;
    padding: 30px;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgb(0, 0, 255, 0.3);
    box-shadow: 0px 0px 15px rgb(0, 0, 255, 0.3);
  }

  .mv-box:hover {
    border-color: #007BFF;
    background: #e6f2ff;
  }

  .mv-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .mv-box p {
    font-size: 1rem;
    color: #444;
  }

  /* Why Choose Us */
  .why-choose-us {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
  }

  .why-choose-us h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
  }

  .why-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
  }

  .why-box {
    flex: 1 1 45%;
    background: #fff;
    padding: 30px;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
    border: 2px solid rgb(0, 0, 255, 0.3);
    box-shadow: 0px 0px 15px rgb(0, 0, 255, 0.3);
    
  }

  .why-box:hover {
    border-color: #28a745;
    background: #e8fbe9;
  }

  .why-box h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #222;
  }

  .why-box p {
    font-size: 1rem;
    color: #555;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .about-container,
    .mv-container,
    .why-container {
      flex-direction: column;
    }

    .mv-box,
    .why-box {
      width: 100%;
    }

    .about-text h2,
    .why-choose-us h2 {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .about-text p,
    .mv-box p,
    .why-box p {
      font-size: 0.95rem;
    }
  }


/*=== About-CompanyProfile-Ends ===*/

/*=== About-TeamMember-Starts ===*/

.image-table-container {
    max-width: 1200px;
    margin: auto;
    background-color: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th {
    background-color: #004b55;
    color: white;
    padding: 1rem;
    text-align: left;
}

td {
    padding: 1rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

table tr td img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

tr:hover td {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    img.table-img {
        width: 80px;
        height: 80px;
    }

    th,
    td {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    img.table-img {
        width: 70px;
        height: 70px;
    }

    th,
    td {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/*=== About-TeamMember-Ends ===*/

/*=== Contact-Starts ===*/

.contact-container {
    max-width: 1400px;
    margin: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 2rem;
}

.main-content {
    flex: 2;
    min-width: 280px;
}

.main-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.info-box {
    background: #caede7;
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.info-box strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

.sidebar {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    background: #caede7;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.sidebar-box h3 {
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    color: #222;
}

.sidebar-box ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sidebar-box ul li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.95rem;
    color: #000000;
    transition: .3s;
}

.sidebar-box ul li a {
    text-decoration: none;
    border-bottom: none;
    color: black;
}

.sidebar-box ul li:hover a {
    color: rgb(0, 77, 87);
}

.sidebar-box img {
    width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
}

.sidebar-box p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.submit-btn {
    padding: 0.6rem 1.2rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 1.2rem;
    }

    .main-content,
    .sidebar {
        flex: 1 1 100%;
    }
}




/*=== Contact-Ends ===*/

/*=== accreditation-Starts ===*/

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.certificate-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width:1400px;
    margin: 0 auto;
    gap: 20px;
    padding: 30px 10px;
}

.certificate {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.certificate img {
    width: 300px;
    height: auto;
    display: block;
    transition: 0.5s ease;
}

.certificate::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.2) 100%);
    transform: rotate(25deg);
    transition: 0.5s;
}

.certificate:hover::before {
    top: 0;
    left: 0;
    animation: shine 1s forwards;
}

.certificate:hover img {
    transform: scale(1.05);
}

@keyframes shine {
    0% {
        top: -100%;
        left: -100%;
    }

    100% {
        top: 100%;
        left: 100%;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    display: none;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox.active {
    display: flex;
}

.lightbox:after {
    content: '✖';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .certificate img {
        width: 90vw;
    }
}

/*=== accreditation-Ends ===*/


/*=== Testimonial-Starts ===*/

.owl-carousel .card {
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: var(--light);
}

.owl-dots .owl-dot span {
    background: #aaa;
}

.owl-dots .owl-dot.active span {
    background: #007bff;
}

/*=== Testimonial-Ends ===*/

/*=== About-Sec-Starts ===*/

.about-sec img{
    width: 300px;
}

/*=== About-Sec-Ends ===*/


/*=== Product-Section-Starts ===*/

.product-section {
      padding: 60px 20px;
      background-color: #f8f9fa;
    }

    .product-section h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 10px;
      text-align: center;
    }

    .product-section p.description {
      font-size: 18px;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
    }

    .product-card {
      transition: transform 0.3s ease;
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-card img {
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      height: 200px;
      object-fit: cover;
    }

    .product-card .card-body {
      text-align: center;
    }

    .product-card h5 {
      font-size: 20px;
      font-weight: 600;
    }

    .product-card p {
      font-size: 15px;
      color: #666;
    }

/*=== Product-Section-Ends ===*/

/*=== Country Name Starts ===*/

    .country-section {
      padding: 50px 20px;
      text-align: center;
      background-color: #ffffff;
    }

    .country-section h2 {
      font-size: 2rem;
      color: #003366;
      margin-bottom: 10px;
    }

    .country-section p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 40px;
    }

    .country-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .country {
      position: relative;
      font-size: 1.1rem;
      font-weight: 700;
      color: #222;
      font-size: 25px;
      padding: 10px 20px;
      cursor: default;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .country:hover {
      color: #0066cc;
      border: 2px solid #0066cc;
    }

    .flag {
      display: inline-block;
      position: absolute;
      left: 30%;
      top: 105%;
      transform: translate(-50% -50%);
      width: 40px;
      height: 30px;
      margin-left: 10px;

    }


    @media (max-width: 600px) {
      .country {
        font-size: 1rem;
      }
      
      .country-section h2 {
      font-size: 1.5rem;
    }

      .flag {
        width: 25px;
        height: 17px;
      }
    }
/*=== Country Name Ends ===*/


/*=== Contact-Form-Index-Starts ===*/

.contact-section-index {
  background: url('../../img/medicine.webp') center/cover no-repeat fixed;
  padding: 60px 20px;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
}

.left-image {
  flex: 1;
  min-width: 280px;
}

.left-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 400px;
}

.right-form {
  flex: 1;
  min-width: 280px;
}

.right-form h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.right-form p {
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.input-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-row input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

.contact-form-index-btn {
  padding: 14px;
  background: var(--primary);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form-index-btn:hover {
  background: #410cbe;
}

/* Medium Screens */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .input-row {
    flex-direction: column;
    gap: 15px;
  }
}

/* Smallest Screens - Fully Responsive Down to 340px */
@media (max-width: 400px) {
  .contact-section {
    padding: 40px 10px;
  }

  .right-form h2 {
    font-size: 22px;
  }

  .right-form p {
    font-size: 14px;
  }

  .input-row input {
    font-size: 15px;
    padding: 10px 12px;
    width: 90%;
  }

  .contact-form-index-btn {
    font-size: 15px;
    padding: 12px;
    width: 90%;
  }

  .left-image img {
    max-height: 250px;
    width: 88%;
  }
}

/*=== Contact-Form-Index-Ends ===*/


/*** Footer ***/

  .site-footer {
    background: var(--primary);
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    padding-bottom: 10px;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }

  .footer-box {
    flex: 1 1 220px;
    min-width: 250px;
    padding: 0;
  }

  .footer-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    color: #fff;
  }

  .footer-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
  }

  .footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-box ul li {
    margin-bottom: 10px;
  }

  .footer-box ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: #fff;
    position: relative;
    display: inline-block;
    transition: color 0.3s;
  }

  /* Center-out border hover */
  .footer-box ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #FDF5AA;
    transition: 0.3s ease;
    transform: translateX(-50%);
  }

  .footer-box ul li a:hover::after {
    width: 100%;
  }

  .footer-box ul li a:hover {
    color: #FDF5AA;
  }

  iframe {
    border-radius: 8px;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .footer-container {
      flex-direction: row;
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-box {
      max-width: 500px;
    }

    .footer-box ul {
      padding: 0;
    }

    .footer-box iframe {
      width: 100%;
      height: 200px;
    }
  }
  
  @media(max-width:500px){
    .footer-box {
    flex:0;
  }
  }
  
  
  
  
 .footer-top-form {
  background: var(--primary);
  padding: 30px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.footer-top-form h1{
    color: white;
    font-weight:700;
}

.footer-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  flex-direction: row;
}

.footer-form input,
.footer-form button {
  padding: 12px 16px;
  width: 20%;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  outline: none;
}

/*.footer-form input {*/
/*  flex: 1 1 200px;*/
/*  min-width: 200px;*/
/*}*/

.footer-form button {
  background: var(--light);
  color: #333;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  min-width: 150px;
}

.footer-form button:hover {
  background: #fff265;
}

/* Responsive: Column on small devices */
@media(max-width: 768px) {
  .footer-form {
    flex-direction: column;
    align-items: center;
  }

  .footer-form input {
    width: 100%;
  }
  
  .footer-form button{
      width: 200px;
      height: 50px !important;
  }
  
}




.footer-credit {
  text-align: center;
  font-size: 0.95rem;
  color: black;
  padding: 15px;
  border-radius: 25px;
  background: var(--light);
}

.footer-credit a {
  color:  var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--primary);
}

/* Mobile Styling */
@media(max-width: 500px) {
  .footer-credit {
    font-size: 0.85rem;
    padding: 12px 5px;
  }
}


/* Updated CSS */
.bg-main-color{
  background-color: var(--primary);
}
.text-main{
  color: var(--primary);
}
.my-shadow{
  box-shadow: var(--shadow);
}
.btn-main-n{
  background-color: var(--primary);
  
}
.btn-main-n:hover{
  color: black !important;
}

@media (max-width: 500px) {
  .mobile-d-none{
    display: none !important;
  }
}