*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
      font-family: "Montserrat", sans-serif;
}

:root{
    --primary-color: #2E5A8F  ;
    --secondary-color:  #02AAE6;
    --third-color: #364273;
      --accent-color: #ff7685;   
    --grey: #6B6D70;
    --dark: #000;
    --light: #fff ;
  --wgx-bg: #0b1220;          /* background of preloader */
    --wgx-accent: #00aaff;      /* accent / primary color */
    --wgx-accent-2: #7be3ff;    /* secondary accent */
    --wgx-text: #ffffff;        /* logo/text color */
    --preloader-z: 99999;
  }
  /* Preloader styles (put in your main CSS if you prefer) */
 
  
 /* Spinner arc rotation */
    .wgx-spinner {
      animation: spin 2s linear infinite;
      transform-origin: 60px 60px;
    }
    @keyframes spin {
      100% { transform: rotate(360deg); }
    }

    /* "W" draw and erase loop */
    .wgx-w {
      stroke-dasharray: 200; /* approximate path length */
      stroke-dashoffset: 200;
      animation: drawW 3s ease-in-out infinite alternate;
    }
    @keyframes drawW {
      to {
        stroke-dashoffset: 0;
      }
    }
/* Spinner arc rotation */
    .wgx-spinner {
      animation: spin 2s linear infinite;
      transform-origin: 60px 60px;
    }
    @keyframes spin {
      100% { transform: rotate(360deg); }
    }

    /* "W" draw and erase loop */
    .wgx-w {
      stroke-dasharray: 200; /* approximate path length */
      stroke-dashoffset: 200;
      animation: drawW 3s ease-in-out infinite alternate;
    }
    @keyframes drawW {
      to {
        stroke-dashoffset: 0;
      }
    }
  .wgx-preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--wgx-bg), #061726 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--preloader-z);
    transition: opacity 400ms ease, visibility 400ms ease;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }

  /* Center box */
  .wgx-preloader .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 18px;
    text-align: center;
  }

  /* SVG size */
  .wgx-preloader svg {
    width: 120px;
    height: 120px;
    display: block;
  }

  /* Animated circle (rotate) */
  .wgx-spinner {
    transform-origin: 50% 50%;
    animation: spin 1.6s linear infinite;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  /* Stroke dash animation for inner path */
  .wgx-path {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: draw 1.6s cubic-bezier(.2,.9,.2,1) forwards;
  }

  @keyframes draw {
    0%   { stroke-dashoffset: 240; opacity: 0; transform: translateY(6px); }
    60%  { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 1; transform: translateY(0); }
  }

  /* Logo text animation */
  .wgx-preloader .brand {
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--wgx-text);
    font-weight: 700;
    letter-spacing: 0.6px;
    font-size: 1rem;
    opacity: 0.98;
  }

  .wgx-preloader .sub {
    color: rgba(255,255,255,0.85);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    opacity: 0.95;
  }

  /* subtle pulse below */
  .wgx-preloader .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wgx-accent);
    box-shadow: 0 0 12px 4px rgba(0,170,255,0.12), 0 0 30px rgba(123,227,255,0.06);
    animation: pulse 1.6s infinite;
    margin-top: 6px;
  }

  @keyframes pulse {
    0% { transform: scale(.9); opacity: .9; }
    50% { transform: scale(1.4); opacity: .45; }
    100% { transform: scale(.9); opacity: .9; }
  }

  /* Fade-out classes applied by JS when page loaded */
  .wgx-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* Small-screen tweak */
  @media (max-width: 480px) {
    .wgx-preloader svg { width: 92px; height: 92px; }
    .wgx-preloader .brand { font-size: 0.95rem; }
  }

.bg-primar{
  background-color: var(--secondary-color) !important;
}

.text-primar{
  color: var(--secondary-color) !important;

}


 /* --- Topbar --- */
    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      padding: 8px 40px;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .topbar .logo img {
      width: 250px;
    }

    .topbar .contact-info {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 14px;
      color: var(--light);
    }

    .topbar .contact-info i {
      margin-right: 6px;
      color: var(--secondary-color);
    }

    .topbar .partner img {
      width: 150px;
      height: 50px;
    }

 
/* --- Topbar --- */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 40px;
  position: sticky;
  top: 0;
  z-index: 1001; /* above navbar */
  flex-wrap: wrap;
}

.topbar .logo img {
  width: 180px;
}

.topbar .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.topbar .contact-info i {
  margin-right: 6px;
  color: var(--secondary-color);
}

.topbar .partner img {
  width: 120px;
}

/* --- Navbar --- */
.navbar {
  background: var(--third-color);
  width: 100%;
  z-index: 999;
  transition: top 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 20px;
}

/* Nav Menu */
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  transition: max-height 0.4s ease;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 12px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 60%;
}

.nav-menu li a:hover {
  color: var(--secondary-color);
}

/* Navbar logo initially hidden */
.nav-logo {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease;
}

