/**
* Template Name: Sailor
* Updated: May 30 2023 with Bootstrap v5.3.0
* Template URL: https://bootstrapmade.com/sailor-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --primary: #2563eb;     /* light blue */
  --primary-dark: #1e40af;
  --accent: #38bdf8;      /* sky blue */
  --bg-light: #f1f5f9;    /* soft background */
  --white: #ffffff;
  --text-dark: #0f172a;
  --text-light: #64748b;
}

body {
    font-family: "Poppins", sans-serif;
    color: #444444;
    background: var(--bg-light);
    color: var(--text-dark);
  }
  
  a {
    text-decoration: none;
    color: #ffffff;
  }
  
  a:hover {
    color: #e24d55;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Poppins', sans-serif;
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #4DA9CE;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: var(--primary-dark);
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
# HEADER (CLEAN VERSION)
--------------------------------------------------------------*/

#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  background: linear-gradient(135deg, #020617, #031b2c);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* Accent Line */
#header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
}

/* Scroll Effect */
#header.header-scrolled {
  padding: 12px 0;
  background: rgba(2, 6, 23, 0.95);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Logo */
#header .logo img {
  height: 70px;
  width: auto;
}

/*--------------------------------------------------------------
# NAVBAR (Desktop Application)
--------------------------------------------------------------*/

.navbar {
  margin-left: auto;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  position: relative;
}

/* NAV LINKS */
.navbar a {
  display: flex;
  align-items: center;
  padding: 10px 18px;

  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.2;

  color: #e5e7eb;
  transition: all 0.3s ease;
}

/* UNDERLINE EFFECT */
.navbar a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -8px;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.3s ease;
}

.navbar a:hover::after,
.navbar .active::after {
  transform: scaleX(1);
}

/* HOVER */
.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #ffffff;
}

/*--------------------------------------------------------------
# DROPDOWN
--------------------------------------------------------------*/

.navbar .dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;

  width: 700px; /* ðŸ‘ˆ IMPORTANT */
  padding: 20px;

  background: #020617;
  border-radius: 10px;

  display: block;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;

  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 999;
}

/*.navbar .dropdown .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}*/


.navbar .dropdown .col-lg-4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;

  align-self: stretch;
}

.border-end {
  border-right: 1px solid rgba(255,255,255,0.12);
  padding-right: 20px;
  height: 100%;
}

.row > .border-end:last-child {
  border-right: none;
}

/* SHOW DROPDOWN */
.navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DROPDOWN LINKS */
.navbar .dropdown ul a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 6px;

  font-size: 14px;
  font-weight: 500;

  color: #cbd5e1;
  transition: all 0.25s ease;
}

/* ICON STYLE */
.navbar .dropdown ul a i {
  font-size: 16px;
  color: #94a3b8;
  transition: 0.25s;
}

.navbar .dropdown ul strong {
  display: block;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 14px;
}

.navbar .dropdown ul a:hover {
  background: rgba(56,189,248,0.08);
  color: #38bdf8;
  transform: translateX(4px);
}

/* ICON HOVER */
.navbar .dropdown ul a:hover i {
  color: #38bdf8;
  transform: scale(1.1);
}

/* SUB DROPDOWN */
.navbar .dropdown .dropdown ul {
  top: 0;
  left: 100%;
}


 /*--------------------------------------------------------------
# MOBILE NAVIGATION
--------------------------------------------------------------*/

.mobile-nav-toggle {
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  display: none;
  line-height: 1;
  transition: 0.3s ease;
  z-index: 10001;
}

.mobile-nav-toggle.bi-x {
  color: #ffffff;
}


/*==============================================================
  MOBILE SCREEN
==============================================================*/

@media (max-width: 991px) {

  /* HEADER */
  #header {
    height: 100px;
    padding: 12px 0;
  }

  #header .container {
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* LOGO */
  #header .logo {
    margin: 0;
    padding: 0;
  }

  #header .logo img {
    height: 65px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
  }

  /* HIDE DESKTOP NAV ON MOBILE UNLESS MOBILE MENU IS OPEN */
  .navbar ul {
    display: none;
  }

  /* HAMBURGER */
  .mobile-nav-toggle {
    display: block !important;
    margin-left: auto;
    font-size: 34px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10001;
  }

}


/*==============================================================
  MOBILE MENU OVERLAY
==============================================================*/

.navbar-mobile {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;

  width: 100%;
  height: 100vh;

  background: rgba(2, 6, 23, 0.96);

  overflow-x: hidden;
  overflow-y: auto;

  z-index: 10000;

  padding: 0;
}


/*==============================================================
  MOBILE CLOSE BUTTON
==============================================================*/

.navbar-mobile .mobile-nav-toggle {
  position: fixed;
  top: 30px;
  right: 25px;

  font-size: 34px;
  color: #ffffff;

  z-index: 10002;
}


/*==============================================================
  MOBILE MENU BOX
==============================================================*/

.navbar-mobile > ul {
    display: flex !important;
    flex-direction: column !important;

    position: relative;
    top: 90px;
    left: 0;
    right: 0;

    width: 100%;

    margin: 0;
    padding: 15px;

}


/*==============================================================
  MOBILE MAIN MENU ITEMS
==============================================================*/

.navbar-mobile > ul > li {
  position: relative;
  width: 100%;
  display: block;
}

.navbar-mobile > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding: 15px 22px;

  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;

  color: #e5e7eb;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  text-decoration: none;
}


/* REMOVE DESKTOP UNDERLINE ON MOBILE */

.navbar-mobile > ul > li > a::after {
  display: none;
}


/* HOVER */

.navbar-mobile > ul > li > a:hover,
.navbar-mobile > ul > li:hover > a {
  color: #38bdf8;
}


/*==============================================================
  MOBILE DROPDOWN
==============================================================*/

.navbar-mobile .dropdown > ul {
  position: static !important;

  display: none;

  width: calc(100% - 30px) !important;

  max-width: none !important;
  min-width: 0 !important;

  margin: 5px 15px 10px 15px !important;
  padding: 8px 0 !important;

  background: #071426 !important;

  border-radius: 8px;

  opacity: 1 !important;
  visibility: visible !important;

  transform: none !important;

  box-shadow: none !important;

  overflow: hidden;
}


/* OPEN DROPDOWN */

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/*==============================================================
  MOBILE DROPDOWN ITEMS
==============================================================*/

.navbar-mobile .dropdown ul li {
  width: 100% !important;
  min-width: 0 !important;

  display: block;
}


/*==============================================================
  MOBILE DROPDOWN LINKS
==============================================================*/

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown ul a.menu-item {
  display: flex;

  align-items: center;

  width: 100%;

  padding: 12px 20px;

  margin: 0;

  font-size: 14px;
  font-weight: 500;

  color: #cbd5e1;

  text-decoration: none;

  background: transparent;

  border-radius: 0;
}


/* MOBILE ICON */

.navbar-mobile .dropdown ul a i {
  flex: 0 0 25px;

  margin-right: 8px;

  font-size: 16px;

  color: #38bdf8;
}


/* MOBILE DROPDOWN HOVER */

.navbar-mobile .dropdown ul a:hover {
  background: rgba(56, 189, 248, 0.08);

  color: #38bdf8;

  transform: none;
}


/*==============================================================
  PRODUCTS MEGA MENU - MOBILE
==============================================================*/

.navbar-mobile .mega-menu,
.navbar-mobile .about-menu {
  width: calc(100% - 30px) !important;
  max-width: none !important;
}

.navbar-mobile .mega-menu .row {
  display: block !important;
  margin: 0 !important;
}

.navbar-mobile .mega-menu .col-lg-4 {
  width: 100% !important;
  max-width: 100% !important;

  padding: 0 !important;

  border-right: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  display: block !important;
}

.navbar-mobile .mega-menu .col-lg-4:last-child {
  border-bottom: none;
}


/*==============================================================
  MOBILE NAV BUTTON
==============================================================*/

.navbar-mobile .nav-btn {
  display: block;

  margin: 15px 20px;

  padding: 13px 20px !important;

  text-align: center;

  background: #2563eb;

  color: #ffffff !important;

  border-radius: 8px;
}

.navbar-mobile .nav-btn:hover {
  background: #1d4ed8;
  color: #ffffff !important;
}


/*==============================================================
  SMALL MOBILE DEVICES
==============================================================*/

@media (max-width: 480px) {

  #header {
    height: 90px;
    padding: 10px 0;
  }

  #header .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  #header .logo img {
    height: 60px;
    max-width: 140px;
  }

  .mobile-nav-toggle {
    font-size: 32px;
  }

  .navbar-mobile .mobile-nav-toggle {
    top: 25px;
    right: 20px;
  }

  .navbar-mobile > ul {
    top: 90px;
    right: 10px;
    bottom: 10px;
    left: 10px;

    border-radius: 10px;
  }

  .navbar-mobile > ul > li > a {
    padding: 14px 18px;
    font-size: 15px;
  }

}


