/* =====================================================
   DESKTOP (Canvas default + spacing fix)
   ===================================================== */
@media (min-width: 1200px) {

  #header .header-row {
    flex-wrap: nowrap;
  }

  #logo {
    flex-shrink: 0;
    margin-right: 24px;
  }

  .primary-menu {
    flex: 1;
  }

  .primary-menu .menu-container {
    justify-content: flex-end;
  }

  .primary-menu .menu-link div {
    font-size: 13px;
    white-space: nowrap;
  }
}



/* Smaller desktops: wrap header into two rows */
@media (min-width: 1200px) and (max-width: 1399px) {
    #header .header-row {
        display: flex;
        flex-wrap: wrap;             /* allow second row */
        justify-content: flex-start;  /* align items left */
        align-items: flex-start;      /* align top */
        gap: 5px 0;                   /* small vertical gap between rows */
    }

    /* Logo stays left on first row */
    #logo {
        flex: 0 0 auto;               /* only take needed space */
        margin-bottom: 5px;           /* small space below logo */
        align-self: flex-start;       /* force left/top alignment */
        max-width: 50%;               /* optional: prevent too wide logo */
    }

    /* Menu goes below logo */
    .primary-menu {
        flex: 1 1 100%;               /* full width below logo */
        min-width: 0;                 /* allow shrinking */
        overflow: hidden;             /* prevent horizontal scroll */
    }

    .primary-menu .menu-container {
        display: flex;
        flex-wrap: wrap;              /* wrap menu items if needed */
        justify-content: flex-start;  /* left align menu items */
        gap: 5px 8px;                 /* reduce horizontal gap between menu items */
    }

    /* Optional: shrink menu items text if needed */
    .primary-menu .menu-container li a {
        white-space: nowrap;          /* keep each item on one line */
        font-size: 14px;              /* reduce font slightly if menu is too wide */
        padding: 5px 8px;             /* smaller padding */
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    /* Header row */
    #header .header-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 3px 0; /* smaller vertical gap between logo and menu */
    }

    /* Logo stays left */
    #logo {
        flex: 0 0 auto;
        margin-bottom: 3px;
        align-self: flex-start;
        max-width: 50%;
    }

    /* Menu below logo */
    .primary-menu {
        flex: 1 1 100%;
        min-width: 0;
        overflow: visible; /* allow mega menu to show */
        position: relative;
    }

    .primary-menu .menu-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 5px 8px; /* smaller horizontal gap */
    }

    .primary-menu .menu-container li a {
        white-space: nowrap;
        font-size: 14px;
        padding: 5px 8px; /* smaller menu item padding */
    }

    /* ===== Mega menu adjustments ===== */
    .primary-menu .menu-container li .sub-menu {
        margin-top: 0;     /* remove gap from parent */
        padding: 0;        /* remove extra padding */
        line-height: 1;    /* tighten overall spacing */
    }

    .primary-menu .menu-container li .sub-menu li {
        margin: 0;          /* remove spacing between sub-menu items */
        padding: 0;         /* remove extra padding */
    }

    .primary-menu .menu-container li .sub-menu li a {
        padding: 3px 10px;  /* reduce vertical padding inside items */
        line-height: 1.2;   /* tighter text spacing */
    }
}





@media (min-width: 1200px) {
    .primary-menu-trigger,
    .menu-trigger,
    .mobile-menu-trigger,
    .hamburger {
        display: none !important;
    }
}
/* Show mobile menu only on mobile */
@media (max-width: 1199px) {
    .mobile-menu,
    .mobile-primary-menu,
    .menu-mobile {
        display: block;
    }

    .primary-menu {
        display: none; /* hide desktop menu */
    }
}
/* Hide menus until page fully loads */
body:not(.page-loaded) .primary-menu,
body:not(.page-loaded) .mobile-menu,
body:not(.page-loaded) .menu-mobile {
    display: none !important;
}








/* =====================================================
   MOBILE RESET (restore Canvas defaults)
   ===================================================== */
@media (max-width: 1199px) {

  #header .header-row {
    flex-wrap: wrap;
  }

  .primary-menu {
    position: static;
    flex: none;
    width: auto;
    height: auto;
    display: none;
  }

  .primary-menu .menu-container {
    display: block !important;
  }

  .primary-menu .menu-item {
    display: block;
    width: 100%;
  }

  .primary-menu .menu-link {
    display: block;
  }

  /* Let Canvas control hamburger */
  .primary-menu-trigger {
    position: relative;
    display: block;
    z-index: 100;
  }

  .primary-menu-trigger i {
    color: #ffffff;
    font-size: 22px;
  }
}

