/* Fonts */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* ensures text appears immediately */
}

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: var(--default-font);
  --nav-font: var(--default-font);
}


: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: #003e6f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc20e; /* 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: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --bs-heading-color:#003e6f;
}

/* 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: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc20e; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc20e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

p {
  text-align: justify;
}

.toggle-dropdown {
    width: 13px;
    height: 13px;
    margin-left: 5px;
    font-weight: 700;
  }

:focus, :focus-visible { outline: none;}

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

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

.blue-background {
  --background-color: #003e6f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
.image-hover {
  position: relative;
  overflow: hidden;
  border-radius:5px;
}

.image-hover img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease, filter 0.6s ease; 
  border-radius:5px;
}
.image-hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 20px;
}

.image-hover:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.image-hover:hover::after {
  opacity: 1;
}


body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 18px;

}

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

a:hover { 
  text-decoration: none;
}

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

.accent-background {
  background-color: var(--dar);
}

/* 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);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 18px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #000;
}


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

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

.footer .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .logo img {
 max-width: 150px;
 height: auto;
}

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

.footer p { 
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 40%)
}

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

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

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


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

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

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

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


.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline-block;
  line-height: 1;
  position: relative;
  padding-left: 18px;
}

.footer .footer-links ul a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
}

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

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

.footer .copyright {
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 16px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  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: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top svg {
  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;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  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%);
}

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


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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  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;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/hero-bg.webp") center center / cover no-repeat;
  background-attachment: scroll; /* change to fixed for parallax effect */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  z-index: 1;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color)
}


.hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

.hero-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


.icon-box-item {
  min-width: 230px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.image-hover:hover .experience-badge {
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


.image-hover .experience-badge .experience-number {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.image-hover .experience-badge .experience-text {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

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

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--heading-color);
  margin-right: 20px;
  line-height: 0;
}

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--heading-color);
  align-self: flex-start;
  line-height: 1.2;
}

.features .features-item p {
  font-size: 18px;
  color: var(--default-color);
  margin: 0;
}

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/

.products-slider {
  position: relative;
  padding: 40px 0;
}

.products-slider .swiper-slide {
  display: flex;
  justify-content: center;
  cursor:pointer;
}

.products-slider .swiper-slide .overlay h3 {
  font-size: 22px;
  margin: 0;
}

.products-slider .swiper-slide .overlay a{
  color: var(--accent-color);
  font-size: 18px;
  padding: 8px 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
  display: inline-block;
}

.products-slider .swiper-slide .overlay a:hover{
  background-color: var(--accent-color);
  color: var(--nav-dropdown-color);
}

/* Navigation container */
.products-slider .swiper-nav {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Both buttons */
.products-slider .swiper-button-next,
.products-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background-color: var(--contrast-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15); 
}

.products-slider .swiper-button-next svg,
.products-slider .swiper-button-prev svg {
  width: 28px;
  height: 28px;
}

