/********** Template CSS **********/
:root {
    /* --primary: #1363C6; */
    --primary:#14183e;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}
 body{
    overflow-x: hidden;
    font-family: Segoe UI,"Segoe UI Web (West European)",-apple-system,BlinkMacSystemFont,Helvetica Neue,sans-serif;
 }

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

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

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


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

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}



/*** Navbar ***/
/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 0px 0 !important;
    height: 80px; 
}

@media (max-width: 446px) {
  .navbar {
    padding: 0px 0 !important;
    height: 30px;
  }
}@media (max-width: 576px) {
  .navbar {
    padding: 0px 0 !important;
    height: 30px;
  }
}
.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: #fff;   /* fixed */
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* === Submenu Styles === */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;       /* hide by default */
  position: absolute;
  min-width: 200px;    /* optional: ensure submenu width */
  z-index: 1000;       /* keep on top */
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* === Mobile Adjustments === */
@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    /* make submenus stack below in mobile */
    .dropdown-submenu > .dropdown-menu {
        position: relative;
        left: 0;
        margin: 0;
    }
}

/* basic fixes so submenu can overlay */
.navbar, .navbar .navbar-nav { overflow: visible; }

/* keep dropdown menus in DOM on desktop and hide with opacity/visibility */
@media (min-width: 992px) {
  /* Top-level dropdown menu (desktop): keep it in DOM but invisible until hover */
  .navbar .dropdown > .dropdown-menu {
    display: block;               /* present in layout but absolutely positioned */
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 2000;
  }

  /* Show top-level dropdown on hover */
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Submenu (nested dropdown) */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu > .dropdown-menu {
    display: block;               /* keep present in DOM */
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: .1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    min-width: 220px;
    z-index: 2100;
  }

  /* Show nested submenu on hover */
  .dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  /* ensure parent dropdown stays on top while hovered */
  .navbar .dropdown:hover { z-index: 2200; }
}

/* Mobile: let Bootstrap handle click toggles (do not override display) */
@media (max-width: 991.98px) {
  .dropdown-submenu > .dropdown-menu {
    position: relative;
    left: 0;
    margin: 0;
  }
}


/*** Hero Header ***/
/*** Hero Header (responsive) ***/
.hero-header {
  /* avoid large negative margin on small screens */
  margin-top: -75px;
  background-size: cover;
  background-position: center;
  padding: 60px 20px 30px; /* more robust than padding-bottom only */
  background-color: #14183e !important;
  color: #fff;
  box-sizing: border-box;
}

/* breadcrumb contrast */
.hero-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/* ===== Quick Links (responsive grid) ===== */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  align-items: stretch; /* make cards same height in a row */
  margin: 20px 0;
}

/* Card default: use flexible sizing (don't use fixed width/height) */
.link-card {
  background: #ffffff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.12);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  padding: 12px;
  min-height: 100px;        /* ensures tap target on small screens */
  box-sizing: border-box;
}

/* Hover / focus states */
.link-card:hover,
.link-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  outline: none;
}

/* Icon and label sizing scales with viewport */
.link-card i,
.link-card img {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  object-fit: contain; /* for images */
}

/* fallback for icon fonts */
.link-card i {
  font-size: 28px;
  line-height: 1;
}

/* label */
.link-card span {
  font-size: 14px;
  text-align: center;
  padding-top: 4px;
  display: block;
  word-wrap: break-word;
}

/* small tweak for long labels */
.link-card .short {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ================================================= */
/* Responsive breakpoints */
/* ================================================= */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .hero-header {
    padding: 50px 18px 28px;
    margin-top: -55px;
  }

  .link-card {
    min-height: 95px;
    padding: 10px;
  }

  .link-card i,
  .link-card img {
    width: 36px;
    height: 36px;
  }

  .link-card span { font-size: 13px; }
}

