/**
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: sans-serif;
  --heading-font:  sans-serif;
  --nav-font:  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: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1e4356; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #68a4c4; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #03fa6e; /* 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: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #68a4c4; /* 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: #f4f8fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1e4356;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #284e62;
  --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: #092a49;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #092a49;
  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: #059652;
  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 {
  --background-color: rgba(30, 67, 86, 0.2);  /* Transparent when on hero */
  --solid-background-color: #1e4356; /* Solid background when scrolling past */
  --default-color: #ffffff; /* Text color */
  --heading-color: #ffffff;

  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: background-color 0.5s, padding 0.5s;
  z-index: 997;
  position: fixed;
  width: 100%;
}

.header.scrolled {
  --background-color: var(--solid-background-color); /* Solid color when scrolling past */
  padding: 5px 0; /* Adjust padding for a compact look */
}


.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}



/*--------------------------------------------------------------
# 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: 18px;
    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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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: 16px;
  position: relative;
}

.footer-copyright {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 10px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  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;
  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 .footer-top {
  padding-top: 50px;
}

.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 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h3 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}


.footer-links h4 {
  grid-column: 1 / -1; /* Span across the full grid width */
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  margin-right: auto; /* Push the element to the right */
  margin-left: 28%; /* Offset by 35% from the right */
 /* text-align: left; /* Ensure the text inside is aligned left */
}



/* Scoped CSS for the "Our Services" section */
.footer-links.our-services h4 {
  grid-column: 1 / -1; /* Make the heading span across the entire parent column */
}

/* CSS for the two-column layout */
.footer-links.our-services .service-items {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns */
  gap: 10px;
  justify-content: center; 
}

.footer-links.our-services ul {
  list-style: none; /* Remove default list styling */
  padding: 0;
  margin: 0;
}


.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.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 {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Removed background color */
  transition: opacity 0.6s ease-out;
  opacity: 1;
}

/* Hide Preloader after load */
#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Spinner with Logo */
#preloader .spinner {
  position: relative;
  width: 80px;
  height: 80px;
}

#preloader .spinner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 6px solid var(--accent-color);
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: animate-preloader 1.5s linear infinite;
}

/* Logo Styling */
#preloader .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
}

@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: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}*/

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 65px 0 30px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 0px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}


.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.services-title {
  text-align: center;
  padding-bottom: 0px;
  position: relative;
}

.services-title h2 {
  font-size: 25px;
  font-weight: 650;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}


.services-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.services-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
 /* background: var(--accent-color); */
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


.feature-title {
  /* text-align: center;*/
   padding-bottom: 0px;
   position: relative;
   display: flex;
   justify-content: flex-start; /* Aligns content to the left */
   text-align: left; /* Ensures text is aligned to the left */
 }
 
 .feature-title h2 {
   font-size: 25px;
   font-weight: 650;
   margin-bottom: 20px;
   padding-bottom: 20px;
   position: relative;
 }

.feature-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: -5px; /* Positioned just below the text */
  left: 0; /* Positioned the line on the left */
}

 
 .feature-title h2::after {
   content: "";
   position: absolute;
   display: block;
   width: 60px;
   height: 3px;
  /* background: var(--accent-color); */
   left: 0;
   right: 0;
   bottom: 0;
   margin: auto;
 }

.section-title p {
  margin-bottom: 0;
}

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5); /* Add a semi-transparent overlay */
  overflow: hidden; /* Prevent content from overflowing */
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.8; /* Make the image slightly transparent */
}

.hero .hero-text {
  position: absolute;
  top: 15%;
  right: 0%;
  left: 30%;
  text-align: left;
  z-index: 2;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2); /* Add a transparent background for the text */
  border-radius: 8px; /* Optional rounded corners */
}

.hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 56px;
  color: #ffffff; /* White text color */
  text-shadow: 0 0 10px rgba(0, 8, 10, 0.5), 0 0 20px rgba(110, 112, 113, 0.3);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    text-shadow: 
      0 0 10px rgba(94, 157, 174, 0.5), 
      0 0 20px rgba(94, 157, 174, 0.3); /* Original shadow (teal) */
  }
  50% {
    text-shadow: 
      0 0 20px rgba(94, 157, 174, 0.8), 
      0 0 30px rgba(94, 157, 174, 0.6), 
      0 0 10px rgba(255, 159, 128, 0.6), 
      0 0 20px rgba(255, 159, 128, 0.4);
  }
}



.hero p {
   margin: 5px 0 30px 0;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 80px 10px 30px 10px;
  }

  .hero .hero-text {
    top: 10%;
    left: 5%;
    right: 5%;
    text-align: center; /* Fully center text for smaller devices */
  }

  .hero h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .btn-get-started {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 5px 20px 5px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero .btn-get-started {
    font-size: 12px;
    padding: 6px 12px;
  }
}



/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  --cyan-color: #0dcaf0;
  --orange-color: #fd7e14;
  --teal-color: #20c997;
  --red-color: #df1529;
}

.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  border: 1px solid transparent;
}

.featured-services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.featured-services .service-item .icon i {
  font-size: 28px;
  transition: 0.5s;
  position: relative;
}

.featured-services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.featured-services .service-item.item-cyan .icon {
  background-color: color-mix(in srgb, var(--cyan-color) 10%, white 100%);
}