/* Show logo after scroll (desktop) */
.navbar.show-logo .nav-logo {
  opacity: 1;
  transform: translateY(0);
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  margin-left: 100px !important;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive Styles */

/* Desktop (>992px) */
@media (min-width: 993px) {
  .nav-menu {
    flex-direction: row;
    max-height: none;
  }
  .menu-toggle {
    display: none;
  }
  .nav-logo {
    display: flex;
  }
    .carousel-item img{
    height: 650px;
  }
}

/* Tablet/Mobile (≤992px) */
@media (max-width: 992px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 1001;
  }

  .navbar {
    position: relative;
  }

  .nav-logo {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--third-color);
    transition: max-height 0.4s ease;
    border-radius: 8px;
    margin-top: 10px;
  }

  .nav-menu.show {
    max-height: 500px;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu li a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}


/* Mobile Sidebar (hidden by default) */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -300px; /* hidden left */
  width: 300px;
  height: 100%;
  background: var(--third-color);
  z-index: 2000;
  transition: left 0.4s ease;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  color: #fff;
  font-weight: bold;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.close-sidebar {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.mobile-menu li{
  line-height: 2.9;
}
.mobile-menu li a {
  color: #fff; 
  padding: 10px;
  margin: 30px 10px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}

.mobile-menu li a:hover {
  background: rgba(255,255,255,0.1);
}
.nav-logo img{
  width: 190px;
}

/* CSS */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  display: inline-block;
}

.nav-menu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
}

 

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* Below the parent */
  left: 0;
  background-color: #fff;
  width: 250px !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}
 
.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  padding: 10px 15px;
  color: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

 


/* Hide desktop nav-menu and show mobile toggle only <992px */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .nav-logo {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .navbar{
    display: none !important;
  }
}

@media (max-width:768px) {
  .mobile-sidebar.active {
    left: 0;
    width: 100%;
}

}


    /* about us section  */
.about-section {
  background-color: var(--dark);
  color: #fff;
  font-family: "Raleway", sans-serif;
}

.ten h1 {
  text-align: center;
  font-size: 50px;
  text-transform: uppercase;
  color: #d5caca;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.ten h1 span {
  font-size: 15px;
  color: var(--secondary-color);
  word-spacing: 1px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  gap: 20px;
}

.ten h1 span::before,
.ten h1 span::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--third-color);
  height: 2px;
  background-color: #f8f8f8;
}

.heading-section .ten .head-dark{
  color: var(--dark) !important;
}


.ten h2 {
  text-align: center;
  font-size: 50px;
  text-transform: uppercase;
  color: #d5caca;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.ten h2 span {
  font-size: 15px;
  color: var(--secondary-color);
  word-spacing: 1px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  gap: 20px;
}

.ten h2 span::before,
.ten h2 span::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--third-color);
  height: 2px;
  background-color: #f8f8f8;
}


.text-light {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 1px;
}

.stats {
  margin-top: 40px;
}

.stat-number {
  font-size: 35px;
  font-weight: 700;
  color: var(--secondary-color); /* Highlight color for numbers */
}

.stat-text {
  font-size: 18px;
  color: #fff;
  margin-top: 5px;
}

/* Responsive for Mobile Devices */
@media (max-width: 768px) {
  .ten h2 {
    font-size: 20px; /* smaller headline */
    margin-bottom: 15px;
    letter-spacing: 0.5px;
  }

  .ten h2 span {
    font-size: 8px;  
    gap: 10px;      
    grid-template-columns: 1fr auto 1fr; 
  }

  .ten h2 span::before,
  .ten h2 span::after {
    height: 1px; 
  }
  .partner {
    display: none;
  }
  .contact-info span {
    display: none;
  }
  .topbar { 
    padding: 10px 10px; 
}
 .floating-buttons {
        top: auto;
        bottom: 163px !important; 
        right: 10px;
        flex-direction: row;
    }
}