/* =====================================================
   MOBILE MENU OPEN / CLOSE (Canvas logic)
   ===================================================== */
@media (max-width: 1199px) {

  /* Open only when hamburger clicked */
  body.primary-menu-open .primary-menu {
    display: block;
  }

  body:not(.primary-menu-open) .primary-menu {
    display: none;
  }
}

/* =====================================================
   FULLSCREEN MOBILE MENU
   ===================================================== */
@media (max-width: 1199px) {

  body.primary-menu-open .primary-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1f2528;
    overflow-y: auto;
    z-index: 9999;
    padding-top: 80px;
  }

  /* Equal left & right padding */
  .primary-menu .menu-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .primary-menu .sub-menu-container,
  .primary-menu .mega-menu-content {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* =====================================================
   FIX: REMOVE DUPLICATE MENU BUTTON ON SCROLL
   ===================================================== */
@media (max-width: 1199px) {

  /* Hide duplicate hamburger ONLY when menu is closed */
  body:not(.primary-menu-open) #header.sticky-header .primary-menu-trigger,
  body:not(.primary-menu-open) #header.floating-header .primary-menu-trigger {
    display: none !important;
  }

  /* Show CLOSE (X) when menu is open */
  body.primary-menu-open .primary-menu-trigger {
    display: block !important;
    z-index: 10002;
  }

}











   COMPACT CTA – WHITE & DARK BLUE
   ========================= */
.cta-compact {
  background: #ffffff;
  padding: 35px 20px;
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  background: #0f2a44; /* subtle dark blue */
  border-radius: 14px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(15,42,68,0.18);
}

/* Text */
.cta-text h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
}

.cta-text p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

/* Button */
.cta-btn {
  padding: 12px 26px;
  border-radius: 40px;
  background: #ffffff;
  color: #0f2a44;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: #f2f6fb;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 767px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

.cta-compact {
  padding: 55px 20px; /* ↑ outer height */
}

.cta-inner {
  padding: 36px 40px; /* ↑ inner card height */
}







@media (min-width: 1200px) {
    .display-5 {
        font-size: 45px;
    }
}


@media (min-width: 1200px) {
    .display-4 {
        font-size: 45px;
    }
    
}





.network-cta {

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
}
.network-cta {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* 🔥 PARALLAX EFFECT */
  background-attachment: fixed;
}

.network-cta .overlay {
  background: linear-gradient(
  
  );
padding-top: 20px;
padding-bottom: 20px;
}

.network-cta .container {
  max-width: 1200px;
  margin: auto;
}

.small-title {
  font-size: 13px;
  letter-spacing: 1.2px;
  opacity: 0.9;
}

.network-cta h2 {
  font-size: 44px;
  margin: 15px 0;
  max-width: 750px;
}

.intro-text {
  max-width: 850px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 50px;
  opacity: 0.95;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-item {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 22px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

/* Tablet */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .network-cta h2 {
    font-size: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}







/*last header*/
.keyword-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

/* SAFE container – does NOT affect header */
.keyword-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.keyword-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.keyword-grid li {
  padding: 6px 0;
}

.keyword-grid li a {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #0a2a66;
  text-decoration: none;
}

.keyword-grid li a span {
  margin-right: 10px;
  font-weight: bold;
}

.keyword-grid li a:hover {
  color: #0056b3;
}

/* Responsive */
@media (max-width: 991px) {
  .keyword-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .keyword-grid {
    grid-template-columns: 1fr;
  }
}

/*end*/







.is-expanded-menu .primary-menu:not(.on-click).primary-menu-init .mega-menu-content, .is-expanded-menu .primary-menu:not(.on-click).primary-menu-init .menu-item:not(.mega-menu) .sub-menu-container {
    display: block;
    border-block-color: white;
}







.fbox-icon i, .fbox-icon img {
    border-radius: 50%;
    background-color: #ffffff;
}
.fbox-icon a, .fbox-icon i, .fbox-icon img {
    display: block;
    position: relative;
    width: 95%;
    height: 90%;
    color: #fff;
}



@media (max-width: 991px) {
  .lop {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .soop {
    margin-right: -30px;
    
  }
  .alin{
  margin-left: -30px;
    margin-right: 30px;
    
  }
}
@media (max-width: 991px) {
  .alin {
    padding-left: 20px;
    padding-right: 20px;
    
  }


    
  
}






/* Container & Background */
.camera-comparison {
  position: relative;
 
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.camera-comparison .overlay {
  position: absolute;
  inset: 0;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(8px);
  z-index: 0;
}

.camera-comparison .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.comparison-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 400px;
  min-width: 280px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(25, 25, 181, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(25, 25, 181, 0.5);
}

.card h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #0c3b68; /* Premium gold highlight */
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}
.card ul li::before {
  content: '.';
  position: absolute;
  left: 0;
  color: #000000; /* Neon accent */
  font-weight: bold;
}
.card ul li::before {
  content: "";
  width: 6px;
height: 6px;

  margin-top: 8px;
  background-color: #000000; /* dot color */
  border-radius: 50%;
  flex-shrink: 0;
}




.section-contact {
  background: linear-gradient(
    135deg,
    #0b2a44 0%,
    #0f3c63 45%,
    #1a5fa3 100%
  );
}

.section-contact h3 {
  color: #ffffff;
}

.section-contact p {
  color: rgba(255, 255, 255, 0.85);
}

/* Form Card */
.section-contact .form-widget {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f8fc 100%
  );
  box-shadow: 0 20px 50px rgba(0, 40, 90, 0.18);
  border: 1px solid rgba(26, 95, 163, 0.15);
}











/* Make slider behave like a normal section */
#slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Lock slider structure */
#slider .slider-inner,
#slider .swiper-parent,
#slider .swiper-wrapper,
#slider .swiper-slide {
    height: 100vh;
}

/* Background image fit */
.swiper-slide-bg {
    background-size: cover;
    background-position: center;
}

/* Next section starts after banner */
#slider + section {
    margin-top: 0 !important;
    padding-top: 100px;
    position: relative;
    background: #fff;
}






/*home sliding butto colour*/
.h-bg-color:hover {
    background-color: #0f1266 !important;
}
.border-color {
    border-color: #235cd1 !important;
}
.color {
    color: #235cd1 !important;
}
.section-showcase-sticky .list-group-content > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4rem;
    padding-right: 4rem;
    border-bottom: 1px solid rgb(0 0 0 / 15%);
}