.featured-services .service-item.item-cyan .icon i {
  color: var(--cyan-color);
}

.featured-services .service-item.item-cyan:hover {
  border-color: var(--cyan-color);
}

.featured-services .service-item.item-cyan:hover .icon {
  background-color: var(--cyan-color);
}

.featured-services .service-item.item-cyan:hover .icon i {
  color: var(--contrast-color);
}

.featured-services .service-item.item-orange .icon {
  background-color: color-mix(in srgb, var(--orange-color) 10%, white 95%);
}

.featured-services .service-item.item-orange .icon i {
  color: var(--orange-color);
}

.featured-services .service-item.item-orange:hover {
  border-color: var(--orange-color);
}

.featured-services .service-item.item-orange:hover .icon {
  background-color: var(--orange-color);
}

.featured-services .service-item.item-orange:hover .icon i {
  color: var(--contrast-color);
}

.featured-services .service-item.item-teal .icon {
  background-color: color-mix(in srgb, var(--teal-color) 10%, white 95%);
}

.featured-services .service-item.item-teal .icon i {
  color: var(--teal-color);
}

.featured-services .service-item.item-teal:hover {
  border-color: var(--teal-color);
}

.featured-services .service-item.item-teal:hover .icon {
  background-color: var(--teal-color);
}

.featured-services .service-item.item-teal:hover .icon i {
  color: var(--contrast-color);
}

.featured-services .service-item.item-red .icon {
  background-color: color-mix(in srgb, var(--red-color) 10%, white 95%);
}

.featured-services .service-item.item-red .icon i {
  color: var(--red-color);
}

.featured-services .service-item.item-red:hover {
  border-color: var(--red-color);
}

.featured-services .service-item.item-red:hover .icon {
  background-color: var(--red-color);
}

.featured-services .service-item.item-red:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

/* Optional Custom AOS animation for smoother transition */
[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(100px); /* Start from the right side */
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* AOS add-in when scrolled into view */
[data-aos].aos-animate {
  opacity: 1;
  transform: translateX(0); /* End at its original position */
}



/* Base Style for .img-fluid */
.img-fluid {
  height: 330px;
  width: 450px;
  /*border-top-right-radius: 25%;
  border-bottom-left-radius: 25%;*/
  border-radius: 5%;
  position: relative;
}

/* Base Style for .feature-img-fluid */
.feature-img-fluid {
  height: 330px;
  width: 450px;
  border-top-right-radius: 25%;
  border-bottom-left-radius: 25%;
  position: relative;
}

/* Adjustments for Medium Devices (Tablets and Small Laptops) */
@media (max-width: 768px) {
  .img-fluid {
    height: 300px;
    width: 400px;
    left: 10%; /* Reduce horizontal offset */
  }

  .feature-img-fluid {
    height: 300px;
    width: 400px;
    left: -10%; /* Reduce left offset for balance */
  }
}

/* Adjustments for Small Devices (Mobile Phones) */
@media (max-width: 576px) {
  .img-fluid {
    height: 250px;
    width: 350px;
    left: 0%; /* Center the image */
    /*border-top-right-radius: 20%;
    border-bottom-left-radius: 20%;*/
    border-radius: 5%;
  }

  .feature-img-fluid {
    height: 250px;
    width: 350px;
    left: 0%; /* Center the image for mobile */
    border-top-right-radius: 20%;
    border-bottom-left-radius: 20%;
  }
}



.why-img-fluid {
  height: 300px;
  width: 400px;
  margin-left: 10%;
  display: block; /* Ensure the image is treated as a block element */
  margin-left: auto; /* Center image horizontally */
  margin-right: auto; /* Center image horizontally */
  border-top-left-radius: 20px; /* Adjust radius size as needed */
  border-bottom-right-radius: 20px; /* Adjust radius size as needed */
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}



.imgage-fluid {
  height: 350px; /* Fixed height for the image */
  width: 100%; /* Ensure the image fills the width of its container */
  margin-top: 2%; /* Keep the top margin */
  border-radius: 25px; /* Rounded corners */
  display: block; /* Ensure the image is treated as a block element */
  margin-left: auto; /* Center image horizontally */
  margin-right: auto; /* Center image horizontally */
}

@media (min-width: 1601px) and (max-width: 1960px) {
  .imgage-fluid {
    height: 350px; /* Fixed height for the image */
    width: 90%;
  }
}



/* For mobile view */
@media (max-width: 768px) {
  .imgage-fluid {
    max-height: 30%; /* Maintain aspect ratio */
    width: 100%; /* Make the image fill the width of its container */
  }
}

.col-md-7 {
  margin: 0 auto;
  padding: 20px;
  background-color: #f4f8fb; /* Light background for better readability */
  border-radius: 10px; /* Rounded corners */
}

.col-md-7 h4 {
  
  text-align: center; /* Center align text */
  font-size: 24px; /* Larger font size for emphasis */
  font-weight: 600; /* Slightly bolder text */
  color: #1e4356; /* Dark gray for good contrast */
  margin-bottom: 10px; /* Space below the heading */
  letter-spacing: 1px; /* Slight spacing for better readability */
}



.features .features-item {
  color: color-mix(in srgb, var(--default-color));
  padding-left: 2rem; /* Use relative units for better adaptability */
}

@media (max-width: 1600px) { /* Adjust for smaller screens like a 15-inch laptop */
  .features .features-item {
    padding-left: 1rem;
  }
}

@media (min-width: 1601px) and (max-width: 1960px) {
  .features .features-item {
    max-width: 100%; /* Ensures the item remains proportionally centered */
    padding-left: 9%;

  }
}

.features .features-item+.features-item {
  margin-top: 25px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: lightseagreen;
}

.features .features-item p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.swiper-pagination {
  position: relative;
  bottom: 10px; /* Adjust position */
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  background: #989daa; /* Bullet color */
  opacity: 0.6;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #31a7fd; /* Active bullet color */
}


/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  /* margin-top: -8%; 
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);*/
  background-color: var(--surface-color);
  padding: 10px;
  
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  /*padding: 12px 15px;*/
  margin-top: 5px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}


