/**
* Template Name: Gp
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #F58520; /* 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. */
}

/* 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: #F58520; /* 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: #F58520; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

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

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

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

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

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

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

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

}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message,
.php-email-form .sent-message,
.php-email-form .loading {
  display: none;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 6px;
}

/* ERROR MESSAGE */

/* SUCCESS MESSAGE */
.php-email-form .sent-message {
  background: #059652;
  color: #ffffff;
  text-align: center;
}

/* LOADING STATE */
.php-email-form .loading {
  background: var(--surface-color);
  text-align: center;
  color: var(--accent-color);
}

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

/* SPINNER ANIMATION */
@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


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

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global whatsapp icon
--------------------------------------------------------------*/
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  cursor: pointer;
}
.whatsapp-float img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}
.whatsapp-float img:hover {
  transform: scale(1.2);
}

/* Modal Styling */
.modal {
  display: none;  /* hide by default */
  position: fixed; 
  z-index: 2000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  padding: 15px;
}


.modal-content {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease;
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0B1F3B;
}

.modal-content p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #333;
}

/* Inputs */
.modal-content input {
  width: 100%;
  padding: 12px 15px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

/* Button */
.modal-content button {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 12px 25px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  transition: background 0.3s;
}

.modal-content button:hover {
  background-color: #0B1F3B;
}

/* Close Button */
.close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* Responsive for small screens */
@media (max-width: 480px) {
  .modal-content {
    padding: 20px 15px;
  }
  .modal-content h3 {
    font-size: 20px;
  }
  .modal-content input {
    font-size: 13px;
    padding: 10px 12px;
  }
  .modal-content button {
    font-size: 14px;
    padding: 10px 15px;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/


.header {
  background: #ffffff;
  height: 80px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  z-index: 999;
}
.header .logo img {
  max-height: 45px;
  border-radius: 50%; /* makes it fully circular */
  object-fit: cover;  /* ensures image scales nicely */
}


.header .sitename {
  font-size: 30px;
  font-weight: 700;
  margin-left: 5px;
  color: #0f1b31;
  margin-top: 12px;
}
.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}
/* ===============================
   NAV MENU
================================ */

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

.navmenu > ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.navmenu a {
  font-size: 15px;
  font-weight: 500;
  color: #0f1b31;
  text-decoration: none;
  padding: 10px 0;
  transition: 0.3s;
}

.navmenu a:hover,
.navmenu .active {
  color: var(--accent-color);
}

/* ===============================
   DROPDOWN
================================ */

.navmenu .dropdown {
  position: relative;
}

.navmenu .dropdown > a i {
  font-size: 12px;
  margin-left: 6px;
}

.navmenu .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* ===============================
   MEGA MENU INNER SPACING FIX
================================ */

/* Mega menu white container */
.navmenu .dropdown > .mega-menu {
  padding: 40px 45px;        /* 🔥 inner breathing space */
  row-gap: 25px;             /* vertical spacing */
  column-gap: 45px;          /* column separation */
}

/* Each column wrapper */
.navmenu .mega-menu > li {
  padding-top: 6px;
}

/* Headings spacing */
.navmenu .mega-menu h4 {
  margin-bottom: 12px;
  font-size: 18px;
}
.navmenu .mega-menu h4  a {
  margin-bottom: 12px;
  font-size: 18px;
}

/* Bullet list spacing */
.navmenu .mega-menu ul {
  margin-top: 6px;
  padding-left: 18px;
}

/* Bullet items gap */
.navmenu .mega-menu ul li {
  margin-bottom: 8px;
}
/* ===============================
   MEGA MENU CENTER ALIGN FIX
================================ */

@media (min-width: 1200px) {

  /* Dropdown parent reference */
  .navmenu .dropdown {
    position: relative;
  }

  /* Center mega menu relative to header container */
  .navmenu .dropdown > .mega-menu {
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    right: auto;
      top: calc(100% + 18px); 
  }

  /* On hover – smooth settle */
  .navmenu .dropdown:hover > .mega-menu {
    transform: translateX(-50%) translateY(0);
  }
}

/* ===============================
   MEGA MENU
================================ */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 720px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  padding: 30px;
  display: flex;
  gap: 40px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 99;
}

.mega-menu > li {
  list-style: none;
  min-width: 200px;
}

.mega-menu h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f1b31;
}

