/**
* Template Name: Mentor
* Template URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37423b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0a1852; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #272828;  /* The default color of the main navmenu links */
  --nav-hover-color: #0a1852; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0a1852; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #0a1852;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 58px;
  margin-right: 8px;
  width: auto;
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 0;
}

.footer .footer-about .logo img {
  max-height: 58px;
  width: auto;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .footer-about .footer-description {
  margin: 16px 0 0;
  line-height: 1.7;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

body:not(.index-page) .page-title .heading {
  display: none;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.page-heading-strip {
  background: #ffffff;
  padding: 28px 0 8px;
}

.page-heading-strip h1 {
  color: #0a1852;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.page-heading-strip .contact-flow-intro {
  color: #52607a;
  font-size: 16px;
  margin: 12px auto 0;
  max-width: 760px;
}

.about-page-title {
  background-image: url("../img/about_us_banner.jpeg");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.about-breadcrumbs {
  background: #ffffff;
  padding: 18px 0 0;
}

.about-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

.about-breadcrumbs a {
  color: #000000;
}

.about-breadcrumbs li+li {
  padding-left: 10px;
}

.about-breadcrumbs li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #000000;
}

.services-page-title {
  background-image: url("../img/our_servers_banner.jpeg");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.services-breadcrumbs {
  background: #ffffff;
  padding: 18px 0 0;
}

.services-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

.services-breadcrumbs a {
  color: #000000;
}

.services-breadcrumbs li+li {
  padding-left: 10px;
}

.services-breadcrumbs li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #000000;
}

.contact-page-title {
  background-image: url("../img/contact_new_add.jpeg");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.indoor-page-title,
.structured-page-title,
.outdoor-page-title,
.tower-soller-page-title,
.rf-page-title,
.repeater-page-title,
.deployment-page-title,
.solar-page-title,
.ev-page-title,
.smart-page-title {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 360px;
}

.indoor-page-title {
  background-image: url("../img/indoor_new_hero.jpeg");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.structured-page-title {
  background-image: url("../img/sturtured_banner_new.jpeg");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.repeater-page-title {
  background-image: url("../img/repeater_booster.jpeg");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.deployment-page-title {
  background-image: url("../img/4g_5g.jpeg");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.solar-page-title {
  background-image: url("../img/Solar_Powered.jpeg");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.ev-page-title {
  background-image: url("../img/Electrical_Vehical.png");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.smart-page-title {
  background-image: url("../img/Smart & Scalable.jpeg");
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: min(44vw, 620px);
}

@media (max-width: 991px) {
  .smart-page-title {
    background-size: contain;
    min-height: min(52vw, 480px);
  }
}

@media (max-width: 767px) {
  .smart-page-title {
    background-size: contain;
    min-height: min(60vw, 340px);
  }
}

@media (max-width: 991px) {
  .about-page-title,
  .services-page-title,
  .indoor-page-title,
  .structured-page-title,
  .outdoor-page-title,
  .tower-soller-page-title,
  .rf-page-title,
  .repeater-page-title,
  .deployment-page-title,
  .solar-page-title,
  .ev-page-title,
  .smart-page-title,
  .industries-page-title,
  .contact-page-title {
    min-height: min(48vw, 460px);
  }
}

@media (max-width: 767px) {
  .about-page-title,
  .services-page-title,
  .indoor-page-title,
  .structured-page-title,
  .outdoor-page-title,
  .tower-soller-page-title,
  .rf-page-title,
  .repeater-page-title,
  .deployment-page-title,
  .solar-page-title,
  .ev-page-title,
  .smart-page-title,
  .industries-page-title,
  .contact-page-title {
    min-height: min(56vw, 320px);
  }
}

.outdoor-page-title {
  background-image: url("../img/outdoor_hero.jpeg");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.tower-soller-page-title {
  background-image: url("../img/tower_solor_new.png");
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.rf-page-title {
  background-image: url("../img/rf_new_hero.jpeg");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.industries-page-title {
  background-image: url("../img/industires_we_serve.png");
  background-color: #eef6ff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: min(42vw, 572px);
}

.contact-breadcrumbs {
  background: #ffffff;
  padding: 18px 0 0;
}

.contact-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

.contact-breadcrumbs a {
  color: #000000;
}

.contact-breadcrumbs li+li {
  padding-left: 10px;
}

.contact-breadcrumbs li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #000000;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: auto;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  overflow: hidden;
}

.hero img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

.hero:before {
  content: none;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 12px 24px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.counts .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Vision Mission Section
--------------------------------------------------------------*/
.vision-mission {
  padding: 40px 0 55px;
}

.vision-mission .vision-mission-card {
  background: #ffffff;
  border-left: 4px solid #0a1852;
  border-radius: 8px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 34px 28px 24px;
}

.vision-mission .vision-mission-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.vision-mission .title-accent {
  display: inline-block;
  width: 3px;
  height: 32px;
  background: #ffc400;
  flex: 0 0 auto;
}

.vision-mission .title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 25px;
  line-height: 1;
}

.vision-mission .vision-mission-title h3 {
  margin: 0;
  color: #0a1852;
  font-size: 22px;
  font-weight: 700;
}

.vision-mission .vision-mission-info {
  background: #ffffff;
  border-radius: 6px;
}

.vision-mission .vision-mission-info p {
  margin: 0;
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.65;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us {
  background: #f4f6f7;
  padding: 60px 0;
}

.why-choose-us .why-choose-card {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  overflow: hidden;
  transition: 0.3s;
}

.why-choose-us .why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.why-choose-us .why-choose-card img {
  background: #ffffff;
  display: block;
  height: 130px;
  margin: 18px auto 0;
  object-fit: contain;
  object-position: center;
  width: 78%;
}

.why-choose-us .why-choose-content {
  padding: 24px 22px 26px;
  text-align: left;
}

.why-choose-us .why-choose-content h3 {
  color: #0a1852;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}

.why-choose-us .why-choose-content p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
  overflow: hidden;
}

.courses .course-item > img {
  height: 210px;
  object-fit: cover;
  width: 100%;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.courses .course-content .category:hover {
  background: color-mix(in srgb, var(--accent-color), black 12%);
  color: var(--contrast-color);
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .service-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.courses .course-content .service-features li {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.courses .course-content .service-features li::before {
  background: var(--accent-color);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 6px;
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Service Detail Page
--------------------------------------------------------------*/
.service-detail .service-detail-image img {
  border-radius: 8px;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  height: 430px;
  object-fit: cover;
  width: 100%;
}

.service-detail .service-detail-content {
  padding-left: 20px;
}

.service-detail .service-detail-content h2 {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-detail .service-detail-content h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.service-detail .service-detail-content p {
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991px) {
  .service-detail .service-detail-content {
    padding-left: 0;
  }

  .service-detail .service-detail-image img {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .about-us-image {
  display: flex;
  justify-content: center;
}

.about-us .about-us-image img {
  width: 100%;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .about-us .about-us-image {
    padding-top: 28px;
  }
}

.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }

}

/*--------------------------------------------------------------
# Courses Course Details Section
--------------------------------------------------------------*/
.courses-course-details {
  padding-bottom: 20px;
}

.courses-course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.courses-course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  bottom: 0;
  left: 0;
}

.courses-course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.courses-course-details .course-info {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 15px;
  margin-bottom: 15px;
}

.courses-course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--nav-font);
}

.courses-course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.courses-course-details .course-info a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
  position: relative;
}

.trainers .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .trainers .member .member-img {
    margin: 0 60px;
  }
}

.trainers .member .member-img img {
  position: relative;
  z-index: 1;
}

.trainers .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.trainers .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
  color: var(--accent-color);
}

.trainers .member .member-info {
  margin-top: 30px;
}

.trainers .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.trainers .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.trainers .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.trainers .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
  background-color: var(--background-color);
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: var(--surface-color);
  border-top: 4px solid var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 8px;
  padding-bottom: 40px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px 12px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/





/* Telecom Solutions Cards */
.solution-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.solution-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.solution-content {
  padding: 25px;
}

.solution-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #012970;
}

.solution-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 0;
}



/* Telecom Solution Cards */

.telecom-solutions .icon-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.telecom-solutions .icon-box:hover {
  transform: translateY(-6px);
}

.telecom-solutions .icon img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.telecom-solutions .icon-box h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000; /* Black */
}

.telecom-solutions .icon-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #000; /* Black */
  margin-bottom: 0;
  flex: 1 1 auto;
}

.telecom-solutions .section-title h2 {
  color: #000; /* Black */
}

.telecom-solutions .icon img {
  width: 100%;
  height: 180px;
  object-fit: contain;   /* image full disel */
  background: #f8f8f8;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-card-link,
.home-process-link {
  align-items: center;
  background: #0a1852;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 18px;
}

.service-card-link:hover,
.home-process-link:hover {
  background: color-mix(in srgb, #0a1852, white 10%);
  color: #ffffff;
}

/*--------------------------------------------------------------
# Sai Enterprises Header, Footer & Home Page
--------------------------------------------------------------*/
.topbar {
  background: #061944;
  color: #ffffff;
  font-size: 12px;
  padding: 7px 0;
}

.topbar-info,
.topbar-social {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar i {
  color: #f6c042;
  margin-right: 5px;
}

.topbar a {
  color: #ffffff;
  line-height: 1;
}

.topbar a:hover {
  color: #f6c042;
}

.header {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(10, 24, 82, 0.08);
  padding: 0;
}

.header .main-header-inner {
  min-height: 78px;
}

.header .logo img {
  max-height: 64px;
  width: auto;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: #0a1852;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(10, 24, 82, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-left: 26px;
  padding: 12px 22px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: color-mix(in srgb, #0a1852, white 10%);
  color: #ffffff;
}

@media (min-width: 1200px) {
  .navmenu a,
  .navmenu a:focus {
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    padding: 30px 14px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #0a1852;
  }

  .navmenu .active::after {
    background: #0a1852;
    border-radius: 99px;
    bottom: 20px;
    content: "";
    height: 3px;
    left: 14px;
    position: absolute;
    right: 14px;
  }
}

.home-page .main {
  background: #ffffff;
}

.home-page section {
  scroll-margin-top: 94px;
}

.home-hero {
  min-height: 760px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.home-hero-slider {
  height: 760px;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.home-hero-slider .swiper-wrapper,
.home-hero-slider .swiper-slide {
  height: 760px;
  width: 100%;
}

.home-hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.home-hero-picture {
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.home-hero-mobile-hotspots {
  display: none;
}

.home-hero-bg {
  height: 760px;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.home-hero-bg-featured {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.home-hero-featured-slide {
  background: #0f2135;
}

@media (max-width: 991px) {
  .home-hero-bg-featured {
    height: 100%;
    inset: 0;
  }
}

@media (max-width: 767px) {
  .home-hero-bg-featured {
    height: 100%;
    inset: 0;
  }
}

.home-hero-overlay {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 36%, rgba(255, 255, 255, 0.3) 62%, rgba(255, 255, 255, 0.05) 100%);
  inset: 0;
  position: absolute;
  z-index: 2;
}

.home-hero .container {
  min-height: 760px;
  position: relative;
  z-index: 3;
}

.home-hero-pagination {
  bottom: 28px !important;
  left: 50% !important;
  position: absolute;
  transform: translateX(-50%);
  width: auto !important;
  z-index: 4;
}

.home-hero-pagination .swiper-pagination-bullet {
  background: rgba(10, 24, 82, 0.45);
  height: 10px;
  opacity: 1;
  transition: 0.3s;
  width: 10px;
}

.home-hero-pagination .swiper-pagination-bullet-active {
  background: #0a1852;
  width: 28px;
  border-radius: 999px;
}

.home-hero-content {
  max-width: 640px;
  padding-top: 84px;
}

.home-eyebrow,
.home-section-kicker,
.home-section-title span {
  color: #0a1852;
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.home-hero h1 {
  color: #0a1852;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 16px;
}

.home-hero h1 strong {
  color: #0f63c8;
  display: block;
}

.home-hero p {
  color: #111827;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-btn {
  align-items: center;
  border-radius: 5px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 11px 22px;
  transition: 0.3s;
}

.home-btn-primary {
  background: #0a1852;
  border: 1px solid #0a1852;
  color: #ffffff;
}

.home-btn-primary:hover {
  background: color-mix(in srgb, #0a1852, white 10%);
  color: #ffffff;
}

.home-btn-outline {
  background: #ffffff;
  border: 1px solid #0a1852;
  color: #0a1852;
}

.home-btn-outline:hover {
  background: #0a1852;
  color: #ffffff;
}

.home-btn-whatsapp {
  background: #ffffff;
  border: 1px solid #d8e1ef;
  color: #0a1852;
}

.home-btn-whatsapp i {
  color: #22c55e;
  font-size: 16px;
}

.home-stats-band {
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 4;
}

.home-stats-panel {
  background: #061944;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(10, 24, 82, 0.24);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -56px;
  overflow: hidden;
}

.home-hero-stats {
  margin-top: 44px;
}

.home-stat-item {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: flex;
  gap: 16px;
  min-height: 112px;
  padding: 22px 28px;
}

.home-stat-item:last-child {
  border-right: 0;
}

.home-stat-item i {
  color: #f6c042;
  font-size: 36px;
  line-height: 1;
}

.home-stat-item strong {
  color: #ffffff;
  display: block;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
}

.home-stat-item span {
  color: rgba(255, 255, 255, 0.86);
  display: block;
  font-size: 13px;
  margin-top: 4px;
}

.home-about,
.home-services,
.home-industries,
.home-process,
.home-clients,
.home-contact-strip {
  padding: 64px 0;
}

.home-about-img,
.home-industries-img {
  border-radius: 5px;
  box-shadow: 0 14px 36px rgba(10, 24, 82, 0.14);
  height: 360px;
  object-fit: cover;
  width: 100%;
}

.home-about h2,
.home-info-panel h2,
.home-contact-strip h2 {
  color: #0a1852;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 14px;
}

.home-about p,
.home-contact-strip p {
  color: #334155;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.home-about-points {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin: 26px 0;
}

.home-about-points div {
  align-items: center;
  color: #0a1852;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  text-align: center;
}

.home-about-points i {
  border: 1px solid #d8e1ef;
  border-radius: 50%;
  color: #0f63c8;
  display: grid;
  font-size: 24px;
  height: 42px;
  place-items: center;
  width: 42px;
}

.home-services,
.home-process {
  background: #f5f8fc;
}

.home-section-title {
  margin-bottom: 22px;
}

.home-section-title h2 {
  color: #0a1852;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.home-service-tile {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dce5f0;
  color: #0a1852;
  display: flex;
  gap: 12px;
  min-height: 94px;
  padding: 18px;
}

.home-service-tile:hover {
  border-color: #0a1852;
  box-shadow: 0 12px 28px rgba(10, 24, 82, 0.11);
  color: #0a1852;
  transform: translateY(-3px);
}

.home-service-tile i {
  color: #0f63c8;
  flex: 0 0 auto;
  font-size: 34px;
  line-height: 1;
}

.home-service-tile span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.home-info-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 32px 28px;
}

.home-check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.home-check-list li {
  align-items: flex-start;
  color: #1f2937;
  display: flex;
  font-size: 14px;
  gap: 9px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.home-check-list i {
  color: #0a1852;
  margin-top: 2px;
}

.home-industry-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.home-industry-grid div {
  align-items: center;
  color: #0a1852;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  min-height: 76px;
  text-align: center;
}

.home-industry-grid i {
  color: #0f63c8;
  font-size: 32px;
  line-height: 1;
}

.industries-grid-section {
  background: #ffffff;
}

.industries-card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-card {
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(10, 24, 82, 0.08);
  overflow: hidden;
}

.industry-card img {
  display: block;
  height: auto;
  width: 100%;
}

.industry-card-body {
  padding: 18px;
}

.industry-card h2 {
  color: #0a1852;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
}

.industry-card p {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 12px;
}

.industry-card p:last-child {
  margin-bottom: 0;
}

.home-process-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.home-process-step {
  background: #ffffff;
  border: 1px solid #dce5f0;
  border-radius: 6px;
  min-height: 116px;
  padding: 24px 16px 18px;
  position: relative;
  text-align: center;
}

.home-process-step b {
  background: #0a1852;
  border-radius: 50%;
  color: #ffffff;
  display: grid;
  font-size: 12px;
  height: 24px;
  left: 50%;
  place-items: center;
  position: absolute;
  top: -12px;
  transform: translateX(-50%);
  width: 24px;
}

.home-process-step i {
  color: #0f63c8;
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.home-process-step span {
  color: #0a1852;
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.home-operators {
  background: #ffffff;
}

.home-operators-title {
  border-left: 5px solid #ffd400;
  margin-bottom: 28px;
  padding-left: 18px;
}

.home-operators-title h2 {
  color: #e34b2b;
  font-size: 34px;
  font-weight: 800;
  margin: 0;
}

.home-operator-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.home-operator-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(10, 24, 82, 0.07);
  display: flex;
  height: 138px;
  justify-content: center;
  padding: 18px;
}

.operator-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.operator-logo img {
  display: block;
  max-height: 92px;
  max-width: 100%;
  object-fit: contain;
}

.jio-logo {
  background: #082c8f;
  border-radius: 50%;
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  height: 104px;
  letter-spacing: 0;
  width: 104px;
}

.vi-logo {
  align-items: flex-end;
  gap: 8px;
}

.vi-logo span {
  color: #ed1c24;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.9;
}

.vi-logo b {
  background: #ffd400;
  border-radius: 50%;
  display: block;
  height: 23px;
  margin-bottom: 2px;
  width: 23px;
}

.airtel-logo {
  color: #ed1c24;
  flex-direction: column;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.airtel-logo span {
  border: 13px solid #ff0000;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 70% 50% 70% 50%;
  display: block;
  height: 46px;
  margin-bottom: -2px;
  transform: rotate(-28deg);
  width: 62px;
}

.bsnl-logo {
  gap: 10px;
}

.bsnl-mark {
  background: radial-gradient(circle at 35% 35%, #ffbd60 0, #f7941d 58%, #e17d00 100%);
  border-radius: 50%;
  display: block;
  height: 66px;
  position: relative;
  width: 66px;
}

.bsnl-mark::before,
.bsnl-mark::after {
  content: "";
  border-radius: 2px;
  height: 8px;
  left: 11px;
  position: absolute;
  top: 30px;
  width: 50px;
}

.bsnl-mark::before {
  background: #0072bc;
  transform: rotate(-42deg);
}

.bsnl-mark::after {
  background: #ed1c24;
  transform: rotate(42deg);
}

.bsnl-logo strong {
  color: #0072bc;
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.bsnl-logo small {
  color: #ed1c24;
  display: block;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  margin-top: 4px;
}

.home-testimonial {
  border-left: 1px solid #d8e1ef;
  padding-left: 36px;
}

.home-testimonial p {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.7;
  margin: 8px 0 14px;
}

.home-testimonial i {
  color: #0f63c8;
  font-size: 28px;
  margin-right: 8px;
}

.home-testimonial strong {
  color: #0a1852;
  font-size: 14px;
}

.home-clients-panel {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(10, 24, 82, 0.04);
  padding: 22px 18px 26px;
}

.home-clients-title {
  border-left: 4px solid #f6c042;
  margin-bottom: 46px;
  padding-left: 12px;
}

.home-clients-title h2 {
  color: #ef4b2a;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.home-client-logo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
}

.home-client-logo {
  align-items: center;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 8px;
  box-shadow: 0 5px 14px rgba(10, 24, 82, 0.06);
  display: flex;
  flex-direction: column;
  height: 124px;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.home-client-logo strong {
  display: block;
  line-height: 1;
}

.home-client-logo span {
  display: block;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-top: 8px;
  text-transform: uppercase;
}

.vedang-client strong {
  color: #202124;
  font-size: 38px;
  font-weight: 900;
}

.vedang-client span {
  color: #5f6368;
  font-size: 10px;
}

.emerald-client strong {
  color: #65a33b;
  font-family: Georgia, serif;
  font-size: 27px;
  font-style: italic;
  font-weight: 800;
}

.emerald-client span {
  color: #9aa0a6;
  font-size: 10px;
}

.huaptec-client strong {
  color: #252525;
  font-size: 20px;
  font-weight: 900;
  position: relative;
}

.huaptec-client strong::before {
  background: #e52328;
  content: "";
  display: block;
  height: 34px;
  margin: 0 auto 8px;
  width: 50px;
}

.nbls-client strong {
  color: #064c7f;
  font-size: 44px;
  font-weight: 900;
}

.nbls-client span {
  color: #ef4b7a;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.frog-client strong {
  color: #35e51f;
  font-size: 34px;
  font-weight: 900;
}

.frog-client span {
  color: #2e78e6;
  font-size: 14px;
}

.unity-client strong {
  color: #111111;
  font-size: 31px;
  font-weight: 900;
}

@media (min-width: 992px) {
  .home-client-logo:nth-child(5) {
    grid-column: auto;
  }
}

.home-big-stats {
  background: linear-gradient(rgba(6, 25, 68, 0.9), rgba(6, 25, 68, 0.9)), url("../img/contact_banner.jpeg") center / cover no-repeat;
  padding: 48px 0;
}

.home-big-stat {
  align-items: center;
  color: #ffffff;
  display: flex;
  gap: 18px;
}

.home-big-stat i {
  color: #ffffff;
  font-size: 44px;
}

.home-big-stat strong {
  align-items: baseline;
  color: #ffffff;
  display: flex;
  font-size: 46px;
  font-weight: 800;
  gap: 2px;
  line-height: 1;
  margin-bottom: 6px;
}

.home-big-stat strong .purecounter {
  color: #ffffff;
  display: inline;
  font-size: inherit;
  margin-top: 0;
}

.home-big-stat > span {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  font-size: 14px;
  margin-top: 6px;
}

.home-contact-strip {
  background: #f8fbff;
}

.home-contact-list p {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.home-contact-list i {
  color: #0f63c8;
  font-size: 28px;
  line-height: 1;
}

.home-contact-list strong {
  color: #0a1852;
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.home-contact-list a,
.home-contact-list span {
  color: #334155;
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.home-quick-form {
  background: #ffffff;
  border: 1px solid #dce5f0;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(10, 24, 82, 0.08);
  padding: 18px;
}

.home-quick-form h3 {
  color: #0a1852;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
}

.home-quick-form input,
.home-quick-form textarea {
  border: 1px solid #d4dce8;
  border-radius: 3px;
  color: #111827;
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  padding: 10px 12px;
  width: 100%;
}

.home-quick-form input:focus,
.home-quick-form textarea:focus {
  border-color: #0a1852;
  outline: none;
}

.home-quick-form button {
  background: #0a1852;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 18px;
  width: 100%;
}

.footer {
  background: #061944;
  color: rgba(255, 255, 255, 0.82);
  padding-bottom: 0;
}

.footer .footer-top {
  padding-bottom: 32px;
  padding-top: 42px;
}

.footer .footer-about .logo img {
  background: #ffffff;
  border-radius: 4px;
  max-height: 58px;
  padding: 5px 8px;
}

.footer .footer-about .footer-description,
.footer .footer-about p {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--default-font);
  line-height: 1.7;
}

.footer h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.footer .footer-links ul li {
  padding: 6px 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.footer .footer-links ul a:hover {
  color: #ffffff;
}

.footer .social-links a {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  height: 34px;
  width: 34px;
}

.footer .social-links a:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.footer .copyright {
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.78);
  padding-bottom: 16px;
  padding-top: 16px;
}

.footer .copyright a {
  color: #ffffff;
  text-decoration: none;
}

.footer .copyright a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #ffffff;
}

.floating-cta-stack {
  bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: fixed;
  right: 18px;
  z-index: 999;
}

.floating-cta {
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: inline-flex;
  font-size: 22px;
  height: 54px;
  justify-content: center;
  transition: transform 0.3s ease;
  width: 54px;
}

.floating-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.floating-cta-whatsapp {
  background: #25d366;
}

.floating-cta-call {
  background: #0a1852;
}

.contact-two-card {
  background: #f4f6f7;
  padding: 18px 0 8px;
}

.contact-two-card .contact-box {
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  padding: 28px 20px 26px;
}

.contact-two-card .contact-box h3 {
  color: #0a1852;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 26px;
}

.contact-two-card .php-email-form {
  height: auto;
}

.contact-two-card .php-email-form input[type=text],
.contact-two-card .php-email-form input[type=email],
.contact-two-card .php-email-form input[type=tel],
.contact-two-card .php-email-form textarea {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  box-shadow: none;
  color: var(--default-color);
  font-size: 16px;
  padding: 12px;
  width: 100%;
}

.contact-two-card .php-email-form input:focus,
.contact-two-card .php-email-form textarea:focus {
  border-color: #0a1852;
  outline: none;
}

.contact-two-card .php-email-form button[type=submit] {
  background: #0a1852;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 22px;
}

.contact-two-card .contact-detail {
  color: #0a1852;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.contact-two-card .contact-detail strong {
  color: #0a1852;
}

.contact-two-card .contact-detail a {
  color: #0000ee;
}

.contact-two-card .contact-map {
  border: 0;
  border-radius: 6px;
  height: 255px;
  margin-top: 18px;
  width: 100%;
}

@media (max-width: 1199px) {
  .topbar {
    display: none;
  }

  .header .main-header-inner {
    min-height: 70px;
  }

  .header .btn-getstarted {
    margin-left: 0;
    margin-right: 12px;
    padding: 9px 14px;
  }

  .floating-cta-stack {
    bottom: 88px;
    right: 14px;
  }
}

@media (max-width: 991px) {
  .home-hero,
  .home-hero .container,
  .home-hero-slider,
  .home-hero-slider .swiper-wrapper,
  .home-hero-slider .swiper-slide,
  .home-hero-bg {
    height: 680px;
    min-height: 680px;
  }

  .home-hero-content {
    padding-top: 82px;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .home-stats-panel,
  .home-service-grid,
  .home-process-row,
  .home-operator-grid,
  .home-client-logo-grid,
  .industries-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-stat-item:nth-child(2) {
    border-right: 0;
  }

  .home-about-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-service-grid {
    gap: 12px;
  }

  .home-testimonial {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .home-hero,
  .home-hero .container,
  .home-hero-slider,
  .home-hero-slider .swiper-wrapper,
  .home-hero-slider .swiper-slide,
  .home-hero-bg {
    height: 560px;
    min-height: 560px;
  }

  .home-hero-overlay {
    background: rgba(255, 255, 255, 0.9);
  }

  .home-hero-with-content .home-hero-overlay,
  .home-hero-with-content .container {
    display: none;
  }

  .home-hero-with-content .home-hero-mobile-hotspots {
    display: block;
    inset: 0;
    position: absolute;
    z-index: 4;
  }

  .home-hero-mobile-hotspot {
    position: absolute;
    z-index: 5;
  }

  .home-hero-mobile-hotspot-primary {
    height: 8.5%;
    left: 8%;
    top: 79%;
    width: 84%;
  }

  .home-hero-mobile-hotspot-secondary {
    height: 8.5%;
    left: 8%;
    top: 88%;
    width: 84%;
  }

  .home-hero-mobile-hotspot-whatsapp {
    bottom: 2.5%;
    height: 7.5%;
    left: 26%;
    width: 48%;
  }

  .home-hero-featured-slide .home-hero-mobile-hotspots {
    display: block;
    inset: 0;
    position: absolute;
    z-index: 4;
  }

  .home-hero-mobile-hotspot-services {
    height: 4.6%;
    left: 4.8%;
    top: 55%;
    width: 28.5%;
  }

  .home-hero-mobile-hotspots-third {
    display: block;
    inset: 0;
    position: absolute;
    z-index: 4;
  }

  .home-hero-mobile-hotspot-third-primary {
    height: 5.2%;
    left: 7.5%;
    top: 54.8%;
    width: 38.5%;
  }

  .home-hero-mobile-hotspot-third-secondary {
    height: 5.2%;
    left: 7.5%;
    top: 61.6%;
    width: 38.5%;
  }

  .home-hero-mobile-hotspot-third-whatsapp {
    height: 5.2%;
    left: 7.5%;
    top: 68.5%;
    width: 38.5%;
  }

  .home-hero-content {
    padding-top: 56px;
  }

  .home-hero h1 {
    font-size: 34px;
  }

  .home-hero p {
    font-size: 15px;
  }

  .home-hero-actions,
  .home-btn {
    width: 100%;
  }

  .home-stats-panel {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .home-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
  }

  .home-hero-stats .home-stat-item {
    min-height: 86px;
    padding: 14px;
  }

  .home-stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-stat-item:last-child {
    border-bottom: 0;
  }

  .home-about,
  .home-services,
  .home-industries,
  .home-process,
  .home-clients,
  .home-contact-strip {
    padding: 46px 0;
  }

  .home-about h2,
  .home-info-panel h2,
  .home-contact-strip h2 {
    font-size: 27px;
  }

  .home-section-title h2 {
    font-size: 24px;
  }

  .home-service-grid,
  .home-process-row,
  .home-operator-grid,
  .home-client-logo-grid,
  .industries-card-grid {
    grid-template-columns: 1fr;
  }

  .home-industry-grid,
  .home-about-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-about-img,
  .home-industries-img {
    height: 280px;
  }

  .home-big-stat {
    justify-content: center;
    text-align: left;
  }

  .page-heading-strip h1 {
    font-size: 32px;
  }
}




.service-detail-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.service-banner-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
}

.smart-service-banner-img {
    background: #ffffff;
    object-fit: contain;
    object-position: center;
}



.service-detail-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.service-banner-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
}

.smart-service-banner-img {
    background: #ffffff;
    object-fit: contain;
    object-position: center;
}

.service-detail .service-detail-image img.tower-soller-banner-img {
    background: #ffffff;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.ev-charger-banner-img {
    background: #ffffff;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.ev-service-hero {
    padding: 0;
}

.ev-service-hero-image,
.ev-service-hero-image .service-banner-img {
    border-radius: 0;
}

@media(max-width:768px){

    .service-banner-img{
        height: 250px;
    }

    .smart-service-banner-img{
        object-fit: contain;
    }

    .ev-charger-banner-img{
        height: auto;
    }

}




.outdoor-page-title .heading{
    position: relative;
    padding: 180px 0;

    background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../img/outdoor_hero.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.outdoor-page-title h1{
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
}

.outdoor-page-title p{
    color: #fff;
    font-size: 18px;
}

@media(max-width:768px){

    .outdoor-page-title .heading{
        padding: 100px 0;
    }

    .outdoor-page-title h1{
        font-size: 34px;
    }

}

.terms-page-title {
  min-height: 190px;
  background:
    linear-gradient(rgba(8, 31, 58, 0.72), rgba(8, 31, 58, 0.72)),
    url("../img/about_img.jpeg") center/cover no-repeat;
}

.terms-overview {
  padding-bottom: 0;
}

.terms-intro-card {
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fc 100%);
  border: 1px solid rgba(13, 74, 134, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(16, 56, 92, 0.08);
  padding: 34px;
  text-align: center;
}

.terms-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 74, 134, 0.08);
  color: #0d4a86;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-intro-card h2 {
  margin-bottom: 12px;
  font-size: 32px;
  color: #15304b;
}

.terms-intro-card p {
  margin: 0 auto;
  max-width: 820px;
  color: #5a6a7b;
  font-size: 16px;
  line-height: 1.8;
}

.terms-grid-section {
  padding-top: 36px;
}

.terms-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.terms-card {
  height: 100%;
  padding: 28px 26px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(13, 74, 134, 0.1);
  box-shadow: 0 16px 36px rgba(15, 45, 74, 0.08);
}

.terms-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  color: #15304b;
}

.terms-card ul {
  margin: 0;
  padding-left: 20px;
}

.terms-card li {
  margin-bottom: 12px;
  color: #556576;
  line-height: 1.75;
}

.terms-card li:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .terms-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .terms-page-title {
    min-height: 140px;
  }

  .terms-intro-card {
    padding: 24px 18px;
  }

  .terms-intro-card h2 {
    font-size: 26px;
  }

  .terms-card {
    padding: 22px 18px;
  }
}