.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: 
color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}




.service-details p {
  font-size: 16px;
  font-weight: 500;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.service-details ul li {
  font-size: 16px;
  font-weight: 500;
  padding: 1px 0;
  display: flex;
 /* align-items: center;*/
}

.service-details ul i {
 /* font-size: 20px; */
  margin-right: 8px;
  color: lightseagreen;
}



/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  /*color: #818181;
  padding: 1px 8px 6px 16px;
  font-size: 15px;*/
  text-decoration: none;
  display: block;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: #ffffff;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 90%!important;
  }
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  background-color: #ffffff;
  padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}


 /* Highlight the active button */
.active-button {
    background-color: #000000;
    color: white;
    font-weight: bold;
}

/* Highlight the active service list */
.active-service {
    background-color: #f8f9fa;
    border: 2px solid #007bff;
    padding: 10px;
    margin-top: 10px;
    display: block;
}

/* Hide all service lists and contents by default */
.service-list {
    display: none;
}

.content {
    display: none;
}


/* Highlight active list item */
.active-item {
    background-color: #d1ecf1;
    color: #ffffff;
    font-weight: bold;
    padding: 5px;
}

/* Display active content */
.active-content {
    display: block;
    border: 1px solid #007bff;
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
}
/* General Accordion Button Styling */
.accordion-button {
  display: inline-flex; /* Align content horizontally */
  align-items: center; /* Vertically align items */
  justify-content: flex-start; /* Keep text aligned to the left */
  width: 100%; /* Ensure the button spans the full width */
  padding-right: 1rem; /* Adjust padding for alignment */
  font-size: 18px; /* Increased font size */
  font-weight: 550; /* Set font weight */
  position: relative; /* Allow absolute positioning of the chevrons */
  border: none; /* Optional: Remove border */
  background: transparent; /* Optional: Transparent background */
  color: #1e4356; /* Default text color */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

/* Active State for Accordion Button */
.accordion-button.active,
.accordion-button:not(.collapsed) {
  background-color: #1e4356;
  color: #ffffff;
}

/* Hover Effect for Accordion Button */
.accordion .accordion-button:hover {
  background-color: #1e4356; /* Darker blue on hover */
  color: #ffffff;
}

/* Remove default Bootstrap chevron */
.accordion-button::after {
  display: none;
}

/* Chevron icons (after the text) */
.accordion-button .bi-chevron-down,
.accordion-button .bi-chevron-up {
  
  right: 1rem; /* Align chevrons to the right */
  font-size: 22px; /* Chevron size */
  font-weight: 700; /* Chevron weight */
  position: absolute; /* Position chevrons absolutely */
  right: 1rem; /* Align chevrons to the right */
  transition: transform 0.2s ease; /* Smooth transition */
}



.accordion-button .bi-chevron-down {
  display: inline-block; /* Show down-chevron by default */
}

.accordion-button .bi-chevron-up {
  display: none; /* Hide up-chevron initially */
}

/* Toggle chevrons when expanded */
.accordion-button:not(.collapsed) .bi-chevron-down {
  display: none;
}

.accordion-button:not(.collapsed) .bi-chevron-up {
  display: inline-block;
}

/* Accordion Body */
.accordion .accordion-body {
  padding: 15px;
  font-size: 16px; /* Increased font size */
  color: #1e4356;
  background-color: #fdfdfd;
  border-top: 1px solid #ddd;
}

/* Links in Accordion Body */
.accordion .accordion-body a {
  display: flex;
  color: #0059b8; /* Blue links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.accordion .accordion-body a:hover {
  color: #5fa8f7; /* Darker blue on hover */
  text-decoration: underline;
}

.accordion .accordion-body a.active {
  color: #007bff; /* Highlight color for active links */
  font-weight: bold;
}

/* Style for active list item */
.list-item.active {
  font-weight: bold;
  color: #007bff; /* Highlight color */
  position: relative; /* Allow positioning of the arrow */
}

/* Arrow icon aligned to the right */
.list-item.active .bi-arrow-right {
  position: absolute;
  right: 0; /* Align arrow to the right */
}

/* Service Content Sections */
.service-content {
  display: none; /* Hide all sections initially */
}

.service-content.active {
  display: block; /* Show the active section */
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}
/*--------------------------------------------------------------*/
/* General layout for service items */
.services-section {
  display: grid; /* Use grid layout */
  grid-template-columns: repeat(4, 1fr); /* 4 equal-width columns */
  gap: 1.5rem; /* Spacing between grid items */
}

/*--------------------------------------------------------------*/
/* Default styling for service items */
.service-item {
  background-color: #fff;  /* Default background color */
  border: 1px solid #ddd;  /* Optional border for better separation */
  padding: 7px;  /* Add some padding */
  transition: all 0.3s ease;  /* Smooth transition for all properties */
  position: relative;  /* Ensure positioning for the shadow effect */
  transform-style: preserve-3d;  /* Allow the 3D effect to be visible */
  border-radius: 10px;  /* Make the corners rounded */
  text-align: center;  /* Center the text inside the service item */
}

/* Ensure the title (h4) is centered and occupies its full width */
.service-item h4 {
  margin-bottom: 15px;  /* Add margin below title for spacing */
  font-size: 1.25rem;  /* Optional: adjust font size */
}

/* Hover effect: change background color, shadow, and 3D transform */
.service-item:hover {
  background-color: rgb(113, 159, 177); /* Change the background color to sky blue on hover */
  color: #fff;  /* Change text color to white for contrast */
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);  /* Add a subtle shadow for depth */
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);  /* 3D transformation: lifts the item and adds a slight tilt */
}

