@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500;600;700;800&family=Nunito:wght@300;400;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CUSTOM VARIABLES --- */
:root {
  --font-heading: 'Barlow', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Color Palette */
  --primary-color: #4b61ff;
  --primary-light: #63d1f4;
  --primary-gradient: linear-gradient(135deg, #63d1f4, #4b61ff);
  
  --accent-color: #ff5e29;
  --accent-light: #ffa203;
  --accent-gradient: linear-gradient(to right, #ffa203, #ff5e29);
  
  --dark-color: #0f0f10;
  --text-muted: #696687;
  --bg-light: #f9fbfe;
  --bg-blue-light: #e9f7fe;
  --white: #ffffff;
  
  /* UI Elements */
  --shadow-sm: 0 4px 10px rgba(75, 97, 255, 0.04);
  --shadow-md: 0 10px 30px rgba(75, 97, 255, 0.08);
  --shadow-lg: 0 20px 40px rgba(75, 97, 255, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: inline-block;
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* Grid helper classes (Simplified Flexbox Grid) */
.col-12 { width: 100%; padding: 0 15px; }
.col-md-6 { width: 50%; padding: 0 15px; }
.col-lg-3 { width: 25%; padding: 0 15px; }
.col-lg-4 { width: 33.333%; padding: 0 15px; }
.col-lg-5 { width: 41.667%; padding: 0 15px; }
.col-lg-6 { width: 50%; padding: 0 15px; }
.col-lg-7 { width: 58.333%; padding: 0 15px; }
.col-lg-8 { width: 66.667%; padding: 0 15px; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-end { justify-content: flex-end; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }

/* Spacing Helpers */
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.pt-70 { padding-top: 70px; }
.pb-70 { padding-bottom: 70px; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-2 { padding-top: 0.8rem; padding-bottom: 0.8rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pt-4 { padding-top: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Sections background */
.bg-color { background-color: var(--bg-light); }
.bg-color-e9f7fe { background-color: var(--bg-blue-light); }

/* --- BUTTONS --- */
.default-btn {
  font-size: 15px;
  color: var(--white);
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 4px;
  background-image: var(--accent-gradient);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #ff5e29, #ffa203);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}

.default-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.default-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- TITLE AND HEADERS --- */
.section-title {
  max-width: 750px;
  margin: 0 auto 55px;
  text-align: center;
  position: relative;
}

.section-title span {
  font-size: 15px;
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--dark-color);
  position: relative;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- HEADER AREA --- */
.header-area {
  position: relative;
  z-index: 100;
  width: 100%;
}

/* Top Header */
.top-header {
  background-image: var(--primary-gradient);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}

.top-header a {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.header-left-content {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-left-content li {
  display: flex;
  align-items: center;
}

.header-left-content i {
  margin-right: 8px;
  font-size: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#country {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 20px;
  margin-left: 15px;
  padding: 4px 10px;
  outline: none;
  font-size: 13px;
  cursor: pointer;
}

#country option {
  color: var(--dark-color);
  background-color: var(--white);
}

.header-right-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-header .social-icon li a {
  width: 30px;
  height: 30px;
  border-radius: 4px; /* Square with rounded corners */
  background-color: #ffa203; /* Orange background */
  color: #ffffff; /* White icon */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.top-header .social-icon li a:hover {
  background-color: #ff5e29;
  color: #ffffff;
  transform: translateY(-2px);
}

.social-icon {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icon li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon li a:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Navigation Bar */
.navbar-area {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: fadeInDown 0.5s ease-in-out;
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.desktop-nav {
  padding: 12px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  height: 48px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-color);
  padding: 10px 0;
  position: relative;
}

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

.nav-link i {
  font-size: 12px;
  vertical-align: middle;
  margin-left: 2px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 200px;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 999;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: 100%;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  border-bottom: 1px dashed rgba(75, 97, 255, 0.05);
}

.dropdown-menu li a:last-child {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  color: var(--accent-color);
  background-color: rgba(255, 94, 41, 0.03);
  padding-left: 25px;
}

/* Mobile responsive navigation placeholder variables */
.mobile-responsive-nav,
.navbar-nav-mobile,
.navbar-overlay {
  display: none;
}

/* --- HERO SLIDER --- */
.hero-slider-area {
  position: relative;
  background-image: url(../images/slider/slider-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 800px;
  width: 100%;
}

.hero-slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slider-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slider-content h1 {
  font-size: 58px;
  font-weight: 700;
  color: #30296c;
  margin-bottom: 25px;
  line-height: 1.2;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition-delay: 0.2s;
}

.hero-slider-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-muted);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition-delay: 0.4s;
}

.slider-btn {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition-delay: 0.6s;
}

.hero-slider-item.active .hero-slider-content h1,
.hero-slider-item.active .hero-slider-content p,
.hero-slider-item.active .slider-btn {
  transform: translateY(0);
  opacity: 1;
}

.slider-img {
  text-align: center;
  transform: scale(0.9) translateX(50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition-delay: 0.3s;
}

.hero-slider-item.active .slider-img {
  transform: scale(1) translateX(0);
  opacity: 1;
}

.slider-img img {
  max-height: 480px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 73% 27% 24% 76% / 34% 26% 74% 66%;
  filter: drop-shadow(0 15px 30px rgba(75, 97, 255, 0.15));
}

/* Slider Dots */
.slider-dots {
  display: none;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(75, 97, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary-color);
  width: 28px;
  border-radius: 10px;
}

/* --- CARDS & GRID ITEMS --- */

/* Service & Product Single Card (Dynamic Hover Effect) */
.single-team-member, .single-services-box-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(75, 97, 255, 0.03);
  position: relative;
  z-index: 1;
}

.single-team-member img, .single-services-box-wrap img {
  width: 100%;
  transition: var(--transition);
}

.single-team-member:hover, .single-services-box-wrap:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(75, 97, 255, 0.15);
}

.single-team-member:hover img {
  transform: scale(1.05);
}

.svg-wrapper {
  text-align: center;
  transition: var(--transition);
}

.svg-wrapper svg {
  transition: var(--transition);
  margin: 0 auto;
  display: block;
}

.single-team-member:hover .svg-wrapper svg {
  transform: scale(1.1);
}

.team-content {
  padding: 25px;
}

.team-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.team-content span {
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.team-social {
  position: absolute;
  top: 15px;
  right: -50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
  z-index: 5;
}

.single-team-member:hover .team-social {
  right: 15px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 15px;
}

.team-social a:hover {
  background-image: var(--primary-gradient);
  color: var(--white);
}

/* Service Detail Cards with flips / overlays */
.single-services-box-wrap {
  perspective: 1000px;
  height: 380px;
}

.single-services {
  padding: 35px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  background: var(--white);
}

.single-services i {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: rgba(75, 97, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--primary-color);
}

.single-services i img {
  width: 36px;
}

.single-services h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.single-services p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Card Animation/Flip on hover (Double Content Overlay) */
.single-services-box-wrap .bottom-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--primary-gradient);
  color: var(--white);
  transform: translateY(100%);
  transition: var(--transition);
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.single-services-box-wrap .bottom-content h3 a {
  color: var(--white);
}

.single-services-box-wrap .bottom-content p {
  color: rgba(255, 255, 255, 0.9);
}

.single-services-box-wrap:hover .bottom-content {
  transform: translateY(0);
}

.single-services-box-wrap:hover .top-content {
  opacity: 0;
}

/* --- ABOUT SECTION SHAPES --- */
.about-img-three {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.about-img-three img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.about-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.about-shape-3 img {
  max-width: 120px;
  box-shadow: none;
}

/* --- WHY CHOOSE US --- */
.why-choose-us-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.why-choose-us-content ul {
  margin-top: 30px;
}

.why-choose-us-content li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 25px;
}

.why-choose-us-content li i {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 94, 41, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.why-choose-us-content li h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.why-choose-us-content li p {
  font-size: 14px;
}

.why-choose-us-img {
  position: relative;
}

.why-choose-us-img img {
  border-radius: var(--radius-md);
}

.why-choose-us-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: -1;
}

/* --- MEET OUR TEAM CAROUSEL --- */
.partner-area {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
}
.partner-area .section-title h2 {
  color: var(--white);
}

.partner-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 15px;
}

.partner-item {
  min-width: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.partner-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.partner-item img {
  max-height: 50px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

/* --- OUR PROCESS --- */
.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  width: 18%;
  z-index: 2;
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 3px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  transition: var(--transition);
}

.process-step:hover .process-icon {
  background-image: var(--primary-gradient);
  color: var(--white);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.process-step p {
  font-size: 12px;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: dashed rgba(75, 97, 255, 0.2);
  z-index: 1;
}

/* --- FAQ AREA --- */
.faq-area {
  position: relative;
}

.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(75, 97, 255, 0.05);
}

.accordion-title {
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}

.accordion-title i {
  font-size: 18px;
  color: var(--primary-color);
  transition: var(--transition);
}

.accordion-title.active {
  background-color: var(--bg-blue-light);
  color: var(--primary-color);
}

.accordion-title.active i {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  padding: 0 25px;
}

.accordion-content.show {
  max-height: 200px;
  padding: 20px 25px;
}

/* --- FOOTER WAVE ANIMATION --- */
.footer_wave {
  position: relative;
  width: 100%;
  height: 50px;
  background: var(--bg-light);
  overflow: hidden;
  line-height: 0;
}

.footer_wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
}

.wave {
  animation: wave 12s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  fill: var(--primary-light);
}

#wave1 {
  animation-delay: -2s;
  animation-duration: 7s;
  opacity: 0.7;
}

#wave2 {
  animation-delay: -4s;
  animation-duration: 9s;
  opacity: 0.5;
}

#wave3 {
  animation-duration: 11s;
}

@keyframes wave {
  0% { transform: translateX(0) translateZ(0) scaleY(1); }
  50% { transform: translateX(-25%) translateZ(0) scaleY(0.85); }
  100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

/* --- FOOTER --- */
.footer-area {
  background-color: #19213f;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.footer-area h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}

.footer-area h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.single-footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.import-link li {
  margin-bottom: 12px;
}

.import-link li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.import-link li a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.address li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.address li i {
  color: var(--accent-light);
  font-size: 16px;
  margin-top: 3px;
}

.address li a {
  color: rgba(255, 255, 255, 0.75);
}

.address li a:hover {
  color: var(--accent-light);
}

.copy-right-area {
  background-color: #121831;
  color: rgba(255, 255, 255, 0.6);
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copy-right-area a {
  color: var(--white);
  font-weight: 600;
}

.copy-right-area a:hover {
  color: var(--accent-light);
}

/* Go Top Area */
.go-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-image: var(--accent-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(255, 94, 41, 0.3);
  z-index: 100;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
}

.go-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 94, 41, 0.5);
}

/* Page Banner */
.page-title-area {
  background-image: var(--primary-gradient);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}

.page-title-content h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 12px;
}

.page-title-content ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.page-title-content ul li.active {
  color: rgba(255, 255, 255, 0.7);
}

/* Contact Area Styles */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  border: 1px solid rgba(75, 97, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  font-family: var(--font-body);
  transition: var(--transition);
  font-size: 15px;
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(75, 97, 255, 0.1);
}

textarea.form-control {
  resize: vertical;
}

.contact-info {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-info h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 25px;
}

.contact-info .address li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 15px;
}

.contact-info .address li:last-child {
  border-bottom: none;
}

.map-area {
  line-height: 0;
}

.map-area iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Custom styling for What we offer section with circular morphing icons */
.single-services.box {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  margin-bottom: 30px;
}

.single-services.box i {
  background-image: linear-gradient(to right, #ffa203, #ff5e29);
  display: inline-block;
  width: 150px;
  height: 150px;
  line-height: 150px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all ease 0.5s;
  animation: border-transform 5s linear infinite alternate forwards;
}

.single-services.box i img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.single-services.box i::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 120px;
  height: 120px;
  background-color: #fff8f0;
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.5s;
  animation: border-transform 10s linear infinite alternate forwards;
}

.single-services.box:hover i {
  background-image: linear-gradient(to right, #fff8f0, #fff8f0);
}

.single-services.box:hover i::after {
  background-image: linear-gradient(to right, #ffa203, #ff5e29);
}

.single-services.card-bg {
  box-shadow: none;
}

@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

/* Meet Our Team Custom Grid Cards */
.team-member-card {
  transition: var(--transition);
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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