/* Fonts */
:root {
  --heading-font: "Bricolage Grotesque";
  --nav-font: "Bricolage Grotesque";
}


/* 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: #364146;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #EF9D0F;
  /* 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: #000000;
  /* The default color of the main navmenu links */
  --nav-hover-color: #EF9D0F;
  /* 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: #EF9D0F;
  /* 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: #f6f8fa;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

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

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  /* max-height: 36px; */
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(90deg, #0C35EF, #EF9D0F);
  font-size: 14px;
  font-family: var(--nav-font);
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background:
    linear-gradient(#fff, #fff) padding-box,
    /* Inner background */
    linear-gradient(90deg, #EF9D0F, #002EFF) border-box;
  /* Border */
  border: 1px solid transparent;
  transition: background 0.3s ease, color 0.3s ease;
  color: #000000;
}

/* Optional: Make sure links look like buttons */
.hero-actions a.btn-primary {
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 10px;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
}

.header .btn-getstarted2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nav-font);
  padding: 6px 16px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: 1px solid #0C35EF;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-left: 10px;
}

.header.btn-getstarted2:hover {
  background-color: #000000;
}

.header.btn-getstarted2 img.icon {
  width: 20px;
  height: 20px;
}



@media (max-width: 1200px) {

  .header-main-div {
    flex-wrap: wrap;
    justify-content: center !important;
    row-gap: 10px !important;
  }

  .header-main-div .btn-getstarted,
  .header-main-div .btn-getstarted2 {
    /* width: 40% !important; */
  }

  /*  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  } */
}

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

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 20px;
  gap: 10px;
  /* Optional spacing between elements */
}


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




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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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



  .navmenu .megamenu {
    position: static;
  }

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

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

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

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

/* Mobile Navigation */
@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: relative;
    /* 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;
    top: 60px;
    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);
  }



  .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: white;
  font-size: 14px;
  position: relative;
  font-family: var(--nav-font);

}


.footer .footer-about .logo {
  line-height: 1;
   padding: 10px;
   align-items: center;

}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;

}

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

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

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



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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 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 Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# 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:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  font-family: var(--nav-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 120px 0 60px 0;
  overflow: hidden;
  background-color: #fff;
}

.overlay {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* Triangle overlays */
.triangle-1 {
  top: 20%;
  right: 3%;

}

.triangle-2 {
  bottom: -6%;
  /* right: 9%; */

  top: 174px;
}

/* Gradient overlays */
.gradient-1 {
  top: 24px;
  left: 284px;

}

.gradient-2 {
  bottom: 10%;
  right: 10%;
  width: 250px;
}

.gradient-3 {
  top: 50%;
  left: 60%;
  transform: translate(-10%, -60%);

}


.hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
}

.hero h1 span {
  background: linear-gradient(90deg, #EF9D0F, #002EFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* for Firefox */
  color: transparent;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--nav-font);
}