/* Optional: Add a more intense 3D effect for the icon */
.service-item:hover i {
  color: #fff;  /* Change icon color to white on hover */
  transform: rotate(20deg);  /* Rotate the icon for a more dynamic effect */
  transition: transform 0.3s ease;  /* Smooth transition for icon rotation */
}

/* Optional: Adjust text link color */
.service-item h4 a {
  color: inherit;  /* Inherit color from parent */
  transition: color 0.3s ease;  /* Smooth transition for link color */
}

.service-item:hover h4 a {
  color: rgba(255, 255, 255, 0);  /* Make the link text white on hover */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .services-section {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on medium screens */
  }
}

@media (max-width: 575px) {
  .services-section {
    grid-template-columns: 1fr; /* 1 item per row on small screens */
  }
}


/* Ensure the logo is aligned to the left and content to the right */
.container.section-title .row {
    display: flex;
    align-items: center;
}

.logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 100%;
    height: auto;
}

/* Responsive layout */
@media (max-width: 768px) {
    .container.section-title .row {
        flex-direction: column;
        align-items: center;
    }
}

/* Icon Box Styling */
.icon-box {
  font-size: 50px; /* Increase the icon size */
  text-align: center;
  display: block;
  margin: 0 auto; /* Center the icon horizontally */
  margin-bottom: 10px; /* Space between icon and heading */
}

/* Carousel container */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* Hides anything outside the container */
}

/* The wrapper for the domain items */
.domains-section {
  display: flex;
  gap: 21px; /* Add equal gap between items */
  transition: transform 0.5s ease; /* Smooth sliding transition */
  padding-left: 28px; /* Add padding to the left */
  padding-right: 28px; /* Add padding to the right */
}

/* Individual domain item styling */
.domain-item {
  flex: 0 0 calc((100% / 3) - 20px); /* Show 3 items per row, with gap adjustments */
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}

/* Content inside domain-item */
.domain-item .icon-box {
  font-size: 50px;
  color: #31a7fd;
  margin-bottom: 20px;
}

.domain-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1e4356;
}

.domain-item p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 300;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 50px;
  padding: 1px;
  z-index: 10;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Previous Button */
.prev-btn {
  left: 10px;
}

/* Next Button */
.next-btn {
  right: 10px;
}

/* SVG Styling */
.carousel-btn svg {
  width: 50px;
  height: 50px;
  color: #cccbcb;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.carousel-btn:hover svg {
  color: #31a7fd; /* Change icon color */
  transform: scale(1.2); /* Enlarge icon */
}

/* Active Effect */
.carousel-btn:active svg {
  transform: scale(1.1); /* Slight shrink on click */
}

/* Pagination dots container */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Individual dots */
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Active dot */
.dot.active {
  background-color: #31a7fd; /* Highlight active dot */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .domain-item {
    flex: 0 0 calc((100% / 2) - 10px); /* Show 2 items on smaller screens */
  }
}

@media (max-width: 480px) {
  .domain-item {
    flex: 0 0 calc(100% - 20px); /* Show 1 item on very small screens */
  }
}


/*** form **/
/* Styling for the form container */
.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 20px; /* Circular corners for the form container */
  width: 100%;        /* Ensure the form takes full width */
  max-width: 600px;   /* Limit width for form */
  height: auto;
  margin: 0 auto;     /* Center the form horizontally */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  border: 2px solid transparent; /* Default border with transparent color */
}

/* Add border effect when hovering over the form container */
.contact .php-email-form:hover {
  border-color: var(--accent-color); /* Change border color on hover */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15); /* Increase shadow on hover */
}

/* Styling for form fields (inputs and textarea) */
.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: 10px; /* Rounded corners for the input fields */
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for input fields and textarea */
.contact .php-email-form input[type="text"]:hover,
.contact .php-email-form input[type="email"]:hover,
.contact .php-email-form textarea:hover {
  border-color: var(--accent-color); /* Change border color when hovering */
  box-shadow: 0px 0px 5px rgba(var(--accent-color-rgb), 0.2); /* Add light shadow on hover */
}