/*==============================================================
  VERY SMALL MOBILE
==============================================================*/

@media (max-width: 360px) {

  #header .logo img {
    height: 55px;
    max-width: 125px;
  }

  .mobile-nav-toggle {
    font-size: 30px;
  }

  .navbar-mobile > ul > li > a {
    padding: 13px 16px;
    font-size: 14px;
  }

}

/*--------------------------------------------------------------
# CTA BUTTON
--------------------------------------------------------------*/

.nav-btn {
  background: #3b82f6;
  color: white !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(56,189,248,0.4);
}

.navbar .dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px; /* ðŸ‘ˆ clean spacing between text & icon */
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px; /* 👈 PERFECT spacing */

  padding: 10px 14px;
  border-radius: 8px;

  font-size: 14px;
  font-weight: 500;

  color: #cbd5e1;
  text-decoration: none;

  transition: all 0.25s ease;
}

.menu-item i {
  font-size: 16px;
  color: #94a3b8;

  width: 22px;          /* 👈 FIX: give all icons equal width */
  min-width: 22px;
  text-align: center;   /* 👈 center icon inside that space */

  display: inline-flex; /* 👈 better alignment */
  justify-content: center;
  align-items: center;

  transition: all 0.25s ease;
}

.menu-item:hover {
  background: rgba(56,189,248,0.08);
  color: #38bdf8;
  transform: translateX(5px);
}

.menu-item:hover i {
  color: #38bdf8;
  transform: scale(1.1);
}

.mega-menu {
  width: 900px;
  padding: 25px;

  background: linear-gradient(135deg, #020617, #031b2c);
  border-radius: 14px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.6);

  overflow: hidden;
}

/*--------------------------------------------------------------
# ABOUT US DROPDOWN
--------------------------------------------------------------*/

.about-menu {
  width: 280px !important;

  padding: 18px !important;

  background: linear-gradient(135deg, #020617, #031b2c);

  border-radius: 14px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.6);

  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.06);
}

/* remove huge width from default dropdown */
.navbar .dropdown .about-menu {
  left: 0;
  top: 100%;
}

/* better spacing */
.about-menu .menu-item {
  margin-bottom: 8px;
}

.about-menu .menu-item:last-child {
  margin-bottom: 0;
}

/* hover effect */
.about-menu .menu-item:hover {
  background: rgba(56,189,248,0.08);
  color: #38bdf8;
  transform: translateX(5px);
}

/* icon styling */
.about-menu .menu-item i {
  width: 22px;
  min-width: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
  color: #94a3b8;

  transition: 0.3s ease;
}

.about-menu .menu-item:hover i {
  color: #38bdf8;
  transform: scale(1.08);
}


/*--------------------------------------------------------------
# PRODUCT PAGE MODERN UI
--------------------------------------------------------------*/

#product-page {
  background: #f4f7fb;
  padding-top: 100px;
}

/* Title */
#product-page h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a2540;
  position: relative;
  padding-left: 20px;
}
#product-page h2 {
    margin-top: 30px;
}
#product-page h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 70%;
  background: linear-gradient(#007bff, #00c6ff);
  border-radius: 3px;
}

/* =========================
   LEFT IMAGE SECTION
========================= */

.product-detail-left #hero {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  background: linear-gradient(145deg, #ffffff, #f1f5fb);
  padding: 20px;
}
/*
#heroCarousel {
    height: 550px;
}*/


/* Let image define height */




/* FIX indicators position */
#heroCarousel .carousel-indicators {
  bottom:25px;
}

/* Remove unwanted background layers */
.carousel-inner {
  background: transparent !important;
}

/* arrows styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.4);
  border-radius: 50%;
  padding: 20px;
}

/* =========================
   RIGHT CONTENT PANEL
========================= */

.product-detail-right {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  gap: 10px;
}

/* Heading */
.product-detail-right h4 {
  font-size: 24px;
  font-weight: 600;
  border-bottom: 2px solid #eaf1ff !important;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

/* Features title */
.product-detail-right h6 {
  color: #007bff;
  font-weight: 600;
  margin-top: 15px;
}

/* Feature list */
.product-detail-right ul {
  padding-left: 0;
  list-style: none;
}

.product-detail-right ul li {
  position: relative;
  padding-left: 28px;   /* more space */
  margin-bottom: 12px;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 8px;
}

/* Properly position check icon */
.product-detail-right ul li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 13px;
  color: #00b894;
}

/* Certification icons */
.product-trademark img {
  max-height: 40px;
  margin-right: 10px;
  opacity: 0.8;
  margin: 15px 0;
}

.product-detail-right .d-block.d-md-flex {
  margin-top: 10px;
}

/* =========================
   BUTTONS (IMPORTANT)
========================= */

.download-btn {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 30px;
  transition: 0.3s;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,123,255,0.3);
}

.enquire-btn {
  background: transparent;
  border: 2px solid #007bff !important;
  color: #007bff;
  padding: 10px 25px;
  border-radius: 30px;
  transition: 0.3s;
}

.enquire-btn:hover {
  background: #007bff;
  color: #fff;
}

/* ==========================================
   PRODUCTS GRID
========================================== */

.other-fittings-main {
    background: linear-gradient(135deg,#f9fbff,#eef4ff);
}

/* Product Column */
.fitting-block-group{
    margin-bottom:30px;
    transition:.35s ease;
}

/* Product Card */
.fitting-block-inner{
    background:#fff;
    height:165px;
    padding:18px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 8px 22px rgba(0,0,0,.06);
    transition:all .35s ease;
}

/* Product Image */
.fitting-block-inner img{
    width:auto;
    max-width:100%;
    max-height:140px;      /* Larger images */
    object-fit:contain;
    transition:transform .35s ease;
}

/* Hover */
.fitting-block-group:hover .fitting-block-inner{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    border-color:#0d6efd;
}

.fitting-block-group:hover img{
    transform:scale(1.12);
}

/* Product Name */
.bottom-product-list-item p{
    margin-top:14px;
    text-align:center;
    font-size:14px;
    font-weight:600;
    color:#222;
    transition:.3s;
}

.fitting-block-group:hover p{
    color:#0d6efd;
}

/* Tablet */
/*@media (max-width:991px){

    .fitting-block-inner{
        height:150px;
        padding:15px;
    }

    .fitting-block-inner img{
        max-height:105px;
    }

    .navbar .dropdown:hover > ul{
        opacity:0;
        visibility:hidden;
        transform:none;
    }

    .navbar-mobile .dropdown:hover > ul{
        opacity:1;
        visibility:visible;
    }
    
    .navbar>ul{
        display:none;
    }
    
    .navbar.navbar-mobile > ul{
        display:block;
    }
}*/

/* Mobile */
@media (max-width:767px){

    .fitting-block-group{
        margin-bottom:22px;
    }

    .fitting-block-inner{
        height:135px;
        border-radius:14px;
        padding:12px;
    }

    .fitting-block-inner img{
        max-height:95px;
    }

    .bottom-product-list-item p{
        font-size:13px;
    }
    
    .navbar .dropdown:hover > ul{
        opacity:0;
        visibility:hidden;
        transform:none;
    }

    .navbar-mobile .dropdown:hover > ul{
        opacity:1;
        visibility:visible;
    }
    
   /* .navbar>ul{
        display:none;
    }
    
    .navbar.navbar-mobile>ul{
        display:block;
    }*/
    
    .navbar > ul{
        display:none;
    }
    
    .navbar.navbar-mobile > ul{
        display:block;
    }

}

/* =========================
   SMALL PREMIUM TOUCHES
========================= */

/* subtle separator */
.product-list .dot {
  width: 8px;
  height: 8px;
  background: #007bff;
  display: inline-block;
  border-radius: 50%;
}

/* smooth spacing */
.product-detail-right .product-list {
  margin-top: 15px;
}

.product-detail-right .product-list li {
  padding-left: 28px;
  position: relative;
}

/* same icon alignment */
.product-detail-right .product-list li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: 2px;
  color: #00b894;
}

.product-detail-left,
.product-detail-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Stretch image box */
.product-detail-left #hero {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
}

   /* mission -Start */
 
 #mission {
  padding: 100px 0;
  background: #f9fbfd;
}

/* Title */
.mission-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Image */
.mission-img {
  width: 100%;
  border-radius: 12px;
}

/* Right content */
.mission-content {
  border-left: 3px solid #009edf;
  padding-left: 20px;
}

/* Each block */
.mission-item {
  margin-bottom: 30px;
}