.hero .btn-get-started {
  margin-top: 20px;
  position: relative;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 10px;
  font-family: var(--heading-font), sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #333;
  background:
    linear-gradient(#fff, #fff) padding-box,
    /* Inner background */
    linear-gradient(90deg, #EF9D0F, #002EFF) border-box;
  /* Border */
  border: 1px solid transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero .btn-get-started:hover {
  background:
    linear-gradient(rgba(0, 47, 255, 0.05), rgba(0, 47, 255, 0.05)) padding-box,
    linear-gradient(90deg, #EF9D0F, #002EFF) border-box;
  color: #ffffff;
}




@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 100px 20px 60px 20px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 120%;
    text-align: center;
  }

  .hero p {
    text-align: center;
    font-size: 16px;
  }

  .hero .btn-get-started {
    display: block;
    margin: 20px auto 0 auto;
    font-size: 14px;
  }

  /* Overlays: scale down and reposition for tablet */
  .overlay {
    opacity: 0.5;
  }

  .triangle-1 {
    top: 10%;
    right: 5%;
    width: 60px;
  }

  .triangle-2 {
    top: 160px;
    left: 5%;
    width: 50px;
  }

  .gradient-1 {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
  }

  .gradient-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
  }

  .gradient-3 {
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 130px 16px 40px 16px;
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero .btn-get-started {
    font-size: 13px;
    padding: 10px 20px;
  }

  /* Overlays: reposition and resize for mobile */
  .triangle-1 {
    top: 12%;
    right: 0%;
    width: 100px;
  }

  .triangle-2 {
    top: 311px;
    left: 10%;
    width: 90px;
  }

  .gradient-1 {
    top: 133px;
    left: 30%;
    transform: translateX(-50%);
    width: 165px;
  }

  .gradient-2 {
    bottom: 47%;
    right: 5%;
    width: 215px;
  }

  .gradient-3 {
    top: 45%;
    left: 96%;
    transform: translate(-50%, -50%);
    width: 283px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 0px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

.clients p {
  font-family: var(--nav-font);
  font-size: 20px;

}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

.scroll-snap-x {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.scroll-snap-item {
  scroll-snap-align: start;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: #FAFBFF;
  padding: 40px;
  position: relative;
  z-index: 2;
  margin-left: -10%;
  /* Overlaps onto the image by 10% */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  /* Optional visual effect */
}

.about .content h3 {
  font-size: 24px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  font-family: var(--nav-font);
}

.about .content h4 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  font-family: var(--nav-font);
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

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

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/* Ensure image column stays behind */
.col-lg-6.d-flex.align-items-center {
  position: relative;
  z-index: 1;
}

/* Responsive fix: remove overlap on smaller screens */
@media (max-width: 991px) {
  .about .content {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# About Section2
--------------------------------------------------------------*/
.about2 .content {
  background-color: #FFF2DD;
  /* Solid background */
  padding: 40px;
  position: relative;
  z-index: 2;
  margin-right: -10%;
  /* Overlap onto the image on the right */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  /* Optional visual effect */
}

.about2 .content h3 {
  font-size: 24px;
  font-weight: 700;
  color: black;
  /* Adjust for contrast */
  text-transform: uppercase;
}

.about2 .content h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--nav-color);
  /* Adjust for contrast */
  text-transform: uppercase;
}

.about2 .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
  color: var(--nav-color);
  font-family: var(--nav-font);
}

.about2 .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--primary-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about2 .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about2 .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about2 .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/* Keep image behind the text if overlapping */
.col-lg-6.d-flex.align-items-center {
  position: relative;
  z-index: 1;
}

/* Responsive fix: remove overlap on smaller screens */
@media (max-width: 991px) {
  .about .content {
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  position: relative;
  background: url(../img/servicesbg.png) center no-repeat;
  background-size: cover;
  padding: 60px 0;
  width: 100%;
  display: block;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Overlay */
  z-index: 0;
}

.services .card {
  border: none;
  overflow: hidden;
  border-radius: 0px;
}

.services .card-body {
  padding: 0px 10px 15px 0px;
  height: 140px;
  /* or whatever works visually */
  overflow: hidden;
  /* prevents text overflow */
  display: flex;
  flex-direction: column;

}


.services .card-title {
  font-weight: bold;
  background-color: #0045ff;
  color: white;
  padding: 8px;
  margin-bottom: 0;
  font-family: var(--nav-font);
  width: 100%;
  font-weight: 400;
}


.services .card-text {
  color: #000;
  font-family: var(--nav-font);
  padding-left: 10px;
  padding: 10px;
  font-family: var(--nav-font);
  font-size: 16px;
}


.services .card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 145px 0px 0px 0px;
  padding: 10px;
}

.services .card img.card-icons-img {
  position: absolute;
  width: unset !important;
  height: unset !important;
  left: 10px !important;
  top: 10px !important;
  z-index: 999999;
  padding: unset !important;
  object-fit: contain !important;
  border-radius: unset !important;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: #11191F1A;

}

.contact h2 {
  font-family: var(--nav-font);
  color: #000000;
  font-size: 24px;
}

.contact p {
  font-family: var(--nav-font);
  font-size: 16px;
  color: black;
}


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

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

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

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  font-family: var(--nav-font);
}

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

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

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

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

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

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

.contact-box {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.left-box {
  position: relative;
  background: url(../img/form.jpg) center no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 400px;
  margin: 20px;
  overflow: hidden;
}

/* Overlay effect */
.left-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* This is the overlay color */
  z-index: 0;
}

/* Ensure content appears above overlay */
.left-box>* {
  position: relative;
  z-index: 1;
}

.linkedin-icon {
  color: white;
  font-size: 1.5rem;
}

.form-control::placeholder {
  font-size: 0.95rem;
}

.contact .detail {
  font-family: var(--nav-font);
  color: white;
}

.btn-custom {
  background-color: #EF9D0F;
  color: white;
  border: none;
  width: 100%;
  font-family: var(--nav-font);
}