/* Focus effect for input fields and textarea */
.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); /* Accent color on focus */
  box-shadow: 0px 0px 5px rgba(var(--accent-color-rgb), 0.3); /* Enhanced shadow on focus */
}

/* Styling for the submit button */
.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 20px; /* Circular button with rounded corners */
}

/* Hover effect for the submit button */
.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border: 2px solid var(--accent-color); /* Add border to button on hover */
}

/* Optional: Add responsiveness for smaller screens */
@media (max-width: 991px) {
  .contact .php-email-form {
    max-width: 100%; /* Make the form full-width on smaller screens */
    padding: 20px;
  }
}


.contact-us-container {
  position: fixed;
  bottom: 10px;
  right: 12px;
  z-index: 1000;
}

/* Style for the Contact Us button when the popover is open */
.contact-us-container.open .contact-us-icon {
  position: absolute; /* Place the icon relative to the popover */
  right: 270px;
  bottom: 550px !important;
  z-index: 1100; /* Ensure it's above other elements */
  background-color: #28a745; /* Optional: Different color for open state */
  transform: scale(1); /* Reset hover animation */
  box-shadow: none; /* Remove hover shadow */
}

/* Prevent bounce animation when popover is open */
.contact-us-container.open .contact-us-icon i {
  animation: none;
}

.contact-us-icon {
  background-color: #1e4356; /* Dark teal background */
  border: none; /* Remove default button border */
  border-radius: 50%; /* Make the button circular */
  padding: 16px; /* Inner spacing around the icon */
  cursor: pointer; /* Pointer cursor on hover */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for better visibility */
  display: flex; /* Enable flexible alignment */
  align-items: center; /* Vertically center the icon */
  justify-content: center; /* Horizontally center the icon */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
}

.contact-us-icon:hover {
  transform: scale(1.1); /* Slightly enlarge the button */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* More prominent shadow on hover */
  background-color: #28a745; /* Change background color on hover */
}

.contact-us-icon:active {
  transform: scale(0.95); /* Slight shrink effect when clicked */
}

.contact-us-icon i {
  font-size: 30px; /* Adjust icon size */
  color: #ffffff; /* Icon color */
  animation: bounce 1.5s infinite; /* Icon bounce animation */
}

/* Keyframes for bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Contact Us Popover */
.contact-us-popover {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 10px; /* Start near the Contact Us button */
  right: 10px;
  width: 300px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* More prominent shadow */
  border-radius: 8px;
  z-index: 1000;
  opacity: 0; /* Initially hidden */
  transform: scaleY(0) translateY(20px); /* Start collapsed and slightly below */
  transform-origin: bottom; /* Pull-up effect starts from the bottom */
  transition: 
    opacity 0.3s ease, 
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Smooth pulling effect */
}

.contact-us-popover.open {
  display: block; /* Make visible */
  opacity: 1; /* Fade in */
  transform: scaleY(1) translateY(0); /* Pull up and expand */
}

.contact-us-popover form {
  display: flex;
  flex-direction: column;
}

.contact-us-popover h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #1e4356;
}

.contact-us-popover label {
  margin: 10px 0 5px;
  font-size: 14px;
  color: #555;
}

.contact-us-popover button {
  background-color: #1e4356; /* Button color */
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-us-popover button:hover {
  background-color: #28a745; /* Change to green on hover */
}

.contact-us-popover input,
.contact-us-popover textarea {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.contact-us-popover button {
  margin-top: 10px;
  padding: 10px;
  font-size: 14px;
  color: white;
  background-color: #1e4356;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-us-popover button:hover {
  background-color: #28a745; /* Change to green on hover */
}


.contact-us-popover input,
.contact-us-popover textarea {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.contact-us-popover button {
  margin-top: 10px;
  padding: 10px;
  font-size: 14px;
  color: white;
  background-color: #1e4356;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-us-popover button[type="button"] {
  background-color: #6c757d;
}


.g-recaptcha iframe {
  margin: 10px 0 !important;
  transform: scale(0.8) !important; /* Reduce size further */
  transform-origin: 0 0 !important; /* Ensure it scales from the top-left corner */
  width: 100% !important; /* Adjust iframe to fit within the form */
}


/* Form container styling */
.form-container {
  background-color: #ffffff; /* White background */
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 40px;
  border-radius: 15px; /* Border radius for rounded card */
  width: 100%; /* Full width for responsiveness */
  max-width: 600px; /* Maximum width */
  margin: 0 auto; /* Center the form horizontally */
  transition: all 0.3s ease-in-out; /* Smooth transition for hover and animation */
  border: 1px solid #ddd; /* Light gray border */
  transform: translateY(10px); /* Initial slight downward shift */
  opacity: 0; /* Initial opacity set to 0 for animation */
}

/* Add hover effect on container */
.form-container:hover {
  transform: translateY(-5px); /* Slight upward shift on hover */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15); /* Increased shadow on hover */
  border-color: #007bff; /* Change border color on hover */
}

/* Form fields styling */
.form-container input[type="text"],
.form-container input[type="email"],
.form-container textarea {
  font-size: 14px;
  padding: 10px 15px;
  border: 1px solid #ccc; /* Light gray border for inputs */
  border-radius: 8px; /* Rounded corners for inputs */
  color: #333; /* Dark text color */
  background-color: #fff; /* White background for inputs */
  width: 100%; /* Full width for inputs */
  transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

/* Focus effect for form fields */
.form-container input[type="text"]:focus,
.form-container input[type="email"]:focus,
.form-container textarea:focus {
  border-color: #007bff; /* Blue border on focus */
  box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.2); /* Blue shadow on focus */
}

/* Submit button styling */
.form-container button[type="submit"] {
  background-color: #1e4356; /* Blue background */
  color: #fff; /* White text */
  border: 0;
  padding: 10px 30px;
  border-radius: 25px; /* Rounded button */
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth transition */
}

/* Submit button hover effect */
.form-container button[type="submit"]:hover {
  background-color: #28a745; /* Darker blue on hover */
}


/* Error and success message styling */
.form-container .error-message,
.form-container .sent-message {
  color: #ff0000; /* Red text for error */
  display: none; /* Hide by default */
  font-size: 14px;
  margin-top: 10px;
}

.form-container .sent-message {
  color: #28a745; /* Green text for success */
}

/* Optional: Add responsiveness for smaller screens */
@media (max-width: 991px) {
  .form-container {
    max-width: 100%; /* Make the form full width on small screens */
    padding: 20px;
  }
}

/* Animation effect for form container on page load */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px); /* Start with slight downward position */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at normal position */
  }
}