/* Hover */
.products-slider .swiper-button-next:hover,
.products-slider .swiper-button-prev:hover {
  background-color: var(--accent-color, #ffb400);
  color: #003e6f; 
}

/* Position edges */
.products-slider .swiper-button-prev {
  margin-left: -10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.products-slider .swiper-button-next {
  margin-right: -10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Remove default Swiper arrows */
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.products .product-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;  
}

.products .product-content {
  position: relative;
  overflow: hidden;
  text-align: center;
 background-color: #fff;
}

/* Product image transition */
.products .product-content img {
  width: 100%;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.products .product-title {
  font-size: 22px;
  text-transform: uppercase;
  color: var(--default-color);
  margin-top: 15px;
  transition: color 0.3s ease;
}

/* Overlay info box */
.products .product-content .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.products .product-content .overlay-content {
  text-align: center;
  color: #fff;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.products .product-content .overlay-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.products .product-content .overlay-content p {
  text-align: center;
}


/* Hover effects */
.products .product-content:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.products .product-content:hover .product-title {
  opacity: 0;
  visibility: hidden;
}


.products .product-content:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.products .product-content:hover .overlay-content {
  opacity: 1;
  transform: translateY(0);
}


.primary-button {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
  background-color: transparent;
}

.primary-button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-bottom: 15px;
  display: block;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 8px;
}

.stats .stats-item p {
  color: var(--accent-color);
  margin: 0;
  font-family: var(--heading-font);
  font-size: 20px;
}

/*--------------------------------------------------------------
# Industry Section
--------------------------------------------------------------*/
.industry .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.industry .card .card-img {
  position: relative;
  overflow: hidden;
}

.industry .card .card-img img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* 🔹 Animated Overlay (slides diagonally) */
.industry .card .overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.6s ease;
  transform: skewX(-15deg);
}

.industry .card .overlay h3 {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.1s;
}

/* 🔹 Hover Effects */
.industry .card:hover .card-img img {
  transform: scale(1.2) rotate(3deg);
  filter: brightness(0.8);
}

.industry .card:hover .overlay {
  left: 0;
  opacity: 1;
  transform: skewX(0deg);
}

.industry .card:hover .overlay h3 {
  transform: translateY(0);
  opacity: 1;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

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

.contact .info-item svg {
  color: var(--heading-color);  
  font-size: 20px;
  width: 30px;
  height: 30px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 18px;
  text-align: left;
}

.contact .info-item p a {
  color: var(--default-color);
}

.contact .info-item p a:hover {
  color: var(--heading-color);
}

.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: var(--bs-border-radius);
  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 textarea:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder,
.contact .php-email-form select::placeholder {
  font-size: 16px;
  color: #555 !important; 
}

.contact .php-email-form select {
  appearance: none; /* Removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23003e6f' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem; /* Space for arrow */
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  color: var(--default-color);
  width: 100%;
  height: 45px;
  font-size: 15px;
  background-color: #fff;
  cursor: pointer;
}

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

.contact .php-email-form input[type=submit]:hover, .contact .php-email-form input[type=reset]:hover, input[type=submit]:hover {
  background-color: var(--nav-dropdown-color);
  color: var(--background-color);
}


.contact .php-email-form input[type=submit]:hover, .contact .php-email-form input[type=reset]:hover {
  background: var(--nav-dropdown-color);
  color: var(--background-color);
}

.contact iframe {
  height: 100%;
  width: 100%;
}

.form-group {
  margin: 10px 0; 
}

.modal-header {
  position: relative;
}

/* Custom color close button */
button.btn-close {
  background: var(--accent-color);
  opacity: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 20px;
  background-image: none; /* remove default × icon */
  color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}


button.btn-close::before {
  content: "×";
  color: var(--background-color);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

/* Hover effect */
button.btn-close:hover {
  background-color: var(--nav-dropdown-color);  
  transition: all 0.2s ease;
}



/* ---------- */
.btn-toggle {
  background: var(--accent, #ffc20e);
  color: var(--contrast-color);
  padding: 5px 11px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-left: 12px;
}
.btn-toggle:hover {
  background: #003e6f;
}


.inq-btn-home {
  position: fixed;
  top: 256px;
  left: 10px;
  width: 45px;
  height: 50px;
  z-index: 11
}

.inq-btn-home img {
  width: 40px ;
  height: auto;
}


.pop-img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Inner Pages Banner
--------------------------------------------------------------*/
body.inner-page .header {
  position: fixed !important;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 9);
  background-color: #000;
}
.inner-page .page-title {
  position: relative;
  background: url("../img/cta-bg.webp") center center / cover no-repeat;
  color: #fff;
  padding: 110px 0px 60px;
}

.inner-page .page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* overlay for readability */
  z-index: 0;
}

.inner-page .page-title .heading {
  position: relative;
  padding: 0px 0 24px;
  z-index: 1;
}

.inner-page .page-title .heading h1,
.inner-page .page-title .heading p {
  color: #fff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  justify-content: center;
}

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

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

.img-colarge {
  position: relative;
  height: 100%;  
}

.list-item {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}

/* parent must be positioned so the pseudo-element can be absolutely placed */
.list-item { 
  position: relative;
  padding-left: 28px;
  margin-top: 1rem;
}

/* list items */
.list-item li {
  position: relative;
  list-style: none;
  margin-bottom: 8px;
}

/* pseudo-element shows the svg */
.list-item li::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23003e6f' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16'/%3E%3Cpath d='m10.97 4.97-.02.022-3.473 4.425-2.093-2.094a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05'/%3E%3C/svg%3E");
}




.highlight .box-item {
  background-color: #fff;
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid #fff;
  height: 100%;
  cursor: pointer;
}

.highlight .box-item .icon {
  color: #fff;
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.highlight .box-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: clamp(18px, 4vw, 22px);
  transition: ease-in-out 0.3s;
}

.highlight .box-item p {
  margin-bottom: 0;
}

.highlight .box-item:hover {
  transform: translateY(-10px);
  border-color: var(--bs-heading-color);
}

/* Default collapsed view (3 lines) */
.toggle-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Expanded state */
.toggle-text.expanded {
  display: block;
}

/* Button styling */
.see-more-btn {
  color:var(--bs-heading-color);
  text-decoration: none;
  cursor: pointer;  
  display: inline-block;
  margin-top: 5px;
  font-weight: 700;
  background-color: transparent;
  border: 0;
}

.see-more-btn:hover {
  text-decoration: underline;
}

/* Faq */
.faq {
  padding: 60px 0;
}

.faq .faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq .faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 20px 40px 20px 20px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq .faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.faq .faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq .faq-item h4 {
  font-size: 16px;
}

.faq .faq-item .faq-content {
  display: none;
  margin-top: 25px;
  color: #555;
}

.faq .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-toggle {
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 18px;

  transition: transform 0.3s ease;
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
}

.faq .faq-item.faq-active h3 {
  color: var(--bs-heading-color);
}

.section-bg {
  background-color: #f9f9f9;
}

.error-icon {
  font-size: 5rem;
  color: var(--heading-color)
}

.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}