:root {
    --cnvs-themecolor: #0f1266;
    --cnvs-themecolor-rgb: 240, 165, 64;
    --cnvs-body-font: 'Quicksand', sans-serif;
    --cnvs-secondary-font: var(--cnvs-body-font);
}



/*About icon*/
  .stats-section {
      background: #ffffff;
      padding: 70px 0;
    }

    .stats-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      gap: 30px;
    }

    .stat-box {
      flex: 1;
      text-align: center;
      cursor: pointer;
      transition: transform 0.35s ease;
    }

    .icon-wrap {
      width: 80px;
      height: 80px;
      margin: 0 auto 18px;
      border-radius: 50%;
      border: 2px solid #e5e5e5;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: border-color 0.35s ease;
    }

    /* pulse ring */
    .icon-wrap::after {
      content: "";
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid rgba(24, 27, 169, 0.4);
      opacity: 0;
      transform: scale(0.85);
      transition: all 0.35s ease;
    }

    .icon-wrap img {
      width: 34px;
      height: 34px;
      object-fit: contain;
      transition: transform 0.35s ease;
    }

    .stat-box h3 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 6px;
      transition: transform 0.35s ease;
    }

    .stat-box p {
      color: #0c3b68;
      font-size: 14px;
      letter-spacing: 1px;
    }

    /* ===== HOVER / TOUCH EFFECT ===== */
    .stat-box:hover,
    .stat-box:active {
      transform: translateY(-8px);
    }

    .stat-box:hover .icon-wrap,
    .stat-box:active .icon-wrap {
      border-color: #0c3b68;
    }

    .stat-box:hover .icon-wrap::after,
    .stat-box:active .icon-wrap::after {
      opacity: 1;
      transform: scale(1);
    }

    .stat-box:hover img,
    .stat-box:active img {
      transform: scale(1.15);
    }

    .stat-box:hover h3,
    .stat-box:active h3 {
      transform: scale(1.08);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .stats-container {
        flex-wrap: wrap;
      }
      .stat-box {
        flex: 0 0 48%;
      }
    }

    @media (max-width: 520px) {
      .stat-box {
        flex: 0 0 100%;
      }
    }
    
    
    
    
    
    
    
    
    
    
    
   
   
    


/* Contact page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* BODY */


/* MAIN WRAPPER */
.contact-wrapper {
  padding: 120px 8%;
  position: relative;
}


.icon svg {
  width: 26px;
  height: 26px;
  fill: #1e3a8a; /* brand color */
}
.contact-card:hover .icon svg {
  fill: #0d6efd;
}

/* ===============================
   FLOATING CONTACT INFO CARDS
================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.contact-card {
  background: #f1f6ff;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.contact-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f2f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1e3a8a;
}

.contact-card h4 {
  font-size: 13px;
  letter-spacing: 1.2px;
  color: #1e88c9;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 15px;
  color: #333;
}


/* ===============================
   MAIN CONTENT AREA
================================ */
.contact-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* LEFT TEXT */
.contact-left h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
  color: #0a0874;
}