/* Apply fadeInUp animation */
.form-container {
  animation: fadeInUp 1s ease-out forwards;
}


/*********/
/* Careers Section */
.careers {
  padding: 80px 0;
  background-color: #f9f9f9;  /* Soft light gray background for contrast */
  color: #333;
}

.careers h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  position: relative;
}

.careers h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #0066cc;
}

.careers .job-listings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .careers .job-listings {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .careers .job-listings {
    grid-template-columns: 1fr;
  }
}

.job-item {
  position: relative;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}

.job-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.job-item h4 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.job-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.job-item .btn-primary {
  display: inline-block;
  background-color: #0066cc;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.job-item .btn-primary:hover {
  background-color: #004d99;
  transform: scale(1.05);
}

/* Hover effect for job-item */
.job-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background-color: rgba(0, 102, 204, 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.job-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/***** about section****/

/* General Styling for About Section */
/* General Styling */
/* Core Values Section */
/* Core Values Section Styling */
.core-values {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 300;
  font-family: sans-serif;
  text-align: center; /* Center align content */
}

/* Core Values Section Title */
.core-values .section-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 300;
  font-family: sans-serif;
  text-align: center; /* Center align content */
}


.core-values .value-title:hover {
  color: #0056b3; /* Darker blue on hover */
}

/* Core Values Value Text */
.core-values .value-text {
  font-size: 1.1rem;
  color: #6c757d; /* Grey color for text */
  line-height: 1.6;
  transition: transform 0.3s ease-in-out;
}

.core-values .value-text:hover {
  transform: translateY(-5px); /* Slight upward movement on hover */
}


/* Mission Statement Section */
.mission-statement {
  padding: 40px 20px;
}

.mission-statement .section-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 300;
  font-family: sans-serif;
  text-align: center;
}

/* Base styles for all views */
.mission-statement .mission-text {
  margin-top: 0;
  font-size: 18px;
  font-weight: 300;
  font-family: sans-serif;
  text-align: center;
  transition: transform 0.3s ease-out;
}

/* Styles for laptop view (screen width between 1024px and 1440px) */
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .mission-statement .mission-text {
    padding-left: 140px; /* Add left padding */
    padding-right: 140px; /* Add right padding */
  }
}

/* Optional: Reset padding for smaller or larger screens */
@media screen and (max-width: 1023px), screen and (min-width: 1441px) {
  .mission-statement .mission-text {
    padding-left: 10%; /* Add left padding */
    padding-right: 10%; /* Add right padding */
  }
}



.mission-statement .mission-text:hover {
  transform: scale(1.05); /* Slight scaling on hover */
}