/* Heading */
.mission-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Paragraph */
.mission-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}
 
 
  
  #mission, #vision{
      margin-bottom: -3vh;
      background: aliceblue;
  }
  #mission p, #vision p{
      line-height: 26px;
  }
  #mission article > aside {
      justify-content: flex-start;
      align-items: flex-start;
      flex-direction: column;
  }
  
  
  
  #vision {
  padding: 100px 0;
  background: #f9fbfd;
}

/* Title */
.vision-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Left text content */
.vision-content {
  border-right: 3px solid #009edf;
  padding-right: 25px;
  height: 100%;
}

/* Image */
.vision-img {
  width: 100%;
  border-radius: 12px;
}

/* Items */
.vision-item {
  margin-bottom: 30px;
}

/* Headings */
.vision-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Paragraph */
.vision-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}


@media (max-width: 991px) {

  .navbar-mobile .dropdown ul,
  .navbar-mobile .mega-menu,
  .navbar-mobile .about-menu {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

}

@media (max-width: 991px) {

  /*.mega-menu .row,
  .about-menu .row {
    display: block !important;
  }*/

  .mega-menu .col-lg-4,
  .mega-menu .col-md-6,
  .about-menu .col-lg-12 {
    width: 100% !important;
    max-width: 100% !important;
    border-right: none !important;
    margin-bottom: 10px;
  }

}



  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: 80vh;
    /* background-color: rgba(63, 73, 83, 0.8);
    overflow: hidden; */
    position: relative;
    display: flex;
    align-items: center;
  }

  #hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;

    background:linear-gradient(
        90deg,
        rgba(8,28,58,.78) 0%,
        rgba(8,28,58,.45) 45%,
        rgba(8,28,58,.18) 100%
    );
}

#hero h2,
#hero p {
  color: #111827;
}

#hero::before {
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.20)
  );
}
  
  #hero .carousel,
  #hero .carousel-inner,
  #hero .carousel-item,
  #hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  
  #hero::before {
  z-index: 1;
}

#hero .carousel-container {
  z-index: 2;
}
  
  
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
        height: 100%;
    }
    
    #heroCarousel .carousel-item {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
    }    

  #hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  #hero .carousel-item::before {
    content: "";
  }
  
  #hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
  }
  
 #hero .container {
  text-align: center;
  max-width: 800px;
}
  
  #hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
  }
  
  #hero p {
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
  }
  
  #hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
  }
  
  #hero .carousel-inner .carousel-item,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
  }
  
  #hero .carousel-inner .active,
  #hero .carousel-inner .carousel-item-next.carousel-item-start,
  #hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
  }
  
  #hero .carousel-inner .carousel-item-next,
  #hero .carousel-inner .carousel-item-prev,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  
  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #hero .carousel-control-next-icon:hover,
  #hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
  }
  
  #hero .carousel-indicators{
    bottom:22px;
    margin-bottom:0;
    gap:10px;
  }
  
     #hero .carousel-indicators li{
        width:12px;
        height:12px;
        border-radius:50px;
        background:#d1d5db;
        opacity:1;
        border:none;
        transition:all .35s ease;
        margin:0;
        overflow:hidden;
    }
  
  #hero .carousel-indicators li.active{
    width:34px;
    background:#0d6efd;
    border-radius:30px;
}

#hero .carousel-indicators li:hover{
    background:#6ea8fe;
}
  
  #hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: var(--primary);
  }
  
  #hero .btn-get-started:hover {
    background: #df3740;
  }
  
  @media (max-width: 992px) {
    #hero {
      height: 50vh;
    }
  
    #hero .carousel-container {
      top: 8px;
    }
  }
  
  @media (max-width: 768px) {
    #hero h2 {
      font-size: 28px;
    }
  }
  
  @media (min-width: 1024px) {
  
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
      width: 5%;
    }
  }
  
  @media (max-height: 500px) {
    #hero {
      height: 120vh;
    }
  }


  /*==================================
FEATURES SECTION
==================================*/

.features-section{
    padding:100px 0;
    background:#f7f8fa;
}

/* SECTION TITLE */

.section-title{
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    padding:10px 22px;
    background:#ffe9e5;
    color:#ff5a3c;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-title h2{
    font-size:54px;
    font-weight:700;
    color:#081c3a;
    margin:0;
}

/* CARD */

.feature-card{
    background:#fff;
    padding:50px 40px;
    text-align:center;
    border-radius:12px;
    transition:0.35s ease;
    height:100%;
    border-bottom:3px solid transparent;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* HOVER */

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#ff5a3c;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* ICON */

.feature-icon{
    width:90px;
    height:90px;
    margin:0 auto 30px;
    background:#fff1ee;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon i{
    font-size:42px;
    color:#ff5a3c;
}

/* TITLE */

.feature-card h4{
    font-size:30px;
    font-weight:700;
    color:#081c3a;
    margin-bottom:20px;
}

/* TEXT */

.feature-card p{
    font-size:17px;
    line-height:1.8;
    color:#667085;
    margin:0;
}

/* MOBILE */

@media(max-width:991px){

    .section-title h2{
        font-size:40px;
    }

    .feature-card{
        padding:40px 30px;
    }
}

@media(max-width:767px){

    .features-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:32px;
    }

    .feature-card h4{
        font-size:24px;
    }

    .feature-card p{
        font-size:15px;
    }
}

  
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
    overflow: hidden;
  }
  
  .section-bg,
  .services .icon-box {
    background-color: #f8f9fa;
  }
  
  .section-title {
    padding-bottom: 40px;
  }
  
  .section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #556270;
  }
  
  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 6px 0;
    background: #ccc;
   /* min-height: 22px;
    margin-top: 20%;
    position: absolute;*/
  }
  
  .breadcrumbs h2 {
    font-size: 32px;
    font-weight: 300;
    margin: 0;
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  
  .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6b7b8d;
    content: "/";
  }
  
  @media (max-width: 992px) {
    .breadcrumbs {
      margin-top: 20%;
    }
  
    .breadcrumbs .d-flex {
      display: block !important;
    }
  
    .breadcrumbs h2 {
      margin-bottom: 10px;
    }
  
    .breadcrumbs ol {
      display: block;
    }
  
    .breadcrumbs ol li {
      display: inline-block;
    }
  }
  
  /*==================================
ABOUT SECTION
==================================*/

.about-section{
    padding:120px 0;
    background:#f5f6f7;
    position:relative;
    overflow:hidden;
}

.about-section .container{
    max-width:1200px;
}

/* ROW */
.about-section .row{
    --bs-gutter-x: 2rem;
}

/* IMAGE SIDE */
.about-image-box{
    position:relative;
    padding-right:20px;
}

.about-image-box img{
    width:100%;
    height:650px;
    border-radius:22px;
    display:block;
    box-shadow:0 20px 60px rgba(0,0,0,0.12);

    object-fit:cover;
    object-position:right center;
}

.about-image-box::before{
    content:"";
    position:absolute;
    top:-30px;
    left:-30px;
    width:140px;
    height:140px;
    background-image:radial-gradient(#ff6b57 2px, transparent 2px);
    background-size:12px 12px;
    z-index:1;
    opacity:0.4;
}

/* CONTENT BOX */
.about-content-box{
    position:relative;
    z-index:5;
    padding-left:40px;
}

/* TAG */
.about-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    background:#f2f4ff;
    color:#0d6efd;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:28px;
}

/* TITLE */
.about-content-box h2{
    font-size:54px;
    line-height:1.15;
    font-weight:700;
    color:#081c3a;
    margin-bottom:30px;
    letter-spacing:-2px;
}

/* TEXT */
.about-content-box p{
    font-size:18px;
    line-height:1.9;
    color:#5f6778;
    margin-bottom:22px;
}

.about-content-box strong{
    color:#111827;
    font-weight:700;
}

/* BUTTON */
.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    background:#ff5a3c;
    border-radius:10px;
    font-weight:700;
    transition:0.3s ease;
    box-shadow:0 10px 25px rgba(255,90,60,0.25);
}

.about-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(13,110,253,0.25);
    color:#fff;
}
.about-content-box .about-btn {
    margin-top: 10px;
}

/* Feature List */
.about-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.about-features li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #5f6778;
    margin-bottom: 15px;
}