/* ===============================
   MEGA LIST
================================ */

.mega-list {
  padding-left: 18px;
  margin: 0;
}

.mega-list li {
  list-style: disc;
  margin-bottom: 6px;
}

.mega-list li a {
  font-size: 14px;
  color: var(--nav-dropdown-color);
}

.mega-list li a:hover {
  color: var(--nav-dropdown-hover-color);
}

/* ===============================
   IT PROFESSIONAL SERVICES SPLIT
================================ */

.mega-split {
  display: flex;
  gap: 36px;
}

.mega-split .mega-list {
  margin: 0;
}

/* ===============================
   BUTTON
================================ */

.btn-getstarted {
  background:#0B1F3B ;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-getstarted:hover {
  background: #fff;
  color: black;
}

/* ===============================
   MOBILE NAV
================================ */

.mobile-nav-toggle {
  font-size: 26px;
  cursor: pointer;
  color: #0f1b31;
  display: none;
}

@media (max-width: 1199px) {

  .mobile-nav-toggle {
    display: block;
  }

  .navmenu > ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .navmenu ul.show {
    display: flex;
  }

  .mega-menu {
    position: static;
    width: 100%;
    min-width: auto;
    box-shadow: none;
    padding: 15px 0;
    flex-direction: column ;
    gap: 20px;
     max-height: 60vh; /* or 70vh depending on your layout */
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mega-split {
    flex-direction: column;
    gap: 0;
  }
   /* Hide desktop button */
  .btn-getstarted {
    display: none;
  }
   /* Show menu when hamburger clicked */
  body.mobile-nav-active #navmenu > ul {
    display: flex;
  }
    /* Dropdown click support */
  .navmenu .dropdown > ul {
    display: none;
  }
   .navmenu .dropdown.active > ul {
    display: block;
  }
    .desktop-only {
    display: none; /* hide navbar button */
  }

  .mobile-only {
    display: block; /* show menu button */
  }
  .mobile-contact .btn-getstarted {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

}
.loading,
.sent-message {
  display: none;
}

/*-------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/


.footer {
  position: relative;
  background: #ffffff;
  color: #333;
  font-size: 14px;
  overflow: hidden;
}

/* Background Image (HTML img) */
.footer-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.50; /* image soft rahe */
  z-index: 0;
}

/* Footer content above image */
.footer .footer-top,
.footer .copyright {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Footer top spacing */
.footer .footer-top {
  padding: 60px 0;
}

/* Logo */
.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0B1F3B;
}

/* Paragraphs */
.footer p {
  color: #555;
}

/* Headings */
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 12px;
  color: #0B1F3B;
}

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

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

.footer .footer-links ul i {
  margin-right: 6px;
  font-size: 12px;
  color: #0B1F3B;
}

.footer .footer-links ul a {
  color: #555;
  transition: 0.3s;
}

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

/* Social icons */
.footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B1F3B;
  background: rgba(37, 99, 235, 0.08);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: #0B1F3B;
  color: #fff;
}

/* Newsletter */
.footer .footer-newsletter p {
  color: #666;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 20px;
  padding: 6px 8px;
  display: flex;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: none;
  width: 100%;
  padding: 6px;
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: none;
  padding: 0 20px;
  background: #0B1F3B;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: #0B1F3B;
}

/* Copyright */
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid #eee;
}

.footer .copyright p {
  margin: 0;
  color: #777;
}


/*--------------------------------------------------------------
# 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;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #0B1F3B;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: white;
  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);
  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;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0B1F3B;
  position: relative;
}

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

.section-title p {
  color: #0B1F3B;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero Section Base */