/* Tablets / large phones: better vertical spacing */
@media (max-width: 768px) {
  .hero-header {
    margin-top: 0;           /* remove negative overlap on smaller screens */
    padding: 40px 16px 24px;
    background-position: top center;
  }

  .quick-links {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }

  .link-card {
    min-height: 110px;
    padding: 12px;
  }

  .link-card i,
  .link-card img {
    width: 44px;
    height: 44px;
  }

  .link-card span { font-size: 14px; }
}

/* Phones */
@media (max-width: 480px) {
  .hero-header {
    padding: 28px 12px 18px;
  }

  .quick-links {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }

  .link-card {
    padding: 10px;
    min-height: 96px;
    border-radius: 10px;
  }

  .link-card i,
  .link-card img {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
  }

  .link-card span {
    font-size: 13px;
    padding-top: 3%;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .quick-links {
    gap: 8px;
  }

  .link-card {
    padding: 8px;
    min-height: 88px; /* keep tappable */
  }

  .link-card i,
  .link-card img {
    width: 32px;
    height: 32px;
  }

  .link-card span { font-size: 12px; }
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/
.container3{
    padding-right: 50px;
}
.container3 h1{
    font-size: 40px;
}
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}

/* section3 */     
/*section3 end*/


/*section4*/
.container4{
    padding-right: 50px;
}
.container4 a{
   padding: 10px 70px;
}

/*sec5*/
 .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 1270px;
      width: 100%;
      padding: 70px 50px 70px 50px;
    }

    .card {
      background: #fff;
      padding: 30px 20px 20px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #016fc3, #c0ddff);
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: -50px auto 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .icon img {
      width: 40px;
      height: 40px;
      filter: brightness(0) invert(1);
    }

    h3 {
      margin-bottom: 10px;
      font-size: 20px;
      color: #333;
    }

    p {
      font-size: 15px;
      color: #fff;
      line-height: 1.5;
    }


    /*section6*/
       .how-it-works {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
    }

    .how-it-works h2 {
     margin-top: 30px;
      font-size: 28px;
      margin-bottom: 10px;
      color: #016fc3;
;
    }

    .how-it-works p.subtitle {
      font-size: 16px;
      color: #666;
    }


    .steps {
        background: #e1e8f5;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
      gap: 15px;
      margin-top: 10px;
   max-width: 1270px;
     
    }

    .step {
      background: #fff;
      border-radius: 8px;
      padding: 20px 20px 20px 20px;
      position: relative;
      box-shadow: 0 2px 10px rgba(172, 227, 240, 0.08);
      text-align: left;
      transition: transform 0.3s ease;
      margin: 60px 0px 40px 0px;
    }

    .step:hover {
      transform: translateY(-5px);
    }

    .icon6 {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #0078d4, #4a90e2);
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: 15px;
      left: 120px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .icon6 img {
      width: 40px;
      height: 40px;
      filter: brightness(0) invert(1);
    }
    .steps{

        padding: 0px 75px;
    }

    .step h3 {
      margin-top: 50px;
      font-size: 18px;
      margin-bottom: 12px;
      color: #2d2d2d;
      text-align: center;
    }

    .step p {
      font-size: 13px;
      color: #555;
      text-align: center;
    }

    .step a {
      color: #0078d4;
      text-decoration: none;
    }

    .step a:hover {
      text-decoration: underline;
    }

    /* ========================================================= */
/* ✅ RESPONSIVE BREAKPOINTS */
/* ========================================================= */

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
  .steps {
    padding: 0px 60px;
  }

  .icon6 {
    left: 80px;
  }

  .step {
    margin: 40px 0 30px 0;
  }

  .step h3 {
    font-size: 17px;
  }
}

/* Large mobile: 768px and below */
@media (max-width: 768px) {
  .how-it-works {
    padding: 40px 15px;
  }

  .steps {
    padding: 0px 30px;
    grid-template-columns: 1fr; /* stack vertically */
  }

  .icon6 {
    left: 50%;
    transform: translateX(-50%);
    top: -35px;
  }

  .step {
    margin-top: 60px;
    text-align: center;
    padding: 30px 15px 20px 15px;
  }

  .step h3 {
    font-size: 16px;
  }

  .step p {
    font-size: 14px;
  }
}

/* Small mobile: 480px and below */
@media (max-width: 480px) {
  .how-it-works h2 {
    font-size: 22px;
  }

  .steps {
    padding: 0px 15px;
  }

  .icon6 {
    width: 60px;
    height: 60px;
  }

  .icon6 img {
    width: 30px;
    height: 30px;
  }

  .step {
    margin: 50px 0 30px 0;
  }

  .step h3 {
    font-size: 15px;
  }

  .step p {
    font-size: 13px;
  }
}

/* Extra small devices: 360px and below */
@media (max-width: 360px) {
  .steps {
    padding: 0 10px;
  }

  .step {
    padding: 20px 10px;
  }

  .icon6 {
    width: 55px;
    height: 55px;
  }

  .icon6 img {
    width: 26px;
    height: 26px;
  }

  .step h3 {
    font-size: 14px;
  }

  .step p {
    font-size: 12px;
  }
}


     /* Section7 container */
    .articles-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
    }

    /* Small heading */
    .articles-section h5 {
      font-size: 13px;
      text-transform: uppercase;
      color: #520303;
      margin-top: 60px;
      margin-bottom: 30px;
      letter-spacing: 1px;
    }

    /* Main heading */
    .articles-section h2 {
      font-size: 28px;
      margin-bottom: 12px;
      color:#016fc3;
    }

    /* Subtitle */
    .articles-section p.subtitle {
      font-size: 16px;
      color: #555;
      margin-bottom: 40px;
    }

    /* Grid layout */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      padding: 20px 50px;
    }

    /* Each card */
    .article-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .article-card:hover {
      transform: translateY(-6px);
    }

    /* Top image with overlay */
    .article-image {
      position: relative;
      height: 200px;
      background-size: cover;
      background-position: center;
      background: #000;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(1, 1, 1, 0.784);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
      text-align: center;
    }

    .overlay h3 {
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      line-height: 1.4;
    }

    /* Bottom content */
    .article-content {
      padding: 15px;
      text-align: left;
    }

    .article-content p {
      font-size: 15px;
      color: #333;
    }


     .container8 {
      max-width: 900px;
      margin: auto;
      padding: 20px;
      text-align: center;
    }

    h1 {
      font-size: 2.5rem;
      color: #0078d7;
      margin-bottom: 10px;
    }

    p.subtitle {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .logo {
      width: 200px;
      margin: 0 auto 30px;
    }

    .certifications {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .cert-card {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 20px;
      width: 250px;
      transition: transform 0.3s ease;
    }

    .cert-card:hover {
      transform: translateY(-5px);
    }

    .cert-card h3 {
      color: #000000;
      font-size: 1.1rem;
      margin: 0;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 2rem;
      }

      .cert-card {
        width: 100%;
      }
    }


    /*section****/
     .clients-section {
      padding: 60px 20px;
      text-align: center;
      
    }

    .clients-section h2 {
      font-size: 2em;
      margin-bottom: 10px;
      margin-top: 50px;
      color: #0078d7;
    }

    .clients-section p {
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 1em;
      color: #555;
    }

    .slider {
      display: flex;
      overflow: hidden;
      position: relative;
      max-width: 100%;
      margin: 0 auto;
    }

    .slide-track {
      display: flex;
      animation: scroll 20s linear infinite;
    }

    .slide {
      flex: 0 0 auto;
      width: 200px;
      margin: 0 15px;
      display: flex;
      align-items: center;
      justify-content: center;

    }

    .slide img {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

    .slide img:hover {
      filter: grayscale(0%);
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 600px) {
      .slide {
        width: 120px;
        margin: 0 10px;
      }

      .clients-section h2 {
        font-size: 1.5em;
      }

      .clients-section p {
        font-size: 0.9em;
      }
    }


      .subscribe-section {
      position: relative;
      background: url();
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .subscribe-box {
      background-color: rgba(0, 60, 120, 0.85);
      padding: 40px 30px;
      border-radius: 10px;
      text-align: center;
      max-width: 500px;
      width: 90%;
    }

    .subscribe-box h2 {
      font-size: 2em;
      margin-bottom: 10px;
    }

    .subscribe-box p {
      font-size: 1em;
      margin-bottom: 25px;
    }

    .subscribe-form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .subscribe-form input[type="email"] {
      padding: 12px;
      font-size: 1em;
      border: none;
      border-radius: 5px;
      flex: 1 1 250px;
      max-width: 300px;
    }

    .subscribe-form button {
      padding: 12px 20px;
      font-size: 1em;
      background-color: #ffcc00;
      color: #003c78;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
    }

    @media (max-width: 600px) {
      .subscribe-box h2 {
        font-size: 1.5em;
      }

      .subscribe-form {
        flex-direction: column;
      }

      .subscribe-form input,
      .subscribe-form button {
        width: 100%;
      }
    }



    footer {
      background-color: #0078d7;
      
      color: white;
      padding: 40px 20px;
      text-align: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-bottom: 20px;
    }

    .footer-links a {
      color: white;
      text-decoration: none;
      font-size: 0.9em;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .social-icons a {
      color: white;
      font-size: 1.2em;
      text-decoration: none;
    }

    .footer-bottom {
      font-size: 0.8em;
      color: #ccc;
    }

    @media (max-width: 600px) {
      .overlay h2 {
        font-size: 1.5em;
      }

      .form-group {
        flex-direction: column;
      }

      .form-group input,
      .form-group button {
        width: 100%;
      }

      .footer-links {
        flex-direction: column;
        gap: 10px;
      }
    }










/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}
  
.case-item:hover img {
    transform: scale(1.2);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}
p {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
}

/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
    
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(237, 231, 231, 0.968);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}
.container-fluid bg-dark text-white-50 footer pt-5 p{
   color: rgba(237, 231, 231, 0.968);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
   color: rgba(237, 231, 231, 0.968);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(237, 231, 231, 0.968);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


    /*Product page*/
  
    /* Top Section */
    .top-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 50px;
      align-items: center;
    }
    .top-section .intro {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }
    .top-section iframe {
      width: 100%;
      height: 350px;
      border-radius: 12px;
      border: none;
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

    /* Details + Carousel */
    .details-carousel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 60px;
    }
    .details {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }
    .details h2 { color: #004578; margin-bottom: 20px; }
    .details ul { list-style: none; padding: 0; }
    .details ul li {
      margin-bottom: 12px;
      padding-left: 25px;
      position: relative;
    }
    .details ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #0078d4;
      font-weight: bold;
    }

    /* Carousel */
    .carousel {
      position: relative;
      width: 100%;
      max-width: 500px;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);
      background: #000;
    }
    .carousel-images {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }
    .carousel-images img {
      width: 100%;
      height: 350px;
      object-fit: cover;
    }
    .carousel button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: none;
      color: #fff;
      font-size: 20px;
      padding: 10px;
      cursor: pointer;
      border-radius: 50%;
    }
    .carousel button.prev { left: 10px; }
    .carousel button.next { right: 10px; }
    .indicators {
      position: absolute;
      bottom: 15px;
      width: 100%;
      text-align: center;
    }
    .indicators span {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background: rgba(255,255,255,0.6);
      border-radius: 50%;
      cursor: pointer;
    }
    .indicators span.active { background: #0078d4; }

    

    /* Installation Section */
    .installation {
      margin-bottom: 60px;
    }
    .installation h2 { text-align: center; color: #004578; margin-bottom: 30px; }
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .step {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
      text-align: center;
    }
   
    .step h3 { margin-bottom: 10px; color: #0078d4; }

    
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }

  .service-cards .card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-cards .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  }

  .service-cards .icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    background: #0078D7;
    padding: 10px;
    border-radius: 50%;
  }

  .service-cards h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #222;
  }

  .service-cards p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }

  .cta .cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #0078D7;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .cta .cta-btn:hover {
    background: #005a9e;
  }

  