.about-features li::before {
    content: "\2713"; /* checkmark icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #ff5a3c;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

/* TABLET */
@media(max-width:991px){

    .about-content-box{
        margin-left:0;
        margin-top:-40px;
        position:relative;
    }

    .about-image-box{
        padding-right:0;
    }

    .about-content-box h2{
        font-size:42px;
    }
}

/* MOBILE */
@media(max-width:991px){

    .about-content-box{
        padding-left:0;
        margin-top:40px;
    }

    .about-image-box{
        padding-right:0;
    }

    .about-image-box img{
        height:auto;
    }

    .about-content-box h2{
        font-size:42px;
    }
}
  
  /*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
  .services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
  }
  
  .services .icon-box i {
    float: left;
    color: var(--primary);
    font-size: 40px;
  }
  
  .services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .services .icon-box h4 a {
    color: #556270;
    transition: 0.3s;
  }
  
  .services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
  }
  
  .services .icon-box:hover h4 a {
    color: var(--primary);
  }
  
  /*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  
  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
  }
  
  .portfolio #portfolio-flters li:hover,
  .portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: var(--primary);
  }
  
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #fff;
    border: 1px solid #ccc;
  }
  
  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(85, 98, 112, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }
  
  .portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }
  
  .portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
  }
  
  .portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: white;
  }
  
  .portfolio .portfolio-wrap:hover::before {
    opacity: 1;
  }
  
  .portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
  .portfolio-details {
    padding-top: 40px;
  }
  
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--primary);
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
  }
  
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(85, 98, 112, 0.08);
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0;
  }
  
  /*--------------------------------------------------------------
  # Our Team
  --------------------------------------------------------------*/
  .team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(85, 98, 112, 0.08);
    padding: 30px;
    border-radius: 4px;
    background: white;
  }
  
  .team .member .pic {
    overflow: hidden;
    width: 140px;
    border-radius: 4px;
  }
  
  .team .member .pic img {
    transition: ease-in-out 0.3s;
  }
  
  .team .member:hover img {
    transform: scale(1.1);
  }
  
  .team .member .member-info {
    padding-left: 30px;
  }
  
  .team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #556270;
  }
  
  .team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
  }
  
  .team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #dee2e6;
    bottom: 0;
    left: 0;
  }
  
  .team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
  }
  
  .team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    background: #8795a4;
  }
  
  .team .member .social a i {
    color: #fff;
    font-size: 16px;
    margin: 0 2px;
  }
  
  .team .member .social a:hover {
    background: var(--primary);
  }
  
  .team .member .social a+a {
    margin-left: 8px;
  }
  
  /*--------------------------------------------------------------
  # Our Skills
  --------------------------------------------------------------*/
  .skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
  }
  
  .skills .progress .skill {
    padding: 10px 0;
    margin: 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #556270;
  }
  
  .skills .progress .skill .val {
    float: right;
    font-style: normal;
  }
  
  .skills .progress-bar-wrap {
    background: #edeff1;
  }
  
  .skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #6b7b8d;
  }
  
  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  .features {
    overflow: hidden;
  }
  
  .features .nav-tabs {
    border: 0;
  }
  
  .features .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #556270;
    border-radius: 0;
    border-right: 2px solid white;
    font-weight: 600;
    font-size: 15px;
  }
  
  .features .nav-link:hover {
    color: var(--primary);
  }
  
  .features .nav-link.active {
    color: var(--primary);
    border-color: var(--primary);
  }
  
  .features .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
  }
  
  .features .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #556270;
  }
  
  .features .details p {
    color: #777777;
  }
  
  .features .details p:last-child {
    margin-bottom: 0;
  }
  
  @media (max-width: 992px) {
    .features .nav-link {
      border: 0;
      padding: 15px;
    }
  
    .features .nav-link.active {
      color: #fff;
      background: var(--primary);
    }
  }
  
  /*--------------------------------------------------------------
  # Pricing
  --------------------------------------------------------------*/
  .pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  
  .pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
  }
  
  .pricing h4 {
    font-size: 36px;
    color: var(--primary);
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
  }
  
  .pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
  }
  
  .pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
  }
  
  .pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
  }
  
  .pricing ul li {
    padding-bottom: 16px;
  }
  
  .pricing ul i {
    color: var(--primary);
    font-size: 18px;
    padding-right: 4px;
  }
  
  .pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
  }
  
  .pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
  }
  
  .pricing .btn-buy {
    background: var(--primary);
    display: inline-block;
    padding: 8px 35px 9px 35px;
    border-radius: 4px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .pricing .btn-buy:hover {
    background: var(--primary-dark);
  }
  
  .pricing .featured h3 {
    color: #fff;
    background: var(--primary);
  }
  
  .pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: var(--primary);
    color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Frequently Asked Questions
  --------------------------------------------------------------*/
  .faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid white;
  }
  
  .faq .faq-item i {
    color: #dee2e6;
    font-size: 20px;
    float: left;
    line-height: 0;
    padding: 13px 0 0 0;
    margin: 0;
  }
  
  .faq .faq-item h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 10px 28px;
    font-family: "Poppins", sans-serif;
  }
  
  .faq .faq-item p {
    font-size: 15px;
  }
  
  /*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  
  .testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 40px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid #fff;
    float: left;
    margin: 0 10px 0 0;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: #f8d1d3;
    font-size: 26px;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }
  
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0 0 0;
    padding: 0;
  }
  
  /* =========================================================
   CONTACT BANNER
========================================================= */

.about-banner-main {
    position: relative;
    min-height: 550px;
    background: linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.35)
    ),
    url('../img/Contact-Banner.webp');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Dark overlay */
.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.15);
    z-index:1;
}

.banner-content{
    position:relative;
    z-index:2;
    max-width:650px;
    padding-top:40px;
}

/* Heading */
.about-banner-main h2{
    color:#fff;
    font-size:58px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:20px;
}

/* Subtext */
.about-banner-main p{
    color:#fff;
    font-size:32px;
    margin:0;
}

.about-banner-main a{
    color:#fff;
    text-decoration:underline;
}

/* Large screen */
@media (min-width:1400px){
    .about-banner-main{
        background-position:center top;
    }
}

/* Tablet */
@media (max-width:992px){
    .about-banner-main h2{
        font-size:48px;
    }

    .about-banner-main p{
        font-size:24px;
    }
}

/* Mobile */
@media (max-width:768px){
    .about-banner-main{
        min-height:380px;
        background-position:center center;
    }

    .banner-content{
        text-align:left;
        padding-top:0;
    }

    .about-banner-main h2{
        font-size:34px;
        line-height:1.2;
    }

    .about-banner-main p{
        font-size:18px;
    }
}


/*=========================================
CONTACT INFO SECTION - NEW DESIGN
=========================================*/

.elementor-element-6f8cfa3{
    background:#244d57;
    padding:60px 0;
}

/* MAIN ROW */
.elementor-element-6f8cfa3 .elementor-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
}

/* COLUMN WIDTH */
.elementor-element-6f8cfa3 .elementor-top-column{
    width:calc(25% - 19px);
}

@media(max-width:991px){
.elementor-element-6f8cfa3 .elementor-top-column{
    width:calc(50% - 15px);
}
}

@media(max-width:767px){
.elementor-element-6f8cfa3 .elementor-top-column{
    width:100%;
}
}

/* CARD BOX */
.elementor-element-6f8cfa3 .elementor-widget-wrap{
    background:#1f4853;
    padding:45px 25px;
    min-height: -webkit-fill-available;
    text-align:center;
    border:none;
    box-shadow:none;
    transition:0.3s;
}

/* HOVER */
.elementor-element-6f8cfa3 .elementor-widget-wrap:hover{
    transform:translateY(-5px);
}

/* REMOVE INNER BOX */
.elementor-element-6f8cfa3 .elementor-inner-column > .elementor-widget-wrap{
    background:transparent;
    padding:0;
    min-height:auto;
}

/* ICON */
.elementor-element-6f8cfa3 .elementor-icon{
    background:none !important;
    width:auto;
    height:auto;
    margin-bottom:20px;
}

.elementor-element-6f8cfa3 .elementor-icon i{
    color:#ffffff;
    font-size:34px;
}

/* HEADING */
.elementor-element-6f8cfa3 .elementor-heading-title{
    color:#ffffff;
    font-size:24px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:25px;
    line-height:1.3;
}

/* REMOVE DEFAULT MARGIN */
.elementor-widget-heading{
    margin:0 !important;
    padding:0 !important;
}

/* LIST */
.elementor-element-6f8cfa3 .elementor-icon-list-items{
    list-style:none;
    padding:0;
    margin:0;
}

/* TEXT */
.elementor-element-6f8cfa3 .elementor-icon-list-text{
    color:#ffffff;
    font-size:18px;
    line-height:1.8;
    font-weight:400;
}

/* MOBILE */
@media(max-width:767px){

.elementor-element-6f8cfa3{
    padding:40px 20px;
}

.elementor-element-6f8cfa3 .elementor-widget-wrap{
    min-height:auto;
    padding:35px 20px;
}

.elementor-element-6f8cfa3 .elementor-heading-title{
    font-size:22px;
}

.elementor-element-6f8cfa3 .elementor-icon-list-text{
    font-size:16px;
}

}


/* =========================================================
   CONTACT SECTION
========================================================= */

.form-container-main {
    position: relative;
    margin-top: -110px;
    z-index: 10;
    padding-bottom: 80px;1
}

.contact-main-row {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}