.hero {
  width: 100%;
  min-height: 0vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; /* for text and image side by side */
  padding: 100px 50px;
  overflow: hidden;
  margin-top: 70px;
  flex-wrap: wrap; /* allows items to wrap on smaller screens */
}

/* Remove dark overlay */
.hero:before {
  display: none;
}

/* Typography */
.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 900px;
}
.highlight-orange {
  color: #F58520;
}
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #555;
  margin-bottom: 35px;
  max-width: 550px;
}

/* Primary Button */
.btn-ai-consultation {
  display: inline-block;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: #0B1F3B;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ai-consultation:hover {
  background: white;
  color: black;
  box-shadow: 0 8px 20px rgba(0, 139, 226, 0.3);
}

/* Mini Features */
.feature-icon i {
  font-size: 26px;
  margin-right: 15px;
  background: linear-gradient(
    135deg,
    #F58520 0%,
    #F58520 25%,
    #86D8D0 55%,
    #0F1B31 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mini-feature-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: black;
}
.mini-feature-item p {
  font-size: 13px;
  color: #777;
}

/* Image Styling */
.hero-robot-img {
  max-width: 100%; /* constrain image width to container */
  height: auto; /* maintain aspect ratio */
  animation: float 6s ease-in-out infinite;
  flex-shrink: 0; /* prevent image from shrinking too much */
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero {
    padding: 80px 30px;
  }
}

@media (max-width: 991px) {
  .hero {
    flex-direction: column; /* stack text above image */
    text-align: center;
    padding: 60px 20px;
  }
  .hero-title, .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-robot-img {
    max-width: 80%; /* reduce image size on tablets */
    margin-top: 30px;
  }
  .hero-mini-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .hero-subtitle {
    font-size: clamp(14px, 4vw, 18px);
  }
  .hero-robot-img {
    max-width: 90%;
  }
  .btn-ai-consultation {
    width: 100%;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# banner Section
--------------------------------------------------------------*/
.cards-section {
  position: relative;
  width: 100%;
  min-height: 45vh;
  padding: 0 20px;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -30px;

}

/* Background Image */
.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Hide background image on mobile */
@media (max-width: 768px) {
  .section-bg {
    display: none;
  }
}

/* Content */
.cards-section .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Grid */
.cards-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Card */
.cards-grid .card {
  background: linear-gradient(135deg, #ffffff, #bad2ee);
  backdrop-filter: blur(8px);
  color: #0B1F3B;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: none;
  margin-top: -40px;
  padding: 15px; /* added padding for better mobile scaling */
  text-align: center;
}

/* Icon */
.cards-grid .card i {
  font-size: 30px;
  color: #F58520;
  transition: 0.3s;
}

/* Hover */
.cards-grid .card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.cards-grid .card:hover i {
  color: #0B1F3B;
}

/* ========== Responsive ========== */

/* Large screens */
@media (max-width: 1200px) {
  .cards-grid .card {
    width: 160px;
    height: 160px;
  }
  .cards-grid .card i {
    font-size: 32px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .cards-grid {
    gap: 20px;
  }
  .cards-grid .card {
    width: 150px;
    height: 150px;
    font-size: 15px;
  }
  .cards-grid .card i {
    font-size: 30px;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .cards-grid {
    gap: 18px;
  }
  .cards-grid .card {
    width: 130px;
    height: 130px;
    font-size: 14px;
    padding: 20px;
  }
  .cards-grid .card i {
    font-size: 28px;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
   .cards-grid {
    flex-direction: column;       /* stack vertically */
    align-items: center;          /* center cards */
    gap: 25px;                    /* spacing between cards */
    padding: 20px 0;              /* extra spacing top/bottom */
  }

  .cards-grid .card {
    width: 90%;                   /* fill most of mobile screen */
    max-width: 250px;             /* optional max width */
    height: auto;                 /* auto height for text wrap */
    padding: 30px 20px;           /* inner padding */
    margin-top: 0;                /* remove negative margin */
  }

  .cards-grid .card i {
    font-size: 32px;
  }

  .cards-grid .card p,
  .cards-grid .card h5 {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* About Section */
.about-simple {
  padding: 90px 20px; /* added side padding for small screens */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* allow stacking on mobile */
  gap: 40px;
}

/* Text Content */
.about-content {
  max-width: 550px;
}

.about-title {
  font-size: clamp(28px, 5vw, 3rem); /* responsive */
  font-weight: 700;
  color: #0B1F3B;
  margin-bottom: 15px;
}

.about-title span {
  color: #F58520;
}

.about-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #555;
  margin: 10px 0;
}

.about-desc {
  color: #666;
  max-width: 520px;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
}

/* Image */
.about-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  flex-shrink: 0;
  max-height: 500px;
  object-fit: cover;
}

/* Services Icons Section */
.services-icons {
  padding: 80px 20px; /* responsive padding */
  background: #fff;
}

.services-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-title h2 {
  color: #0B1F3B;
  font-size: clamp(24px, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.why-title p {
  color: #6b7280;
  font-size: clamp(14px, 2vw, 18px);
  margin: 0;
}

.icon-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

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

.icon-box img {
  width: 42px;
  margin-bottom: 15px;
}

.icon-box h5 {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  color: #0B1F3B;
  line-height: 1.4;
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .about-simple {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .about-simple {
    flex-direction: column; /* stack image and text */
    text-align: center;
    align-items: center;  
    justify-content: center;
  }
    .about-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
    .about-content {
    margin: 0 auto;
  }
  .about-content, .about-img {
    max-width: 100%;
  }
  .services-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
   .about-simple {
    padding: 40px 15px; /* reduce top & bottom space */
  }
  .about-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  .about-subtitle {
    font-size: clamp(14px, 4vw, 18px);
  }
  .about-desc {
    font-size: clamp(13px, 3vw, 16px);
  }
  .services-icon-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .icon-box {
    padding: 30px 15px;
  }
  .icon-box img {
    width: 36px;
  }
}

/*--------------------------------------------------------------
# counter Section
--------------------------------------------------------------*/
.counter-section {
  position: relative;
  width: 100%;
  padding: 60px 20px; /* more padding for mobile */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background image */
.counter-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Counter container */
.counter-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 40px; /* spacing between counters */
}

/* Individual counter */
.counter-item {
  text-align: center;
  margin: 10px 20px;
}

/* Gradient numbers */
.counter-number {
  font-size: clamp(32px, 6vw, 48px); /* responsive font */
  font-weight: 800;
  color: #0F1B31;
  margin-bottom: 5px;
}

/* Label */
.counter-label {
  font-size: clamp(14px, 2vw, 16px); /* responsive font */
  font-weight: 600;
  color: black;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .counter-section .container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .counter-section .container {
    flex-direction: column; /* stack counters vertically */
    align-items: center;
    gap: 20px;
  }
  .counter-number {
    font-size: clamp(28px, 7vw, 40px);
  }
  .counter-label {
    font-size: clamp(12px, 3vw, 16px);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  position: relative;
  padding: 60px 0;
  overflow: hidden; 
}

/* Section Background Image */


/* Heading */
.features h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features h2 .black-text {
  color: #0B1F3B;
}

.features h2 .gradient-text {
  color: #0B1F3B;
 
}


.features .subheading {
  font-size: 18px;
  color: #5f5e5e;
  margin-bottom: 50px;
}

/* Feature Cards */
.features-item {
  position: relative;
  height: 450px;       /* increased height */
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2;          /* above section bg */
}

.features-item:hover {
  transform: translateY(-5px);
}

/* Background Image for Cards */
.feature-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.features-item:hover .feature-bg-img {
  transform: scale(1.1);
}

/* Overlay */
.feature-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 2;
  transition: background 0.3s ease;
}

.features-item:hover .feature-overlay {
  background: linear-gradient(135deg, #F58520, #86D8D0, #0F1B31);
}

/* Content */
.feature-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* bottom */
  height: 100%;
  text-align: left;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.feature-content p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* Services Section */
.services {
  margin-top: 50px;
}

/* Service Item Headings */
.services .service-item h3 {
  color: #1B315D;
  transition: color 0.3s;
}
.services .service-item:hover h3,
.services .service-item:hover p {
  color: #fff;
}

/* Services Box */
.services-box {
  border-radius: 18px;
  padding: 30px;
  margin-top: -60px;
}

/* Wrapper: flex layout */
.services-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: flex-start; /* ensures right content aligns top */
}

/* LEFT TABS */
.services-tabs-left {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px; /* prevent collapsing */
  flex-shrink: 0;
}

/* Tab Buttons */
.tab-btn {
  background:
    radial-gradient(
      circle at top left,
      rgba(56, 189, 248, 0.18),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(56, 189, 248, 0.22),
      transparent 65%
    ),
    #ffffff;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  padding: 14px 18px;
  text-align: left;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}
.tab-btn:hover,
.tab-btn.active {
  background: #0B1F3B;
  color: white;
}

/* RIGHT CONTENT */
.services-tabs-right {
  width: 70%;
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  min-width: 280px;
  flex-grow: 1; /* ensures it fills remaining space */
}

/* Tab content */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: clamp(24px, 4vw, 40px); /* responsive font */
  font-weight: 900;
  margin-bottom: 15px;
  color: #0B1F3B;
}

.tab-content p {
  color: #858687;
  max-width: 100%;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
}

/* Links inside content */
.link-item {
  text-decoration: underline;
  color: #858687;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.2s;
  font-size: clamp(14px, 2vw, 18px);
}
.link-item:hover {
  background: rgba(0, 123, 255, 0.1);
  text-decoration: none;
}
.link-item i {
  transition: transform 0.2s;
}
.link-item:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */

/* Tablet */
@media (max-width: 991px) {
  .services-wrapper {
    flex-direction: column; /* stack tabs and content */
    gap: 25px;
  }
  .services-tabs-left,
  .services-tabs-right {
    width: 100%;
    min-width: unset; /* full width on smaller screens */
  }
  .services-tabs-right {
    padding: 30px;
  }
  .tab-content h3 {
    font-size: clamp(20px, 4vw, 32px);
  }
  .tab-content p {
    font-size: clamp(14px, 2.5vw, 16px);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-wrapper {
    gap: 15px;
  }
  .services-tabs-left {
    flex-direction: row; /* horizontal scroll tabs */
    overflow-x: auto;
    gap: 10px;
  }
  .tab-btn {
    flex: 0 0 auto; /* prevent shrinking */
    padding: 10px 14px;
    font-size: 14px;
  }
  .services-tabs-right {
    padding: 20px;
  }
  .tab-content h3 {
    font-size: clamp(18px, 5vw, 28px);
  }
  .tab-content p {
    font-size: clamp(12px, 3vw, 16px);
  }
  .link-item {
    font-size: clamp(12px, 3vw, 16px);
    padding: 5px 8px;
  }
}

/* Optional: smooth scroll for bullet links */
.bullet-grid a {
  display: block;
}


/*--------------------------------------------------------------
# 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;
  background-color: #0B1F3B;
  color: white;
}

.call-to-action .cta-btn:hover {
  background: #fff;
  color: black;
  
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

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

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

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

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

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

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

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

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

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

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

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

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

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 20px;
  background-color: #f7f9fc;
}

/* Section Heading */
.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0B1F3B;
  margin-top: 30px;
}

/* Info Box */
.info-box {
  background: #fff;
  padding: 70px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);

}

.info-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0B1F3B;

}

.info-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Info Items */
.info-item i {
  font-size: 1.3rem;
  color: #fff;
  background: #0B1F3B;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin-right: 15px;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.info-item p {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 0;
}

/* Form Wrapper */
.form-wrapper {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Form Inputs */
.php-email-form input,
.php-email-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.php-email-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Button */
.php-email-form button {
  background: #0B1F3B;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.php-email-form button:hover {
  background: #091a30;
}

/* Google Map */
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  
  .info-box, .form-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 15px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.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: 15px;
  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 .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}