.contact-left p {
  margin-top: 26px;
  max-width: 500px;
  font-size: 17px;
  line-height: 1.7;
  color: #08104d;
}

/* ===============================
   FORM GLASS BOX
================================ */
.contact-form {
  background: rgba(20, 25, 45, 0.92);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 45px 120px rgba(0,0,0,0.8);
}

.contact-form h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 34px;
  color: #ffffff;
}

/* FORM FIELDS */
.field {
  position: relative;
  margin-bottom: 28px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.field textarea {
  height: 120px;
  resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: transparent;
}

/* FLOATING LABEL */
.field label {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
  transition: 0.3s;
  background: transparent;
}

/* ACTIVE LABEL */
.field input:focus + label,
.field textarea:focus + label,
.field input:valid + label,
.field textarea:valid + label {
  top: -9px;
  left: 14px;
  padding: 0 6px;
  font-size: 11px;
  background: #02040a;
  color: #9fb3ff;
}

/* FOCUS STATE */
.field input:focus,
.field textarea:focus {
  border-color: #4f7cff;
  box-shadow: 0 0 0 1px rgba(79,124,255,0.4);
}

/* ===============================
   SUBMIT BUTTON
================================ */

.contact-form button {
  width: 100%;
  padding: 17px;
  margin-top: 10px;
  background: linear-gradient(135deg, #4f7cff, #00e0ff);
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #02040a;
  cursor: pointer;
  transition: 0.35s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(79,124,255,0.6);
}
/* ===============================
   MAP SECTION
================================ */
.map-premium {
  padding: 90px 8% 100px;
}

.map-premium iframe {
  width: 100%;
  height: 460px;
  border-radius: 28px;
  border: none;
  box-shadow: 0 20px 60px rgba(92, 89, 89, 0.85);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1100px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 768px) {
  .floating-cards {
    grid-template-columns: 1fr 1fr;
  }

  .contact-left h1 {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .floating-cards {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    padding: 80px 6%;
  }
}
@media (max-width: 768px) {
  .map-premium {
    padding-bottom: 140px;
  }
}




.flip-card-back::after, .flip-card-front::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    opacity: .6;
    background-color: #00000000;
    backface-visibility: hidden;
    border-radius: 6px;
}




/* ===============================
FOOTER
================================ */
#footer .widget h4 {
  color: #FFFFFF;
  font-weight: 600;
}

#footer .widget p {
  color: #E6EDF6;
}

#footer .widget ul li a {
  color: #D7E3FF;
}

#footer .widget ul li a:hover {
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  .marg {
    margin-right: -7rem;
  }
}


.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-list i {
  color: #ffffff; /* your theme color */
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.contact-list a {
  color: #333;
  text-decoration: none;
}

.contact-list a:hover {
  color: #ffffff;
}



@media (max-width: 768px) {

  .h-100 {
    height: auto !important;   /* remove forced height */
    min-height: auto !important;
  }

  .h-100 .row {
    align-items: flex-start !important;  /* stop stretch */
  }

  .h-100 .h-100 {
    height: auto !important;  /* cancel Bootstrap h-100 */
  }

  .h-100 img {
    width: 100%;
    height: auto !important;
    max-height: 280px;
    object-fit: cover;
    display: block;
  }

  .h-100 .col-md-6 {
    margin-top: 20px;
  }

}





/* ===============================
the 123 icons
================================ */


/* Keep Canvas icon column width */
.fbox-icon {
    width: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Number circle badge */
.auto-number-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #111;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}




/* ===============================
created container
================================ */

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 3.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    
}




.h-text-dark:hover, a.h-text-dark:hover {
    color: #ffffff !important;
}




/* ===============================
Home vertical scrolling top,boot padding
================================ */


#list-item-1 {
    padding-top: 40px;
    padding-bottom: 40px;
}

#list-item-2 {
    padding-top: 40px;
    padding-bottom: 40px;
}#list-item-3 {
    padding-top: 40px;
    padding-bottom: 40px;
}#list-item-4 {
    padding-top: 40px;
    padding-bottom: 40px;
}#list-item-5 {
    padding-top: 40px;
    padding-bottom: 40px;
}#list-item-6 {
    padding-top: 40px;
    padding-bottom: 40px;
}#list-item-7 {
    padding-top: 40px;
    padding-bottom: 40px;
}




/* ===============================
Header menu hover colour
================================ */
.menu-item:hover>.menu-link {
    color: #26aacf;
}

.menu-item.current>.menu-link {
    color: #26aacf;
}





.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
  background-color: #20b858;
  color: #fff;
}