/* =========================================================
   LEFT SECTION
========================================================= */

  .contact-left-section {
      background: #0b1c39;
      color: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .contact-left-section a {
      color: #87ceeb;
      text-decoration: none;
    }
    
    .contact-left-section h3,
    .contact-left-section h5 {
      color: #fff;
    }

.leftside-title {
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 35px;
}

.leftside-title a {
    color: #7ec8ff;
    text-decoration: none;
}

.company-name {
    color: #87ceeb;
    font-size: 24px;
    margin-bottom: 10px;
}

.address-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-address {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.82);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.contact-links a {
    color: #87ceeb;
    text-decoration: none;
    font-size: 16px;
}

.contact-links a:hover {
    color: #fff;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */


.contact-left-section a {
    color: #87ceeb;
    text-decoration: none;
}


.social-icons a {
      width: 40px;
      height: 40px;
      background: #fff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      transition: 0.3s;
    }
    
    .social-icons a:hover {
      background: #0d6efd;
      color: #fff;
    }

/* RIGHT FORM */

.contact-right-section {
    background: #fff;
    padding: 55px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

.form-bg-pattern {
    position: absolute;
    inset: 0;
    background: url('../img/contact-us-form-bg.webp') center no-repeat;
    background-size: cover;
    opacity: 0.08;
}

.contact-right-section h2 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 18px;
    color: #071c3c;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 35px;
}

/*==========================
TEAM CONTACTS
==========================*/

.team-contact{
    margin-top:35px;
}

.team-contact h4{
    font-size:32px;
    margin-bottom:25px;
    color:#fff;
}

.team-member{
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.team-member:last-child{
    border-bottom:none;
}

.team-member strong{
    display:block;
    font-size:20px;
    color:#fff;
    font-weight:600;
    margin-bottom:4px;
}

.team-member .designation{
    display:block;
    font-size:15px;
    color:#9fb6d4;
    margin-bottom:12px;
}

.team-member a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#7ec8ff;
    text-decoration:none;
    font-size:16px;
    margin-bottom:8px;
    transition:.3s;
    word-break:break-word;
}

.team-member a:hover{
    color:#fff;
}

.team-member i{
    font-size:18px;
    min-width:20px;
}

/* =========================================================
   RIGHT SECTION
========================================================= */

.contact-right-section {
    background: #fff;

    padding: 70px 60px;

    height: 100%;
}

.contact-form-top h2 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 15px;
}

.contact-form-top p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

/* FORM */

.custom-input,
.custom-textarea {
    border: 1px solid #e5e8ef !important;
    background: #f8faff !important;
    border-radius: 16px !important;
    padding: 18px 22px !important;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: none !important;
}

.custom-input {
    height: 62px;
}

.custom-textarea {
    min-height: 180px;
    resize: none;
}

.custom-input:focus,
.custom-textarea:focus {
    border-color: #0d6efd !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.08) !important;
}

/* BUTTON */

.submit-btn {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(
        90deg,
        #0d6efd,
        #0047ff
    );

    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13,110,253,0.35);
}

/* LOADER */

.btn-loader {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* FEEDBACK */

.alert-message {
    padding: 16px 22px;
    border-radius: 14px;
    margin-bottom: 25px;
    font-weight: 500;
}


.alert-error {
    background: #fff0f0;
    color: #d92c2c;
}

.custom-alert{
    border:none;
    border-radius:12px;
    padding:18px 22px;
    margin-bottom:30px;
    font-size:16px;
    line-height:1.7;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.custom-alert i{
    font-size:24px;
    margin-right:8px;
    vertical-align:middle;
}

.alert-success{
    background:#e9f9ef;
    color:#146c43;
    border-left:5px solid #198754;
}

.alert-danger{
    background:#fdeaea;
    color:#842029;
    border-left:5px solid #dc3545;
}


/* =========================================================
   MAP
========================================================= */

.map-section {
    margin-top: 0;
}

#my-map-canvas {
    width: 100%;
    height: 500px;
}

#my-map-canvas iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1199px){

    .contact-form-top h2 {
        font-size: 40px;
    }

    .leftside-title {
        font-size: 20px;
    }
}

@media(max-width:991px){

    .about-banner-main {
        padding: 120px 0 150px;
    }

    .form-container-main {
        margin-top: -80px;
    }

    .contact-left-section,
    .contact-right-section {
        padding: 45px 30px;
    }

    .contact-form-top h2 {
        font-size: 34px;
    }

    .leftside-title {
        font-size: 20px;
    }

    .address-title {
        font-size: 28px;
    }
}

@media(max-width:767px){

    .about-banner-main h2 {
        font-size: 40px;
    }

    .contact-main-row {
        border-radius: 18px;
    }

    .contact-form-top h2 {
        font-size: 28px;
    }

    .leftside-title {
        font-size: 24px;
    }

    #my-map-canvas {
        height: 350px;
    }
}
  
  /*--------------------------------------------------------------
  # Blog
  --------------------------------------------------------------*/
  .blog {
    padding: 40px 0 20px 0;
  }
  
  .blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .entry .entry-img {
    max-height: 440px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
  }
  
  .blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
  }
  
  .blog .entry .entry-title a {
    color: #556270;
    transition: 0.3s;
  }
  
  .blog .entry .entry-title a:hover {
    color: var(--primary);
  }
  
  .blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #c1c8d0;
  }
  
  .blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .blog .entry .entry-meta ul li+li {
    padding-left: 20px;
  }
  
  .blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
  }
  
  .blog .entry .entry-meta a {
    color: #777777;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }
  
  .blog .entry .entry-content p {
    line-height: 24px;
  }
  
  .blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
  }
  
  .blog .entry .entry-content .read-more a {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .blog .entry .entry-content .read-more a:hover {
    background: #df3740;
  }
  
  .blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
  }
  
  .blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
  }
  
  .blog .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
  }
  
  .blog .entry .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #556270;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
  }
  
  .blog .entry .entry-footer i {
    color: #a4afba;
    display: inline;
  }
  
  .blog .entry .entry-footer a {
    color: #606f7e;
    transition: 0.3s;
  }
  
  .blog .entry .entry-footer a:hover {
    color: var(--primary);
  }
  
  .blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
  }
  
  .blog .entry .entry-footer .cats li {
    display: inline-block;
  }
  
  .blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
  }
  
  .blog .entry .entry-footer .tags li {
    display: inline-block;
  }
  
  .blog .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
  }
  
  .blog .entry .entry-footer .share {
    font-size: 16px;
  }
  
  .blog .entry .entry-footer .share i {
    padding-left: 5px;
  }
  
  .blog .entry-single {
    margin-bottom: 30px;
  }
  
  .blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .blog-author img {
    width: 120px;
    margin-right: 20px;
  }
  
  .blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #556270;
  }
  
  .blog .blog-author .social-links {
    margin: 0 10px 10px 0;
  }
  
  .blog .blog-author .social-links a {
    color: rgba(85, 98, 112, 0.5);
    margin-right: 5px;
  }
  
  .blog .blog-author p {
    font-style: italic;
    color: #b7b7b7;
  }
  
  .blog .blog-comments {
    margin-bottom: 30px;
  }
  
  .blog .blog-comments .comments-count {
    font-weight: bold;
  }
  
  .blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
  }
  
  .blog .blog-comments .comment .comment-img {
    margin-right: 14px;
  }
  
  .blog .blog-comments .comment .comment-img img {
    width: 60px;
  }
  
  .blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
  }
  
  .blog .blog-comments .comment h5 a:hover {
    color: var(--primary);
  }
  
  .blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #556270;
  }
  
  .blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
  }
  
  .blog .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #6b7b8d;
    margin-bottom: 5px;
  }
  
  .blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
  }
  
  .blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
  }
  
  .blog .blog-comments .reply-form p {
    font-size: 14px;
  }
  
  .blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
  }
  
  .blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #e9797f;
  }
  
  .blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
  }
  
  .blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #e9797f;
  }
  
  .blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
  }
  
  .blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #556270;
  }
  
  .blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #606f7e;
  }
  
  .blog .blog-pagination {
    color: #8795a4;
  }
  
  .blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
  }
  
  .blog .blog-pagination li a {
    color: #556270;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .blog .blog-pagination li.active,
  .blog .blog-pagination li:hover {
    background: var(--primary);
  }
  
  .blog .blog-pagination li.active a,
  .blog .blog-pagination li:hover a {
    color: #fff;
  }
  
  .blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #556270;
    position: relative;
  }
  
  .blog .sidebar .sidebar-item {
    margin-bottom: 30px;
  }
  
  .blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
  }
  
  .blog .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
  }
  
  .blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: var(--primary);
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
  }
  
  .blog .sidebar .search-form form button i {
    line-height: 0;
  }
  
  .blog .sidebar .search-form form button:hover {
    background: #de323c;
  }
  
  .blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
  }
  
  .blog .sidebar .categories ul li+li {
    padding-top: 10px;
  }
  
  .blog .sidebar .categories ul a {
    color: #556270;
    transition: 0.3s;
  }
  
  .blog .sidebar .categories ul a:hover {
    color: var(--primary);
  }
  
  .blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
  }
  
  .blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
  }
  
  .blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
  }
  
  .blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
  }
  
  .blog .sidebar .recent-posts h4 a {
    color: #556270;
    transition: 0.3s;
  }
  
  .blog .sidebar .recent-posts h4 a:hover {
    color: var(--primary);
  }
  
  .blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
  }
  
  .blog .sidebar .tags {
    margin-bottom: -10px;
  }
  
  .blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
  }
  
  .blog .sidebar .tags ul li {
    display: inline-block;
  }
  
  .blog .sidebar .tags ul a {
    color: #96a2af;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid white;
    display: inline-block;
    transition: 0.3s;
  }
  
  .blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid var(--primary);
    background: var(--primary);
  }
  
  .blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #fbfbfc;
    font-size: 14px;
  }
  
  .counts{
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 40px;

}.counts_text{

    font-size: 13px !important;

}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}
  