/* Add AOS fade-in effect */
[data-aos="fade-in"] {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

[data-aos="fade-in"].aos-animate {
  opacity: 1;
}

/***** about csss*/
.about {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.about .section-header {
  margin-bottom: 30px;
  margin-left: 0;
}

.about .about-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: .5s;
  border-radius: 20px;
}

.section-header {
  display: flex; /* Use flexbox to align elements in a row */
  align-items: center; /* Vertically align the items to the center */
}

.section-header h1 {
  font-size: 60px; /* Set the font size for h1 */
  margin: 0; /* Remove default margin */
}

.section-header h2 {
  font-size: 32px; /* Set the font size for h2 */
  margin: 0; /* Remove default margin */
  margin-left: 10px; /* Add space between h1 and h2 */
}


/*.about .about-img::after {
  position: absolute;
  content: "";
  top: 60px;
  right: 60px;
  bottom: 60px;
  left: 60px;
  background: transparent;
  border: 30px solid;
  border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
  z-index: 1;
}*/

.about .about-img:hover::after {
  border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.about .about-img-1 {
  position: relative;
  height: 100%;
  height: 100%;
  /*margin: 0 150px 150px 0;*/
}

.about .about-img-2 {
  position: absolute;
  height: 100%;
  height: 100%;
  top: 150px;
  left: 150px;
  z-index: 1;
}

.about .about-img-1 img,
.about .about-img-2 img {
  position: relative;
  width: 100%;
}

.about .about-text p {
  font-size: 16px;
}

.about .about-text a.btn {
  position: relative;
  margin-top: 15px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #092a49;
  border: 2px solid #092a49;
  border-radius: 0;
  background: none;
  transition: .3s;
}

.about .about-text a.btn:hover {
  color: #0796fe;
  background: #092a49;
}

@media (max-width: 767.98px) {
  .about .about-img {
      margin-bottom: 30px;
      height: auto;
  }
}


.about-text li {
  margin-bottom: 10px;   /* Space between list items */
}

.btn {
  display: inline-block;  /* Display as inline block for padding */
  padding: 10px 20px;    /* Padding for button */
  background-color: #007bff; /* Example background color */
  color: #ffffff;         /* White text color */
  text-decoration: none;  /* No underline */
  border-radius: 5px;    /* Rounded corners */
}

.btn:hover {
  background-color: #0056b3; /* Darker color on hover */
}

.point-title {
  color: #007bff; /* Change this to your desired color for the titles */
  text-decoration: none; /* No underline */
}

.point-title:hover {
  color: #0056b3; /* Darker color on hover */
  text-decoration: underline; /* Underline on hover for better visibility */
}

.point-description {
  color: #333; /* Change this to your desired color for the descriptions */
  display: block; /* Ensures the description is on a new line */
  margin-top: 5px; /* Adds space between title and description */
}

/* Add underline to all <b> tags inside the point-title links */
.about-text .point-title b {
  text-decoration: underline; /* Add underline */
  text-decoration-color: #007bff; /* Optional: Customize the color of the underline (tomato color) */
 /*  text-decoration-thickness: 2px; /* Optional: Set thickness of the underline */
}



/*******************************/
/********* why choose us CSS *********/
/*******************************/

.section-why-choose{
  margin-top: 0;
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 300;
    font-family: sans-serif;
}
 
/* Client Section */
.client {
  padding: 30px 0;
  background-color: #fff;
  border-radius: 10px;
}
 
/* Counters Container (Flexbox Layout) */
.row.counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px 10px 10px; /* top, right, bottom, left */

}
 
/* Individual Counter Box */
.counter-box {
  flex: 1 1 calc(50% - 10px); /* Two items per row for large screens, wraps for smaller */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #024677;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
 
/* Hover Effect for Counter Box */
.counter-box:hover {
  background-color: #0796fe;
  color: #fff; /* Change text color to white */
}
 
/* Counter Icon */
.counter-box i {
  font-size: 36px; /* Icon size */
  margin-bottom: 10px;
  color: #0796fe; /* Icon color */
  transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Hover Effect for the Icon */
.counter-box:hover i {
  color: #fff; /* Change icon color to white when hovering over the counter box */
}

 
/* Counter Number */
.counter-box .counter {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
 /* color: #0796fe;*/
}
 
/* Counter Text Below Number */
div.counter-box p {
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 800;
  font-family: sans-serif;
  margin-top: 10px;
}

 
/* Client Image Section */
.expertise-img {
  position: relative; /* To position image for zoom effect */
  overflow: hidden;   /* Ensures border radius is applied to the image */
  border-radius: 15px; /* Round corners of the container */
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  Subtle shadow for a lifted effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition on hover */
}
 
/* Image Styling */
.expertise-img img {
  width: 100%;        /* Make image responsive */
  height: auto;       /* Maintain aspect ratio */
  display: block;     /* Remove any unwanted space below the image */
  border-radius: 15px; /* Apply the same border radius to the image */
}


/* Client Image Section */
.client-img {
  position: relative; /* To position image for zoom effect */
  overflow: hidden;   /* Ensures border radius is applied to the image */
  border-radius: 15px; /* Round corners of the container */
}

/* Image Styling */
.client-img img {
  width: 100%;          /* Make image responsive */
  height: 550px;    /* Cap the maximum height for larger screens */
  display: block;       /* Remove any unwanted space below the image */
  border-radius: 20px;  /* Apply the same border radius to the image */
  margin-bottom: 2%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .client-img {
    border-radius: 15px; /* Slightly smaller border radius on tablets and mobile */
  }

  .client-img img {
    border-radius: 10px; /* Apply matching border radius */
    max-height: 380px;   /* Reduce height for medium-sized screens */
  }
}

@media (max-width: 576px) {
  .client-img {
    border-radius: 10px; /* Smaller border radius for small mobile devices */
  }

  .client-img img {
    border-radius: 8px; /* Apply matching border radius */
    max-height: 280px;  /* Reduce height for small screens */
  }
}

.like-button-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  gap: 10px; /* Space between the buttons */
}

.like-button {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #CCEAF7;
  border-radius: 25px;
  color: #333;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.like-button i {
  font-size: 18px;
  color: #333;
  margin-right: 10px;
}

.like-button:hover {
  background-color: #1e4356;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.like-button:hover i {
  color: #fff;
}

/* Responsive layout adjustments */
@media (max-width: 768px) { /* For tablets */
  .like-button-list {
    display: block;
    grid-template-columns: repeat(1, 1fr); /* One column */
    gap: 10px; /* Reduced spacing */
  }

  .like-button {
    font-size: 14px; /* Slightly smaller text */
    padding: 10px 15px;
  }
}

@media (max-width: 480px) { /* For mobile devices */
  .like-button-list {
    gap: 10px; /* Even tighter spacing */
  }

  .like-button {
    padding: 8px 12px;
  }
}

/* Service button list styling */
.service-button-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns for larger screens */
  gap: 5px; /* Spacing between buttons */
}

/* Base styling for buttons */
.service-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background-color: #CCEAF7;
  border: none;
  border-radius: 30px;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  opacity: 0; /* Hidden initially */
  transform: translateY(0); /* Default state */
  transition: all 0.3s ease-in-out;
  cursor: default; /* Change cursor to default */

}