@media (max-width: 480px) {
  .ten h2 {
    font-size: 28px; 
  }
  .ten h2 span {
    font-size: 12px;
    word-wrap: break-word;
    gap: 5px;
    padding-top: 10px;
  }
   
}


    /* about us section  */







    
    .circle-center {
      width: 260px;
      height: 260px;
      border-radius: 50%;
      overflow: hidden;
      margin: auto;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      border: 8px solid #fff;
    }

    .circle-center img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .service-box {
      display: flex;
      align-items: center;
      margin: 30px 0;
      position: relative;
    }

    .service-text {
      background: #fff;
      border: 1px solid #eee;
      padding: 18px 20px;
      border-radius: 10px;
      flex: 1;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .service-text:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

    .icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 20px;
      color: #fff;
      font-size: 34px;
      font-weight: bold;
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .icon-circle:hover {
      transform: scale(1.1);
    }

    /* Connector lines */
    .service-box::before {
      content: "";
      position: absolute;
      top: 50%;
      width: 30px;
      height: 2px;
      background: #ccc;
    }

    .text-end .service-box::before {
      right: 100px;
    }

    .text-start .service-box::before {
      left: 100px;
    }

    /* Colors */
    .purple { background: linear-gradient(135deg,#9b59b6,#8e44ad); }
    .blue   { background: linear-gradient(135deg,#2980b9,#3498db); }
    .green  { background: linear-gradient(135deg,#27ae60,#2ecc71); }
    .orange { background: linear-gradient(135deg,#f39c12,#e67e22); }
    .red    { background: linear-gradient(135deg,#e74c3c,#c0392b); }
    .pink   { background: linear-gradient(135deg,#e84393,#d63075); }

   .service-box  h3 {
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 1.2rem;
      color: #333;
    }

   .service-box  p {
      font-size: 0.95rem;
      color: #666;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .services-row {
        flex-direction: column;
        align-items: center;
      }
      .left-col, .right-col {
        width: 100%;
      }
      .service-box::before {
        display: none;
      }
    }










    .timeline {position: relative; margin: 30px 0;}
.timeline::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 4px; background: linear-gradient(var(--secondary-color),var(--secondary-color));
}
.timeline-item {
  position: relative; width: 50%; padding: 20px;
}
.timeline-item.left {left: 0; text-align: right;}
.timeline-item.right {left: 50%;}
.timeline-item .icon {
  width: 60px; height: 60px;
  border-radius: 50%; background: var(--light);
  border: 3px solid var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary-color);
  position: absolute; top: 20px;
}
.timeline-item.left .icon {right: -30px;}
.timeline-item.right .icon {left: -30px;}
.timeline-item .content {
  background: #fff; padding: 15px 20px;
  border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
.timeline-item h3 {color:var(--third-color);}
















    /* ===== Marquee Container ===== */
      .marquee-process {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background: #f7f9fb;
    }

    .marquee-container {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      width: 100%;
      background: #fff;
      border-top: 2px solid #eee;
      border-bottom: 2px solid #eee;
      padding: 20px 0;
    }

    /* ===== Marquee Content ===== */
    .marquee-content {
      display: inline-block;
      padding-left: 100%;
      animation: marqueeScroll 32s linear infinite;
    }

    @keyframes marqueeScroll {
      0%   { transform: translateX(0%); }
      100% { transform: translateX(-50%); }
    }

    /* ===== Hover Fill Text ===== */
    .hover-fill-text {
      font-size: 80px;
      font-weight: 800;
      color: transparent;
      -webkit-text-stroke: 1px #cec4c4;
      position: relative;
      display: inline-block;
      margin: 0 40px;
      cursor: default;
    }

    /* Hover fill effect */
    .hover-fill-text::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      color: var(--primary-color);
      -webkit-text-stroke: 0;
      overflow: hidden;
      white-space: nowrap;
      pointer-events: none;
      transition: width 1.5s ease;
      z-index: 1;
    }

    .hover-fill-text:hover::after {
      width: 100%;
    }

    /* ===== Icon Styling ===== */
    .hover-fill-text i {
      margin-left: 15px;
      font-size: 50px;
      color: #cec4c4; /* default same as stroke */
      transition: color 0.5s ease, transform 0.5s ease;
    }

    /* When hover, icon also turns orange */
    .hover-fill-text:hover i {
      color: var(--primary-color);
      transform: rotate(20deg); /* small rotation */
    }

    /* ===== Responsive ===== */
    @media screen and (max-width: 991px) {
      .hover-fill-text {
        font-size: 50px;
      }
      .hover-fill-text i {
        font-size: 36px;
      }
    }

    @media (max-width: 767px) {
      .hover-fill-text {
        font-size: 32px;
        margin: 0 20px;
      }
      .hover-fill-text i {
        font-size: 28px;
      }
    }














/* 


.vision-section .small-title {
  font-size: 13px;
  font-weight: 600;
  color: #0d6efd;
  letter-spacing: 1px;
}
.vision-section .main-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}
.vision-section .lead {
  font-size: 16px;
  color: #555;
}
 
.circle-grid {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  height: 600px;
}

.center-circle {
  width: 160px;
  height: 160px;
  background: #fff;
  border: 4px solid #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  z-index: 10;
}

.center-circle img {
  max-width: 80%;
} 
.swot-card {
  background: #fff;
  padding: 20px;
  width: 230px;
  border-radius: 12px;
  border-top: 4px solid #0d6efd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.swot-card:hover { 
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.swot-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}
.swot-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
 
.top { top: 0; left: 50%; transform: translate(-50%, 0); }
.right { right: 0; top: 50%; transform: translate(0, -50%); }
.bottom { bottom: 0; left: 50%; transform: translate(-50%, 0); }
.left { left: 0; top: 50%; transform: translate(0, -50%); }

@media (max-width: 768px) {
  .circle-grid {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .swot-card {
    position: static;
    width: 100%;
  }
  .center-circle {
    position: static;
    transform: none;
    margin-bottom: 20px;
  }
}
 */



 /* ----------------------- end of products css here ------------------------- */


.why-choose-section {
  /* background: #d4b1b1; */
  padding: 30px 10px;
  background: var(--third-color);
}

/* why choose css start */
.why-choose-btn a {
  border: 1px solid var(--light);
  color: var(--light);
  padding: 20px;
  border-radius: 40px;
  align-items: center;
  text-decoration: none;
}

.why-choose-btn a:hover {
  background-color: var(--primary-color);
  color: #fff;
  transition: .4s ease-in-out;
}

.why-choose-btn a i {
  background-color: var(--dark);
  color: #fff;
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 19px;
}

.why-choose-btn a:hover i {
  background-color: var(--primary-color);
  color: var(--black);

}

.why-choose-post {
  border: 5px dotted #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #fff;
}


.img-div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

.img-div img {
  background-color: var(--black);
  padding: 7px;
  border-radius: 50%;
}

.why-choose-section  .why-us-feature-heading-name h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--light) !important;
}
.why-us-feature-card h3{
  color: var(--light);
}

.why-us-feature-card p{
  color: var(--light);
  line-height: 1.9;
}

.why-us-feature-heading-name p {
  margin-bottom: 0px;
  color: #aaa9a9;
  line-height: 1.8;
  font-size: 17px;
}

.why-us-feature-card:hover .img-div img {
  background-color: var(--black);
  transition: 0.4s ease-in-out;
}

.why-us-feature-card {
  margin-bottom: 40px;
}


 

.mission-icon{
  background: var(--light);
  border-radius: 30%;
 padding: 20px 10px;
}
 @media screen and (max-width: 991px) {
  .why-us-feature-card {
    margin-bottom: 20px;
  }

  .why-choose-post {
    max-width: 70%;
    margin: 0 auto;
  }

  .choose-head-card h2 {
    font-size: 24px;
    text-align: center;
  }

  .why-choose-content p {
    text-align: center;
  }

  .why-choose-btn {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .choose-head-card h2 {
    font-size: 20px !important;
    text-align: center;
  }

  .why-choose-content p {
    font-size: 14px;
    margin-bottom: 10px !important;
    text-align: center;
  }

  .why-choose-btn a {
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 30px;
  }

  .why-choose-btn a i {
    font-size: 12px;
    padding: 4px 6px;
  }

  .why-us-feature-card {
    margin-bottom: 20px;
  }

  .mission-icon {
    margin-bottom: 10px;
    padding: 14px 8px;
  }

  .why-us-feature-card .row {
    flex-direction: column;
    text-align: center;
  }

  .why-us-feature-card h3 {
    font-size: 18px;
    margin-top: 10px;
  }

  .why-us-feature-card p {
    font-size: 14px;
  }
}

@media screen and (max-width: 460px) {
  .choose-head-card h2 {
    font-size: 18px !important;
  }

  .why-choose-content p {
    font-size: 13px;
  }

  .why-choose-btn a {
    font-size: 13px;
    padding: 8px 12px;
  }

  .why-choose-btn a i {
    font-size: 10px;
    padding: 3px 5px;
  }

  .why-us-feature-card {
    margin-bottom: 15px;
  }

  .mission-icon {
    padding: 12px 6px;
  }

  .why-choose-post {
    max-width: 90%;
    margin: 0 auto;
  }

  .why-choose-post img {
    width: 100%;
    height: auto;
  }
}



/* Grid Layout */
.sic_l {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Card Styling */
.portfolio-inner {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  cursor: pointer;
}
.portfolio-inner .icon {
  font-size: 32px;
  color: #0e3d52;
  margin-bottom: 12px;
}

.portfolio-inner:hover .icon {
  color: #fff; /* changes color on hover */
  transform: scale(1.2);
  transition: all 0.3s ease;
}

/* Hover Effects */
.portfolio-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-color: #4b3ca8;
}

/* Icon */
.portfolio-inner .icon {
  background: #f4f6ff;
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}
.portfolio-inner:hover .icon {
  background: linear-gradient(135deg, #4b3ca8, #5a4ae3);
}
.portfolio-inner:hover .icon img {
  filter: brightness(0) invert(1);
}

/* Title */
.name_xxd h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.portfolio-inner:hover .name_xxd h3 {
  color: #4b3ca8;
}

/* Description */
.name_xxd p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
  opacity: 0;  
}
.portfolio-inner:hover .name_xxd p {
   opacity: 1;  

}









 .faq-card {
      transition: all 0.3s ease;
      border-left: 4px solid transparent;
    }

    .faq-card:hover {
      transform: translateY(-5px);
      border-left: 4px solid #0d6efd;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .faq-card h3 {
      font-size: 1.1rem;
    }










.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #0e3d52;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #06a3e8, #293e7a);
  margin: 10px auto 0;
  border-radius: 2px;
}

.sic_l {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.sic_l .portfolio-inner {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
}

.sic_l .portfolio-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #06a3e8;
  background: linear-gradient(135deg, #ffffff, #f9fcff);
}

.sic_l .portfolio-inner .icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #f2f6fa;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}
.sic_l .portfolio-inner:hover .icon {
  background: linear-gradient(135deg, #06a3e8, #293e7a);
}
.sic_l .portfolio-inner .icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(1);
  transition: all 0.3s ease;
}
.sic_l .portfolio-inner:hover .icon img {
  filter: grayscale(0) brightness(1.2);
}

.sic_l .portfolio-inner .name_xxd h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}
.sic_l .portfolio-inner:hover .name_xxd h3 {
  color: #06a3e8;
}












 .industry-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  height: 240px;
}

.industry-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-box:hover img {
  transform: scale(1.15);
}

.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0, 0, 0, 0.385));
  color: #fff;
  text-align: center;
}

.industry-content i {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
  color: var(--secondary-color); /* Accent color */
}

.industry-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.industry-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}












    .choose-us {
      padding: 80px 15px;
      background-color: var(--third-color);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      margin: 40px auto;
     }

    .choose-us h2 {
      font-weight: 700;
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 40px;
      text-align: center;
      text-transform: uppercase;
    }

    .feature-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--third-color);
      margin-bottom: 10px;
    }

    .feature-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #333;
    }

    .feature-desc {
      color: #666;
      font-size: 1rem;
    }

    .choose-us img {
      max-width: 100%;
      border-radius: 10px;
      transition: transform 0.3s ease-in-out;
    }

    .choose-us img:hover {
      transform: scale(1.05);
    }

    .feature-box {
      background-color: #f1f1f1;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .feature-box .feature-number {
      color: #fff;
      background-color: var(--third-color);
      padding: 10px;
      height: 70px;
      width: 80px;
      border-radius: 50%;
      margin-bottom: 20px;
    }

    @media (max-width: 767.98px) {
      .choose-us {
        padding: 50px 15px;
      }
      .choose-us h2 {
        font-size: 2rem;
        margin-bottom: 30px;
      }
      
    }




 .why-us-card {
  padding: 10px;
  background-color: #1d1d1d;
  box-shadow: rgba(196, 196, 196, 0.15) 1.95px 1.95px 2.6px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 20px;
}

 .why-us-card img {
  width: 80px;
  margin-bottom: 20px;
}

 .why-us-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

 .why-us-card p {
  color: rgb(162, 155, 155);
}