/* ===== FINAL PREMIUM FOOTER ===== */

.premium-footer {
  background: linear-gradient(135deg, #031b2c, #020617);
  color: #cbd5e1;
}

/* TOP */
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* LEFT CARD */
.footer-info {
  background: rgba(255,255,255,0.03);
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* LOGO */
.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

/* TITLE */
.footer-info h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 5px;
}

/* TAGLINE */
.tagline {
  color: #38bdf8;
  font-size: 13px;
  margin-bottom: 20px;
}

/* TEXT */
.footer-info p {
  font-size: 14px;
  color: #94a3b8;
}

/* ICON ALIGNMENT FIX */
.footer-info i {
  color: #38bdf8;
  margin-right: 8px;
}

/* SOCIAL ICONS (LEFT ALIGNED FIXED) */
.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start; /* IMPORTANT FIX */
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #cbd5e1;
  transition: 0.3s;
}

.social-links a:hover {
  background: #38bdf8;
  color: #000;
  transform: translateY(-4px);
}

/* LINKS */
.footer-links h4 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h4::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #38bdf8;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-links ul li {
  padding: 7px 0;
}

.footer-links ul a {
  color: #94a3b8;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul a:hover {
  color: #38bdf8;
  padding-left: 6px;
}

.footer-links .row {
    --bs-gutter-x: 1rem;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* RIGHT IMAGE */
.footer-shape {
  max-width: 180px;
  opacity: 0.8;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #020617;
  padding: 18px 0;
  text-align: center; /* CENTER FIX */
}

/* CENTER COPYRIGHT */
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom .copyright {
  color: #94a3b8;
  margin-bottom: 5px;
}

.footer-bottom .credits {
  color: #64748b;
}

/* REMOVE OLD FLEX ISSUE */
.footer-bottom .container.d-flex {
  justify-content: center !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-info {
    margin-bottom: 30px;
  }

  .footer-bottom {
    text-align: center;
  }
}  


  /* =========================================
   PREMIUM SLIDER SECTION
========================================= */

#category-scroll-section,
.bg-light-grey {
    /*background: linear-gradient(to bottom, #f8fafc, #edf2f7);*/
    background: linear-gradient(180deg,#ffffff 0%,#f5f9ff 50%,#eef4fb 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.owl-nav.d-inline-flex {
    display: none !important;
}

/* =========================================
   SECTION TITLE
========================================= */

.section-title h2 {
    font-size: 62px;
    font-weight: 800;
    color: #081c3a;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   PRODUCT CARD
========================================= */

.media-29101 {
    padding: 15px;
}

.product-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.45s ease;
    /*border: 1px solid rgba(255,255,255,0.4);*/
    border:1px solid #e6edf5;
    height: 100%;
    position: relative;
}

/* Glow Border Effect */

.product-card::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.45),
    transparent);
    transition:.8s;
}

.product-card:hover::after{
    left:150%;
}


.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(13,110,253,0.4),
        rgba(255,255,255,0)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* Hover */

.product-card{
    transition: all .35s ease;
    box-shadow: 0 8px 24px rgba(15,23,42,.08);
}

.product-card:hover{
    transform: translateY(-10px);
    box-shadow:
        0 18px 45px rgba(15,23,42,.18),
        0 8px 20px rgba(13,110,253,.10);
}

/* =========================================
   IMAGE BOX
========================================= */

.product-img-container {
    height: 270px;
/*    background: linear-gradient(145deg,#ffffff,#f5f7fa);*/
    background: linear-gradient(180deg,#ffffff 0%,#f7f9fc 100%);
    border-bottom:1px solid #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

.product-img-container img{
    width:100%;
    max-width:180px;
    height:180px;
    object-fit:contain;
    transition:.45s;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* =========================================
   CONTENT
========================================= */

.product-content {
    padding:28px 24px 30px;
    text-align: center;
}

.product-content h3{
    min-height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
}

.product-content h3 a {
    font-size: 22px;
    font-weight: 700;
    color: #081c3a;
    text-decoration: none;
    transition: 0.3s;
}

.product-content h3 a:hover {
    color: #0d6efd;
}

/*.product-label {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(13,110,253,0.08);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 600;
}*/

.product-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    border-radius:40px;
    background:#eef5ff;
    color:#0d6efd;
    font-size:13px;
    font-weight:700;
    letter-spacing:.3px;
}

/* =========================================
   OWL NAVIGATION
========================================= */
.owl-nav {
    display: flex;
    gap: 15px;
}

.owl-prev,
.owl-next {
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee !important;
}

.owl-prev i,
.owl-next i {
    font-size: 18px;
    color: #081c3a;
}

.owl-prev:hover,
.owl-next:hover {
    background: linear-gradient(135deg,#0d6efd,#081c3a) !important;
    transform: translateY(-5px);
}

.owl-prev:hover i,
.owl-next:hover i {
    color: #fff;
}

/* INDUSTRY CARD (Framed Inner Box) */
#owl-demos .media-29101 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: transform 0.35s ease;
    text-align: center;
    padding: 15px 15px 22px 15px;
}
#owl-demos .media-29101:hover {
    transform: translateY(-8px);
}
/* Inner Frame Box */
#owl-demos .product-img-container {
    height: 190px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f6f9; /* Subtle grey background frame */
    border-radius: 14px;
    overflow: hidden;
    padding: 12px;
}
#owl-demos .product-img-container img {
    max-width: 109%;
    max-height: 131%;
    width: auto;
    height: auto;
    object-fit: contain; /* Keeps entire image visible without cropping */
    transition: transform 0.35s ease;
}
#owl-demos .media-29101:hover img {
    transform: scale(1.05);
}
#owl-demos h3 {
    margin: 16px 0 0;
    padding: 0 10px;
}
#owl-demos h3 a {
    font-size: 19px;
    font-weight: 700;
    color: #081c3a;
    text-decoration: none;
}

#owl-demos h3 a:hover {
    color: #0d6efd;
}

/* Responsive adjustments */
@media(max-width: 768px) {
    #owl-demos .product-img-container {
        height: 170px;
    }
}

.social-section{
    margin-top:40px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:24px;
    transition:.35s;
}

.gmail{
    background:#EA4335;
}

.linkedin{
    background:#0077B5;
}

.facebook{
    background:#1877F2;
}

.social-icon:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    color:#fff;
}

.working-hours{
    color:#fff;
    border-top:1px solid rgba(255,255,255,.2);
    padding-top:20px;
}

.working-hours h5{
    color:#fff;
    margin-bottom:10px;
}

.form-bg-pattern{
    z-index:0;
}

.contact-right-section{
    position:relative;
    z-index:1;
}
  
  
  /* Carousel CSS - End */
  
  
/*.quality-standards-page .section-title h2 {*/
/*    font-size: 54px;*/
/*    font-weight: 800;*/
/*    color: #0c2340;*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.quality-standards-page p {*/
/*    font-size: 17px;*/
/*    line-height: 1.8;*/
/*    color: #444;*/
/*}*/

/*.quality-gallery img {*/
/*    width: 100%;*/
/*    height: 250px;*/
/*    object-fit: cover;*/
/*    border-radius: 12px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.quality-gallery img:hover {*/
/*    transform: translateY(-5px);*/
/*}*/

/*.quality-gallery {*/
/*    margin-top: 40px;*/
/*}*/

/*.quality-card {*/
/*    background: #fff;*/
/*    padding: 35px;*/
/*    border-radius: 15px;*/
/*    box-shadow: 0 5px 20px rgba(0,0,0,0.08);*/
/*    height: 100%;*/
/*}*/