/* Hover effect */
.service-button:hover {
  background-color: #1e4356;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: default; /* Change cursor to default */

}

.service-button:hover i {
  color: #fff;
}

.ps-lg-5{
  padding-bottom: 1.5%;
}

/* Responsive layout adjustments */
@media (max-width: 768px) { /* For tablets */
  
  .service-button-list {
    grid-template-columns: repeat(1, 1fr); /* One column */
    gap: 15px; /* Reduced spacing */
  }

  .service-button {
    font-size: 14px; /* Slightly smaller text */
    padding: 10px 15px;
  }
}

@media (max-width: 480px) { /* For mobile devices */
  .service-button-list {
    gap: 10px; /* Even tighter spacing */
  }

  .service-button {
    font-size: 12px; /* Smaller text for mobile */
    padding: 8px 12px;
  }
}

/* Individual animation directions */
@keyframes slide-up {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-down {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-left {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-right {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Attach animations to specific classes */
.animate-up {
  animation: slide-up 0.6s ease-in-out forwards;
}

.animate-down {
  animation: slide-down 0.6s ease-in-out forwards;
}

.animate-left {
  animation: slide-left 0.6s ease-in-out forwards;
}

.animate-right {
  animation: slide-right 0.6s ease-in-out forwards;
}

/* Stagger animation delays for better visual impact */
.service-button:nth-child(1) {
  animation-delay: 0.1s;
}

.service-button:nth-child(2) {
  animation-delay: 0.2s;
}

.service-button:nth-child(3) {
  animation-delay: 0.3s;
}

.service-button:nth-child(4) {
  animation-delay: 0.4s;
}

.service-button:nth-child(5) {
  animation-delay: 0.5s;
}


 

/* Responsive Adjustments for Counters */
@media (max-width: 767.98px) {
  .counter-box {
    flex: 1 1 100%; /* Full width on small screens */
    padding: 15px; /* Adjust padding */
  }
 
  .counter-box i {
    font-size: 28px; /* Smaller icon for mobile */
  }
 
  .counter-box .counter {
    font-size: 24px; /* Smaller counter number for mobile */
  }
 
  .counter-box p {
    font-size: 14px; /* Smaller text for mobile */
    font-weight: 300;
    font-family: sans-serif;
    margin-top: 10px;
  }
 
}

/******* contact us page css by dhiraj start ******/

/*--------------------------------------------------------------
# Dhiraj Contact Section Updated CSS
--------------------------------------------------------------*/
/* Styling for the new container around the existing boxes */
.info-container {
  position: relative; /* To enable absolute positioning of any new box */
  background-color: #fff; /* Optional background color */
  padding: 20px; /* Optional padding */
  border-radius: 20px; /* Optional rounded corners */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional box shadow */
}
 
/* Existing Boxes Styling */
.info-item {
  padding: 13px;
  border-radius: 20px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.info-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2);
}
.info-item i {
  font-size: 28px;
  color: #1e90ff;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
.info-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.info-item:hover i,
.info-item:hover h3 {
  color: #0073e6;
}
 
/* Other Styles for Contact Form and Section */
#contact {
  padding: 60px 0;
  background-color: #fff;
}
.php-email-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 16px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.php-email-form button[type="submit"] {
  background-color: #1e4356;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-us-popover button:hover {
  background-color: #28a745; /* Change to green on hover */
}
 
/* Map Styling */
#contact iframe {
  border-radius: 2px;
  transition: transform 0.3s ease;
}



/******* contact us page css by dhiraj end ******/

/***** info from arjun *******/

/* Info Fact*/
.info-wrap {
  border-radius: 25px;
  box-shadow: 0px 0px 20px rgba(170, 31, 31, 0.873);
  padding: 30px;
  height: 100%;
  position: relative;
  background: #f9f9f9;
  width: 100%;
  padding: 45px 0 15px 0;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  padding: 30px 0 25px 0;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: rgba(30, 30, 209, 0.768) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-bottom: none;
  transition: .3s;
}
 
 
.info-wrap .fact-item:hover {
  border-color: rgba(0, 0, 0, .1);
  box-shadow: none;
}
 
.info-wrap .fact-item img {
  max-height: 50px;
  margin-bottom: 15px;
}
 
.info-wrap .fact-item h2 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
}
 
.fact {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}
 
.fact .fact-item {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  padding: 30px 0 25px 0;
  text-align: center;
  background: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
  transition: .3s;
}
 
.fact .fact-item:hover {
  border-color: rgba(0, 0, 0, .1);
  box-shadow: none;
}
 
.fact .fact-item img {
  max-height: 50px;
  margin-bottom: 15px;
}
 
.fact .fact-item h2 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
}