/* responsive css start */

@media screen and (max-width: 1220px) {
   .why-us-card h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
   .why-us-card img {
    width: 60px;
    margin-bottom: 10px;
  }

   .why-us-card h3 {
    font-weight: 500;
    margin-bottom: 5px;
  }
}


 .choose-us {
      padding: 60px 0;
    }
    .choose-us h2 {
      font-weight: 700;
      margin-bottom: 40px;
    }
    .feature-number {
      font-size: 2rem;
      font-weight: 700;
      color: #000;
    }
    .feature-title {
      font-weight: 600;
      margin-bottom: 5px;
    }
    .feature-desc {
      color: #666;
      font-size: 0.95rem;
    }
    .choose-us img {
      max-width: 100%;
      border-radius: 10px;
    }
    @media (max-width: 767.98px) {
      .choose-us .row > div {
        margin-bottom: 25px;
      }
    }












    .pricing-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    /* background: linear-gradient(350deg, var(--third-color) 100%, #fff 70%); */
    background: linear-gradient(350deg, var(--dark) 100%, #fff 70%);
    
  }

  .pricing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: light;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    z-index: -1;
  }

  .pricing-section .pricing-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    text-align: center;
  }

  .pricing-section .pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }

  .pricing-section .pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #5a4ae3;
    box-shadow: 0 12px 30px rgba(90,74,227,0.3);
  }

  .pricing-section .card-header {
    height: 6px;
  }

 .pricing-section  .card-body i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #5a4ae3;
  }

 .pricing-section .pricing-card h3 {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark);
  }