/*.quality-card h5 {*/
/*    font-size: 28px;*/
/*    font-weight: 700;*/
/*    color: #0c2340;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.quality-card ul li,*/
/*.quality-card ol li {*/
/*    margin-bottom: 12px;*/
/*    line-height: 1.7;*/
/*}*/

/*.pi-padding-bottom-10 {*/
/*    padding-top: 80px;*/
/*}*/

/*.quality-standards-page .row.pi-padding-bottom-10 {*/
/*    margin-top: 80px;*/
/*}*/


/* Section spacing */
/*.inspection-section {*/
/*    margin-top: 80px;*/
/*    margin-bottom: 80px;*/
/*    align-items: flex-start;*/
/*}*/

/* Main heading */
/*.inspection-section h2 {*/
/*    font-size: 52px;*/
/*    font-weight: 800;*/
/*    color: #0c2340;*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 30px;*/
/*    line-height: 1.1;*/
/*}*/

/* Lists */
/*.inspection-section ul {*/
/*    padding-left: 20px;*/
/*    margin-bottom: 0;*/
/*}*/

/*.inspection-section ul li {*/
/*    font-size: 16px;*/
/*    line-height: 1.8;*/
/*    color: #333;*/
/*    margin-bottom: 8px;*/
/*}*/

/* Images */
/*.inspection-section img {*/
/*    width: 100%;*/
/*    border-radius: 12px;*/
/*    margin-bottom: 20px;*/
/*    box-shadow: 0 8px 25px rgba(0,0,0,0.12);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.inspection-section img:hover {*/
/*    transform: translateY(-5px);*/
/*}*/

/* Right image column */
/*.inspection-section .col-md-4:last-child {*/
/*    padding-left: 30px;*/
/*}*/

/*.inspection-list ul {*/
/*    columns: 2;*/
/*    column-gap: 50px;*/
/*    padding-left: 20px;*/
/*}*/

/*.inspection-list li {*/
/*    break-inside: avoid;*/
/*    margin-bottom: 10px;*/
/*    font-size: 16px;*/
/*    line-height: 1.7;*/
/*}*/
  
  
  
  /************************************************
MODERN INFRASTRUCTURE REDESIGN
************************************************/

/* ---------- TOP BANNER ---------- */

.infra-banner-content-main{
    position:relative;
    padding:120px 0;
    background:
    url('../img/infrastructure-banner.png');
    overflow:hidden;
}

.infra-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(0,0,0,.72), rgba(0,82,130,.55));
}

.infra-banner-content-main h2{
    font-size:46px;
    letter-spacing:1px;
}

.infra-banner-content-main p{
    line-height:1.9;
    opacity:.95;
}


/* ---------- SECOND SECTION ---------- */

.only-india-main{
    background:linear-gradient(135deg,#eef3f8,#dfe8f1);
    padding:90px 0;
}

.only-india-main .section-title h2{
    font-size:42px;
    color:#0b2240;
    position:relative;
}

.only-india-main .section-title h2:after{
    content:'';
    width:90px;
    height:4px;
    background:#04afef;
    display:block;
    margin:18px auto 0;
    border-radius:10px;
}


/* LEFT BOX */

.served-left-block{
    min-height:100%;
    padding:55px 40px;
    border-radius:20px;
    background:linear-gradient(135deg,#0b2240,#123d63);
    color:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.served-left-block h5{
    font-size:42px;
    line-height:1.25;
    margin:0;
}

.served-left-block h5 span{
    display:block;
}


/* RIGHT GRID */

.served-block-group{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.served-card{
    background:#fff;
    padding:35px 28px;
    border-radius:18px;
    min-height:220px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s ease;
}

.served-card:hover{
    transform:translateY(-8px);
}

.served-card h4{
    font-size:52px;
    color:#04afef;
    margin-bottom:15px;
    line-height:1;
}

.served-card p{
    font-size:18px;
    color:#24384d;
    line-height:1.6;
    margin:0;
    font-weight:500;
}


/* RESPONSIVE */

@media(max-width:991px){

.served-block-group{
    grid-template-columns:repeat(2,1fr);
}

.served-left-block{
    margin-bottom:30px;
}

}

@media(max-width:767px){

.infra-banner-content-main{
    padding:80px 0;
}

.infra-banner-content-main h2{
    font-size:32px;
}

.only-india-main .section-title h2{
    font-size:30px;
}

.served-block-group{
    grid-template-columns:1fr;
}

.served-left-block h5{
    font-size:32px;
}

.served-card{
    min-height:auto;
}

}
  
  .inside-panam-main .served-block-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, 399px);
      grid-gap: 20px;
      grid-auto-rows: 1fr;
      transition: 0.5s ease all;
      justify-content: space-between;
  }
  
  .inside-panam-main .served-block-inner {
      display: flex;
      flex-direction: column;
      height: 335px;
      text-align: left;
      background: #e3eaf1;
  }
  
  .testing-standard .test-items span {
      height: 33px;
      width: 33px;
      border-radius: 50%;
      background-color: #04afef;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #FFFFFF;
      margin-right: 15px;
  }
  .testing-standard h3{
      line-height: 36px;
  }
  .testing-standard p{
      font-size: 14px;
      line-height: 18px;
  }
  .testing-standard li{
      font-family: "Graphik Regular";
  }
  .industries-serve-main .industry-block {
      overflow: hidden;
      position: relative;
  }
  
  .industries-serve-main .industry-block img {
      transition: 0.5s ease all;
      width: 100%;
  }
  
  .industries-serve-main .industry-block:hover > img {
      transform: scale(1.2);
  }
  
  .industries-serve-main .industry-title {
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      height: 43px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
  
      background-color: #04afef;
  }
  
  .industries-serve-main .industry-title p {
      margin: 0;
      color: #FFFFFF;
  }
  .quality-services .quality-services-list {
      width: 50%;
      padding: 0 0.781vw;
  }
  
  .quality-services-section .quality-list {
      padding: 0;
      margin: 0;
  }
  
  .quality-services-section .quality-list li {
      font-family: 'Inter';
      list-style: none;
      font-weight: 600;
      font-size: 1.250vw;
      line-height: 1.563vw;
      padding: 1.302vw 0 1.302vw 7.656vw;
      margin: 0;
      color: var(--blue-color);
      position: relative;
  }
  
  .quality-services-section .quality-list li:first-child {
      padding-top: 0;
  }
  
  .quality-services-section .quality-list li:last-child {
      padding-bottom: 0;
  }
  
  .quality-services-section .quality-list li img {
      display: block;
      width: 4.010vw;
      height: 4.010vw;
      position: absolute;
      left: 0;
      top: 0;
  }
  
  .quality-services-section .quality-list li:first-child img {
      /*top: -1.302vw;*/
  }
  .pdb-0{
      padding-top:1em;
  }


  

  #clients.clients-section {
  background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
  padding: 70px 0;
  color: #fff;
  position: relative;

  width: 100%;
  margin: 0;
}

#clients .container {
  max-width: 1200px; /* keep content aligned */
}



#clients::before {
  top: 0;
}

#clients::after {
  bottom: 0;
}

.stat-box {
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
}

/* icon styling */
.icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 36px;
  color: #fff;
}

/* numbers */
.stat-box h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0;
  letter-spacing: 1px;
}

/* labels */
.stat-box p {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* responsive spacing */
@media (max-width: 768px) {
  .stat-box {
    margin-bottom: 30px;
  }
}


/* =========================
   HERO SECTION
========================= */

.why-hero {
    position: relative;
    height: 500px;
    background: url('../img/industrial-banner.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* =========================
   BREADCRUMB
========================= */

.breadcrumbs {
    background: #f5f5f5;
    padding: 15px 0;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.breadcrumbs a {
    text-decoration: none;
    color: #0d3b66;
}

/* =========================
   WHY SECTION
========================= */

.why-section {
    padding: 80px 0;
    background: #f8fafc;
}

.why-card {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.top-badge {
    background: #eef5ff;
    color: #0d3b66;
    padding: 15px 25px;
    border-left: 5px solid #007bff;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 40px;
}

.why-card h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #0d1b2a;
    font-weight: 700;
}

/* =========================
   GRID BOXES
========================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s ease;
    text-align: center;
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0d3b66;
}

.why-box p {
    color: #555;
    line-height: 1.7;
}

/* =========================
   PS BOX
========================= */

.ps-box {
    margin-top: 50px;
    background: #fff5f5;
    border-left: 5px solid red;
    padding: 25px;
    border-radius: 10px;
}

.ps-box h3 {
    margin-bottom: 10px;
    color: #c1121f;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media(max-width: 768px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }
}




/* ======================================
   Capabilities SECTION
====================================== */

.capability-hero {
    position: relative;
    height: 500px;
    background: url('../img/capability-banner.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.70);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 22px;
    opacity: 0.9;
}

/* ======================================
   BREADCRUMB
====================================== */

.breadcrumbs {
    background: #f5f5f5;
    padding: 15px 0;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

/* ======================================
   MAIN SECTION
====================================== */

.capability-section {
    padding: 90px 0;
    background: #f8fafc;
}

/* INTRO */

.capability-intro {
    text-align: center;
    margin-bottom: 70px;
}

.intro-badge {
    display: inline-block;
    background: #eef5ff;
    color: #0d3b66;
    padding: 15px 30px;
    border-left: 5px solid #0d6efd;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: 600;
}

.capability-intro h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #0d1b2a;
    font-weight: 800;
}

.capability-intro p {
    max-width: 900px;
    margin: auto;
    line-height: 1.9;
    color: #555;
    font-size: 18px;
}

/* ======================================
   GRID
====================================== */

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.cap-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.cap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    border-color: #0d6efd;
}

/* ICON */

.cap-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg,#0d6efd,#001f3f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.cap-icon i {
    color: #fff;
    font-size: 34px;
}

/* TITLE */

.cap-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #0d1b2a;
    font-weight: 700;
}

/* LIST */

.cap-card ul {
    padding-left: 20px;
}

.cap-card ul li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.8;
}

/* TEXT */

.cap-card p {
    color: #555;
    line-height: 1.9;
}

/* ======================================
   RESPONSIVE
====================================== */

@media(max-width: 992px) {

    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 50px;
    }
}