/* Responsive */
@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: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: 0;
    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: 16px;
    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 {
    background-color: var(--nav-dropdown-hover-color);
    color: var(--contrast-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;
  }
}


@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;
  }
}


/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .toggle-dropdown {   
    transition: transform 0.3s ease;
    filter: invert(0);   
  }
  
  .active .toggle-dropdown {
    transform: rotate(180deg);
  }
  
  
  section,
  .section {
    scroll-margin-top: 58px;
  }

  .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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    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;
  }
}



@media (max-width: 992px) {
  .inner-page .page-title .heading {
    padding: 0px 0 30px;
  }

  .hero {
    min-height: 70vh;
    padding: 100px 0 60px 0;
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .hero {
    min-height: 35vh;     
  }

  .hero h2 {
    font-size: 32px;
  }

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

@media (max-width: 767px) {
  .inner-page .page-title {   
    padding: 46px 0px 60px;
}

  .inner-page .page-title .heading {
    padding: 60px 0 50px;
  }
  .hero {
    min-height: 80vh;   
  }
  .header .logo img {
    max-width: 130px;   
  }
  .hero .icon-box {
    padding: 20px 0px;   
}

.footer-links {
  margin-top: 0;
}
section, .section { 
  padding: 40px 0;  
}

}

@media (max-width: 576px) {
  .inner-page .page-title {   
    padding: 110px 0px 60px;
}

  .inner-page .page-title .heading {
    padding: 0px 0 20px;
  }
  
  .hero {
    min-height: 43vh;   
  }

  .hero .btn-get-started {
     margin-top:20px   
  }
  
}