.pricing-section  .features p {
    margin: 6px 0;
    color: #666;
    font-size: 14px;
  }

  .pricing-card .card-body ul li{
    color: var(--third-color);
    text-align: center;
     
  }

 .pricing-section .price {
    font-size: 19px;
    font-weight: 700;
    margin: 15px 0;
    color: #222;
  }

 .pricing-section .btn-signup {
    background: linear-gradient(135deg, #5a4ae3, #372c80);
    color: var(--light);
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 500;
    border: none;
    transition: 0.3s;
  }


  .pricing-card .card-body  .fa-arrow-right{
    font-size: 15px !important;
  }
 .pricing-section .btn-signup:hover {
    background: linear-gradient(135deg, #372c80, #5a4ae3);
    box-shadow: 0 4px 12px rgba(90,74,227,0.5);
  color: var(--light);
  }




  /* footer start================================================================================================== */
.footer {
    box-shadow: rgba(0, 0, 0, 0.884) 0px 2px 5px -1px, rgba(0, 0, 0, 0.877) 0px 1px 3px -1px;

    background-color: var(--third-color);
}

.top-part {
    padding: 50px 0px;
}

.footer a {
    text-decoration: none !important;
}

.footer h3 {
    font-size: 23px;
    color: var(--light);
}

.footer span strong {
    color: var(--secondary-color);
}

.footer span {
    color: var(--light);
}

.footer span a {
    color: var(--light);
}

.footer .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer .social a {
    padding: 8px 12px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    color: var(--light);
}

.footer .social a:hover{
  background-color: var(--light);
  color: var(--third-color);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.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 {
    color: var(--secondary-color);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.2rem;
    font-size: 15px;
    background: var(--light);
    color: var(--blue);
    font-weight: 500;
}

.footer .copyright a {
    color: var(--blue);
    font-weight: 500;
}

.footer .copyright a:hover {
    color: var(--secondary-color);
}

/* footer end================================================================================================== */









/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  top: 30%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common Button Styles */
.floating-btn {
  display: inline-block;
  background-color: #0d6efd;
  color: #fff;
  padding: 12px 25px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px 0 0 5px;
  transform: rotate(90deg);
  transform-origin: right top;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
  white-space: nowrap;
}

/* Individual Button Colors */
.call-btn { background-color: #0d6efd; }
.whatsapp-btn { background-color: #25D366; }
.enquiry-btn { background-color: var(--secondary-color); }

.floating-btn:hover {
  opacity: 0.9;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Mobile Responsiveness */
@media(max-width: 768px){
  .floating-buttons {
    top: auto;
    bottom: 20px;
    right: 10px;
    flex-direction: row;
  }
  .floating-btn { 
    padding: 10px 15px;
    font-size: 14px;
  }
}
/* Common Circle Button Styles */
.floating-circle {
  position: fixed;
  top: 92%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 9999;
  text-decoration: none;
}

/* Left Call Button */
.left-circle {
  left: 20px;
  background-color: #0d6efd;
}
.left-circle:hover {
  background-color: #084298;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Right WhatsApp Button */
.right-circle {
  right: 20px;
  background-color: #25D366;
}
.right-circle:hover {
  background-color: #128C7E;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Mobile Responsiveness */
@media(max-width:768px){
  .left-circle { left: 15px; top: auto; bottom: 30px; transform: none; }
  .right-circle { right: 15px; top: auto; bottom: 80px; transform: none; }
      .choose-us h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .choose-us header p {
      font-size: 13px;
      text-align: center;
    }
}
/* what app section start here */
/* WhatsApp Icon */
.whatsapp-icon img {
  width: 60px;
  position: fixed;
  bottom: 25px;
  right: 20px;
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s;
}
.whatsapp-icon img:hover {
  transform: scale(1.1);
}

/* Chat Widget Container */
#whatsapp {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}

/* Chat Card */
.chat-card {
  width: 320px;
  max-width: 90vw;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

/* Slide Animations */
@keyframes slideInUp {
  from { transform: translateY(200px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes slideOutDown {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(200px); opacity: 0; }
}
.slide-in { animation-name: slideInUp; }
.slide-out { animation-name: slideOutDown; }

/* Chat Header */
.chat-header {

  background-color: #0d6efd;
  z-index: 99999 !important;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-logo {
  display: flex;
  align-items: center;
}

.chat-logo img {
  width: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-online p {
  margin: 0;
  font-size: 14px;
}

.chat-close i {
  font-size: 20px;
  cursor: pointer;
}

/* Chat Middle */
.chat-middle {
  background: #f7f7f7;
  min-height: 250px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.bot-message, .user-message {
  padding: 8px 12px;
  border-radius: 15px;
  max-width: 80%;
  word-wrap: break-word;
}

.bot-message {
  background-color: #e2e2e2;
  align-self: flex-start;
}

.user-message {
  background-color: #0d6efd;
  color: #fff;
  align-self: flex-end;
}

/* Input Box */
.input-box {
  display: flex;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #ccc;
  background: #fff;
}

.input-box input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

.emoji i {
  font-size: 22px;
  margin-right: 10px;
}

.send-btn {
  background-color: #0d6efd;
  color: #fff;
  padding: 10px;
  margin-left: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
}
.send-btn:hover {
  transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .chat-card { width: 90%; right: 5%; bottom: 90px; }
  .input-box input { font-size: 14px; }
  .breadcrumb-item.active {
    color: var(--light) !important;
    padding-top: 4px;
    font-size: 12px !important;

}
}


.prompt-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.prompt-options button {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.2s, background 0.2s;
}

.prompt-options button:hover {
  transform: scale(1.05);
  background-color: #084298;
}




/* =====================================blog css start=========================================== */
   
/*** Blog ***/
.blog-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}

.blog-item .blog-text {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .9));
}
 
.blog-item .blog-text a {
    color: #FFFFFF;
    transition: .5s;
    text-decoration: none;
}

.breadcrumb-item{
  color: var(--light);
}

.blog-item .blog-text a:hover {
    color: var(--light);
}

.blog-item .breadcrumb-item+.breadcrumb-item::before {
    color: #FFFFFF;
}
/*========================================= blog css end===================================== */












/* enquiry css section start here */

  .img-fluid {
      max-width: 100%;
      height: auto;
    }
    .accordion-button {
      font-weight: 600;
    }
   
    .service-list a {
      display: block;
      text-decoration: none;
      color: #000;
    }
    .call-to-action-btn {
      transition: background-color 0.3s ease;
    }
    .call-to-action-btn:hover {
      background-color: #0dcaf0;
    }
    .bg-dark {
      background-color: #222 !important;
    }
    .section-header h6 {
      border-left: 4px solid var(--secondary-color);
      padding-left: 8px;
    }
    .contact-info .icon-box {
      width: 45px;
      height: 45px;
      background-color: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-info a{
      text-decoration: none;
      color: var(--light);
      word-break: break-all;   
  white-space: normal;     
 
    }
     .contact-info a:hover{
      text-decoration: none;
      color: var(--secondary-color);
    }
    .contact-info p {
      margin: 0;
      font-size: 13px;
    }
    .quote-section {
      height: 90px;
    }
    .quote-section a {
      text-decoration: none;
    }

    @media (max-width:768px) {
      
    .service-heading{
      font-size: 28px !important;
    }
    .service-title {
      font-size: 28px !important;
 
}
.cta-section h2 {
    color: #fff;
    font-size: 28px !important;
    margin: 0;
}

   .contact-info a{
      text-decoration: none;
      color: var(--light);
      word-break: break-all;   
  white-space: normal;     
      font-size: 14px;

    }
    }

/* --- Global Typography --- */
 


.section-heading h1, h2, h3 {
  font-weight: 700;
  line-height: 1.3;
}

.section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

/* --- Main Content --- */
.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}

.service-title span {
  color: #0d6efd;
}

.service-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.service-details {
  font-size:  18px;
  color: #666;
}

.service-details span {
  font-weight: 600;
  color: #000;
}

/* --- Call To Action --- */
.cta-section {
  background: #111;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-section h2 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0;
}

.cta-btn-wrap {
  background: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: #fff;
  color: #0d6efd;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #f1f1f1;
  color: #0a58ca;
}

/* --- FAQ --- */
.accordion-custom .accordion-button {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: #0d6efd;
  color: #fff;
}

.accordion-custom .accordion-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* --- Sidebar Services --- */
.service-list a {
  display: block;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  color: #222;
  text-decoration: none;
}

.service-list a:hover {
  background-color: #0d6efd;
  color: #fff !important;
  padding-left: 1.5rem;
}

/* --- Contact Info --- */
.contact-box {
  background: #111;
  padding: 1.5rem;
  border-radius: 6px;
  color: #fff;
}

.contact-icon {
  font-size: 1.5rem;
  background: #fff;
  color: #0d6efd;
  padding: 10px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Custom List --- */
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.custom-list li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #0d6efd;
}


@media (max-width:768px) {
  .service-details {
  font-size:  15px;
  color: #666;
}

}

.high-light{
  color: var(--primary-color) !important;
}

/* enquiry css section start here */








/* --- Blog Detail Page CSS --- */

 

/* Hero Image */
main img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Blog Meta */
.text-muted a {
    color: var(--secondary-color);
    text-decoration: none;
}
.text-muted a:hover {
    text-decoration: underline;
}

/* Custom List Style */
.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.custom-list li::before {
    content: "\f0da"; /* FontAwesome arrow icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0d6efd;
}

/* Blockquote */
blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 15px;
    font-style: italic;
    color: #333;
    background: #f8f9fa;
    border-radius: 4px;
}

/* Share Buttons */
section .fa-lg {
    color: #0d6efd;
    transition: 0.3s;
}
section .fa-lg:hover {
    color: #0056b3;
}

/* Author Section */
section .rounded-circle {
    border: 3px solid #0d6efd;
}
section .bg-light p {
    color: #555;
}
 

/* Sidebar Widgets */
aside h2 {
    font-size: 1.2rem;
    border-bottom: 3px solid #0d6efd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

aside ul li {
    margin-bottom: 10px;
}
aside ul li a {
    color: #0d6efd;
    text-decoration: none;
}
aside ul li a:hover {
    text-decoration: underline;
}

/* Contact CTA Widget */
aside .bg-primary {
    padding: 20px;
    border-radius: 8px;
}
aside .bg-primary h5 {
    color: #fff;
    margin-bottom: 10px;
}
aside .bg-primary p {
    color: #fff;
    margin-bottom: 15px;
}
aside .bg-primary .btn-light {
    color: #0d6efd;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    main, aside {
        margin-bottom: 2rem;
    }
}
/* blog deatil css */












/* contact section */
 
/* Animate gradient background */
@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* Floating text animation */
@keyframes floatText {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-4px);}
}

/* Button bounce animation */
@keyframes bounce {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-4px);}
}

/* Contact Section */
.contact {
  margin: 0;
  height: 130vh; 
  background: linear-gradient(-45deg, var(--secondary-color), var(--primary-color), var(--third-color));
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px; 

}

/* Glassmorphic Container */
.contact-container {
  max-width: 900px;
  width: 100%;
  background: rgba(255 255 255 / 0.15);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  border: 1px solid rgba(255 255 255 / 0.3);
  padding: 40px 50px;
  color: #fff;
  transition: box-shadow 0.3s ease;
}
.contact-container:hover {
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.7);
}

/* Headings */
.contact h1 {
  font-weight: 700;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0;
  text-shadow: 0 0 15px rgba(255 255 255 / 0.75);
  letter-spacing: 1.5px;
  user-select: none;
}
.contact .subtitle {
  font-weight: 500;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 45px;
  text-shadow: 0 0 6px rgba(255 255 255 / 0.6);
  user-select: none;
}

/* Image Section */
.contact .image-section {
  background: rgba(255 255 255 / 0.25);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.contact .image-section:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}
.contact .image-section img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 22px;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.contact .image-section:hover img {
  filter: brightness(1.15);
}

/* Floating Locations */
.contact .locations {
  font-size: 0.9rem;
  display: flex;
  /* justify-content: space-between; */
  margin-top: 15px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 10px rgba(0 0 0 / 0.4);
}
 .captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .captcha-box {
    background: rgba(255 255 255 / 0.2);
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #373434;
    text-shadow: 0 0 6px rgba(0,0,0,0.3);
    user-select: none;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  }

  .captcha-input {
    flex: 1;
  }

  /* Keep existing form styles for inputs and buttons */
  .form-control {
    background: rgba(255 255 255 / 0.35);
    border: none;
    padding: 14px 18px;
    color: #222;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(255 255 255 / 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    font-weight: 600;
  }

  .form-control:focus {
    background: rgba(255 255 255 / 0.8);
    color: #222;
    outline: 3px solid #ff8797;
    box-shadow: 0 0 12px 2px #ff8797;
  }
.contact .locations div {
  width: 30%;
  animation: floatText 6s ease-in-out infinite;
}
.contact .locations div:nth-child(2) { animation-delay: 1.5s; }
.contact .locations div:nth-child(3) { animation-delay: 3s; }
.contact .locations strong { display: block; font-weight: 700; margin-bottom: 6px; color: #fff; text-shadow: 0 0 12px rgba(255 255 255 / 0.9); letter-spacing: 0.05em; }
.contact .locations small { font-weight: 400; font-size: 0.9rem; line-height: 1.3; color: #eee; }

/* Form Section */
.contact .form-section {
  background: rgba(255 255 255 / 0.25);
  border-radius: 16px;
  padding: 35px 30px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}
.contact .form-section:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}
.contact .form-section h3 { font-weight: 700; margin-bottom: 22px; text-shadow: 0 0 10px rgba(255 255 255 / 0.9); }
.contact .form-section p { font-size: 1.05rem; margin-bottom: 30px; line-height: 1.5; text-shadow: 0 0 6px rgba(0 0 0 / 0.4); }

/* Inputs */
.contact .form-control {
  background: rgba(255 255 255 / 0.35);
  border: none;
  padding: 14px 18px;
  color: #222;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(255 255 255 / 0.5);
  font-weight: 600;
}
.contact .form-control::placeholder { color: #999; font-weight: 500; }
.contact .form-control:focus {
  background: rgba(255 255 255 / 0.8);
  outline: 3px solid var(--accent-color);
  box-shadow: 0 0 12px 2px var(--accent-color);
}
.contact textarea.form-control { resize: none; }

/* Submit Button */
.contact button.btn-submit {
  width: 100%;
  background: linear-gradient(270deg, var(--secondary-color), var(--primary-color), var(--third-color));
  background-size: 600% 600%;
  border: none;
  color: white;
  font-weight: 700;
  padding: 16px 0;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  animation: gradientBG 8s ease infinite;
}
.contact button.btn-submit:hover {
  animation-play-state: paused;
  background-position: 100% 50%;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  animation: bounce 0.5s ease forwards;
  transform: translateY(-6px);
}
.contact button.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Contact Section Responsive Tweaks */
@media (max-width: 1024px) {
  .contact {
    height: auto; /* remove fixed height */
    padding: 40px 15px;
  }

  .contact-container {
    padding: 30px 25px;
  }

  .contact h1 {
    font-size: 2.4rem;
  }

  .contact .subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .contact .locations {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .contact .locations div {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact {
    height: auto;
    flex-direction: column;
    padding: 30px 12px;
  }

  .contact-container {
    padding: 20px 18px;
  }

  .contact h1 {
    font-size: 2rem;
  }

  .contact .subtitle {
    font-size: 1rem;
  }

  .contact .image-section {
    padding: 15px;
    margin-bottom: 20px;
  }

  .contact iframe {
    height: 250px !important;
    border-radius: 10px;
  }

  .contact .form-section {
    padding: 20px 15px;
  }

  .contact .form-section h3 {
    font-size: 1.4rem;
  }

  .form-control {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .captcha-container {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-box {
    min-width: unset;
    margin-bottom: 10px;
  }

  .contact button.btn-submit {
    font-size: 1rem;
    padding: 14px 0;
  }
}

@media (max-width: 480px) {
  .contact h1 {
    font-size: 1.6rem;
  }

  .contact .subtitle {
    font-size: 0.95rem;
  }

  .locations strong {
    font-size: 1rem;
  }

  .locations small {
    font-size: 0.85rem;
  }
}

/* contact section */









/* sub-page-banner styling start */
.sub-page-banner {
  background: url(../images/banner/sub-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: left;
}

.sub-banner {
  margin: 5px 25px;
  background-color: #fff ;
  color: var(--secondary-color);
  text-align: left;
  padding: 10px 50px;
}

.sub-page-banner p {
  color: var(--secondary-color);
  font-size: 40px;
  font-weight: 600;
}

.sub-page-banner a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 18px;
}



@media(max-width:768px) {
  .sub-page-banner {
     background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 0px;
  }
}

@media(max-width:520px) {
  .sub-page-banner {
     background-size: cover;
    background-repeat: no-repeat;

    background-position: center;

    padding: 5px 0px;
  }

  .sub-page-banner p {

    color: var(--blue);
    font-size: 18px;
    margin: 0px;
  }

  .sub-banner {
    background-color: #00000047;
    color: var(--secondary-color);
    text-align: center;
    padding: 5px 10px;
  }

  .sub-page-banner a {
    text-decoration: none;
    color: var(--primary);
    font-size: 12px;
  }
}













.seo-location-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.seo-btn {
  display: inline-block;
  padding: 12px 20px;
  background: var(--third-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.seo-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}