@media(max-width: 768px) {

    .capability-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .capability-intro h2 {
        font-size: 34px;
    }
}



/* ===== Product page only ===== */

.product-detail-left #hero{
    height:550px !important;
    display:block !important;
    position:relative !important;
    overflow:hidden;
}

.product-detail-left #hero::before{
    display:none !important;
}

.product-detail-left #hero .carousel{
    position:relative !important;
    width:100%;
    height:100%;
}

.product-detail-left #hero .carousel-inner{
    position:relative !important;
    width:100%;
    height:100%;
}

.product-detail-left .carousel-inner{
    background:#fff;
}

.product-detail-left #hero .carousel-item{
    position:absolute !important;
    width:100%;
    height:100%;
    background-repeat:no-repeat !important;
    background-position:center center !important;
    background-size:contain !important;
}


/*==================================================
QUALITY STANDARDS PAGE
MAN ENTERPRISE
==================================================*/

.quality-banner h1{

    font-size:58px;

    font-weight:700;

    color:#08203d;

    line-height:1.2;

    margin-bottom:30px;

    letter-spacing:-1px;

}
/*==================================================
QUALITY HERO
==================================================*/

.quality-banner{
    position:relative;
    padding:120px 0 90px;
    background:#f6f9fc;
    overflow:hidden;
}

.quality-banner::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-120px;
    width:550px;
    height:550px;
    background:linear-gradient(135deg,#0d6efd,#003b7a);
    border-radius:50%;
    opacity:.08;
}

.quality-banner::after{
    content:"";
    position:absolute;
    bottom:-220px;
    left:-180px;
    width:500px;
    height:500px;
    background:#0d6efd;
    opacity:.05;
    border-radius:50%;
}

.quality-banner p{

    color:#5f6d7b;

    font-size:19px;

    line-height:34px;

    margin-bottom:25px;

}

.quality-banner strong{

    color:#0056d6;

    font-weight:700;

}

.quality-banner img{

    width:100%;

    border-radius:18px;

    box-shadow:0 30px 70px rgba(0,0,0,.18);

    transition:.5s;

}

.quality-banner img:hover{

    transform:translateY(-8px) scale(1.02);

}

.quality-banner .row{

    min-height:520px;

    align-items:center;

}

.quality-banner .col-lg-7{

    position:relative;

    padding-left:35px;

}

.quality-banner .col-lg-7::before{

    content:"";

    position:absolute;

    left:0;

    top:10px;

    width:5px;

    height:130px;

    background:linear-gradient(#0d6efd,#00b4ff);

    border-radius:30px;

}

.quality-tag{

    display:inline-block;
    
    background:#eaf3ff;
    
    color:#0056d6;
    
    padding:10px 22px;
    
    border-radius:50px;
    
    font-weight:600;
    
    font-size:14px;
    
    letter-spacing:1px;
    
    margin-bottom:20px;
    
    text-transform:uppercase;

}

.quality-banner h1 span{

    color:#0056d6;

}

.quality-section{
    padding:80px 0;
}

.quality-section:nth-child(even){
    background:#f8fbff;
}

.quality-title{
    margin-bottom:60px;
}

.quality-title h2{
    font-size:42px;
    font-weight:700;
    color:#0b3d91;
    margin-bottom:18px;
}

.quality-title p{
    font-size:18px;
    color:#6c757d;
    max-width:700px;
    margin:auto;
    line-height:30px;
}
.quality-title h2:after{
    content:"";
    width:80px;
    height:4px;
    background:#0d6efd;
    display:block;
    margin-top:15px;
}

.quality-card{
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.quality-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.quality-card h4{
    color:#0d4d92;
    font-weight:700;
    margin-bottom:20px;
}

.quality-card ul{
    margin:0;
    padding-left:20px;
}

.quality-card ul li{
    margin-bottom:12px;
    line-height:28px;
}

.quality-img{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.quality-img img{
    width:100%;
    border-radius:12px;
}

.strength-box{
    background:#fff;
    border:1px solid #e8eef8;
    padding:25px;
    text-align:center;
    border-radius:10px;
    transition:.3s;
    height:100%;
}

.strength-box:hover{
    background:#0d6efd;
    color:#fff;
}

.strength-box i{
    font-size:42px;
    color:#0d6efd;
    margin-bottom:15px;
}

.strength-box:hover i{
    color:#fff;
}

.strength-box h5{
    font-weight:700;
    margin-bottom:10px;
}

.objective-list{
    list-style:none;
    padding:0;
}

.objective-list li{
    padding:12px 0 12px 35px;
    position:relative;
    border-bottom:1px solid #eee;
}

.objective-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#0d6efd;
    font-weight:bold;
    font-size:20px;
}

.inspection-list{
    columns:2;
    column-gap:40px;
}

.inspection-list li{
    margin-bottom:10px;
}


.timeline{

    position:relative;

    padding-left:45px;

}

.timeline:before{

    content:"";

    position:absolute;

    left:12px;

    top:0;

    bottom:0;

    width:3px;

    background:#0d6efd;

}

.timeline-step{

    position:relative;

    margin-bottom:32px;

}

.timeline-step:before{

    content:"";

    position:absolute;

    left:-40px;

    top:8px;

    width:14px;

    height:14px;

    background:#0d6efd;

    border-radius:50%;

}
.timeline-step h5{

    color:#0b3d91;

    font-size:22px;

    font-weight:700;

    margin-bottom:10px;

}

.timeline-step p{

    color:#6b7280;

    font-size:16px;

    line-height:28px;

}

@media(max-width:991px){

.process-flow-image{

position:relative;

top:0;

margin-bottom:50px;

}

}

/*=====================================
CERTIFICATIONS
======================================*/

.certification-box{
    background:#fff;
    border:1px solid #e5ecf5;
    border-radius:12px;
    padding:35px 20px;
    text-align:center;
    height:100%;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.certification-box:hover{
    transform:translateY(-8px);
    border-color:#0d6efd;
    box-shadow:0 18px 40px rgba(13,110,253,.18);
}

.certification-box h4{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#08203d;
    transition:.35s;
}

.certification-box:hover h4{
    color:#0d6efd;
}

.certification-box i{
    font-size:42px;
    color:#0d6efd;
    margin-bottom:18px;
    display:block;
}

.certification-box:hover i{
    transform:scale(1.15);
    transition:.3s;
}

.choose-card{
    background:#fff;
    border-radius:10px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.choose-card:hover{
    transform:translateY(-8px);
    background:#0d6efd;
    color:#fff;
}

/*=====================================
MANUFACTURING PROCESS FLOW
======================================*/

/*=====================================
PROCESS FLOW
======================================*/

.process-flow-image{

    background:#fff;

    padding:15px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    position:sticky;

    top:120px;

}

.process-flow-image img{

    width:100%;

    border-radius:12px;

    display:block;

}

.process-flow-image:hover img{

    transform:scale(1.02);

}




.certification-box{
    width:100%;
}
.choose-card i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:15px;
}

.choose-card:hover i{
    color:#fff;
}

@media(max-width:991px){

.inspection-list{
columns:1;
}

.quality-banner h1{
font-size:34px;
}

.quality-title h2{
font-size:28px;
}

.quality-section{
padding:60px 0;
}

}

@media(max-width:767px){

.quality-banner{
padding:60px 0;
text-align:center;
}

.quality-banner h1{
font-size:28px;
}

.quality-banner p{
font-size:16px;
line-height:28px;
}

}