@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Whisper&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Whisper&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}

:root {
  --primary-color: #07A5E2;
  --secondary-color: #f2184f;
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --bg-color: #fff;
  --second-bg-color: #f1f1f1;
  --text-color: #181d1c;
  --second-text-color: #f1f1f1;
  --header-color: #181d1c;
}

body {
  scroll-behavior: smooth;
}

.heading {
  font-size: 35px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5rem;
}

/* ==== up-right arrow animation ==== */
.up-arrow {
  display: inline-block;
  transition: transform 0.3s ease; /* Transition for smooth movement */
}

a:hover .up-arrow {
  transform: translate(5px, -5px); /* Moves the arrow along with the text */
}

/* =============================== Header Style ============================= */
header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 40px 9%;
  background-color: transparent;
  z-index: 100;
}

/* Change header styles when scrolling */
.header-scrolled {
  background-color: var(--header-color);
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

header .logo img {
  width: 70px;
}

header .logo .logo_name h1 {
  font-size: 20px;
  color: var(--second-text-color);
  text-transform: uppercase;
}

header .logo .logo_name p {
  font-size: 14px;
  color: var(--second-text-color);
}

header .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

header .nav-links .nav-link {
  display: flex;
  gap: 15px;
}

header .nav-links .nav-link a {
  text-decoration: none;
  color: var(--second-text-color);
  display: inline-block;
  /* text-transform: uppercase; */
  position: relative;
  padding: 5px 0;
}

header .nav-links .nav-link a::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--secondary-color);
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 0 50%;
}

header .nav-links .nav-link a:hover::before,
header .nav-links .nav-link a.active::before {
  transform: scale3d(1, 1, 1);
}

/* ========================== Mobile Menu Button =========================== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--second-text-color);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================== Mobile Menu Overlay =========================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================== Mobile Menu Container =========================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #181d1c 0%, #2a2a2a 100%);
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
}

.mobile-logo-text h2 {
  font-size: 20px;
  color: var(--second-text-color);
  margin: 0;
  font-weight: 600;
}

.mobile-logo-text p {
  font-size: 14px;
  color: var(--primary-color);
  margin: 0;
  font-weight: 400;
}


.mobile-menu-content {
  padding: 30px 0;
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-links {
  padding: 0 25px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: var(--second-text-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.mobile-nav-link:hover i {
  color: var(--primary-color);
  transform: translateX(5px);
}

.mobile-nav-link i {
  font-size: 18px;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-footer {
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.mobile-contact-info {
  text-align: center;
}

.mobile-contact-info p {
  color: var(--second-text-color);
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.mobile-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #0591c9);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(7, 165, 226, 0.3);
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 165, 226, 0.4);
}

/* ========================== Active Navigation Styles =========================== */
/* Active Navigation Link */
.nav-link a.active,
.mobile-nav-link.active {
  color: var(--primary-color);
}

/* ============================ Section Style ============================ */
section {
  width: 100%;
  min-height: 100vh;
  padding: 60px 9% 120px;
}

/* Page-specific sections should not have min-height: 100vh */
.page-header,
.success-stories,
.client-testimonials,
.cta-section,
.agency-hero,
.agency-services,
.agency-process,
.agency-team,
.agency-cta,
.about-hero,
.company-story,
.mission-vision,
.why-choose-us,
.about-stats,
.leadership-team,
.about-cta,
.contact-hero,
.contact-section,
.faq-section {
  min-height: auto !important;
}

/* ========================== Consistent Card Styling =========================== */
/* Ensure all cards across pages have consistent styling */
.story-card,
.service-card,
.mv-card,
.feature-card,
.team-member,
.leader-card,
.testimonial-card,
.contact-method,
.faq-item {
  transition: all 0.3s ease;
}

.story-card:hover,
.service-card:hover,
.mv-card:hover,
.feature-card:hover,
.team-member:hover,
.leader-card:hover,
.testimonial-card:hover,
.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Consistent icon styling */
.service-icon,
.mv-icon,
.feature-icon,
.method-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon:hover,
.mv-icon:hover,
.feature-icon:hover,
.method-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(7, 165, 226, 0.3);
}

/* Consistent button styling */
.btn,
.submit-btn,
.schedule_btn,
.mobile-cta-btn {
  transition: all 0.3s ease;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover,
.submit-btn:hover,
.schedule_btn:hover,
.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ========================== Home Style =========================== */
.home {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
  overflow: hidden;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(7,165,226,0.1)"/><path d="M10,0 L10,20 M0,10 L20,10" stroke="rgba(7,165,226,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
  opacity: 0.6;
  z-index: 1;
}

.home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(7, 165, 226, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(5, 145, 201, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(7, 165, 226, 0.05) 0%, transparent 50%);
  z-index: 2;
}

/* Video removed - using background pattern instead */


.home_content1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 6rem;
  position: relative;
  z-index: 3;
}

.home_content1 h1 {
  text-align: center;
  font-size: 50px;
  color: var(--second-text-color);
}

.home_content1 p {
  font-size: 16px;
  width: 100%;
  max-width: 1300px;
  text-align: center;
  color: var(--second-text-color);
  padding: 0 20px;
}

.home_content1 .home_btn {
  margin-top: 15px;
}

.home_content1 .home_btn a {
  background-color: var(--primary-color);
  color: var(--second-text-color);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}

.home_content1 .home_btn a:hover {
  background-color: #0591c9;
}

.home_content2 {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: row;
  gap: 60px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.home_content2 .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 40%;
  min-width: 300px;
  flex: 1;
}

.home_content2 .content h2 {
  color: var(--second-text-color);
  font-size: 20px;
}

.home_content2 .content h5 {
  color: var(--second-text-color);
  font-size: 14px;
}

.home_content2 .content p {
  color: var(--second-text-color);
  margin-top: 10px;
  font-size: 14px;
}

.home_content2 .content a {
  text-decoration: none;
  color: var(--second-text-color);
  margin-top: 15px;
  font-weight: 600;
}

/* Responsive Design Home */

/* Large Tablets and Small Laptops (1024px and below) */
@media (max-width: 1024px) {
  .home {
    gap: 6rem;
    padding: 80px 5% 80px;
  }
  
  .home_content1 {
    margin-top: 4rem;
  }
  
  .home_content1 h1 {
    font-size: 50px;
    line-height: 1.2;
  }
  
  .home_content1 p {
    font-size: 18px;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
  }
  
  .home_content1 .home_btn a {
    font-size: 18px;
    padding: 12px 24px;
  }
  
  .home_content2 {
    gap: 40px;
    flex-direction: column;
    align-items: center;
  }
  
  .home_content2 .content {
    width: 80%;
    max-width: 600px;
  }
  
  .home_content2 .content h2 {
    font-size: 20px;
  }
  
  .home_content2 .content h5 {
    font-size: 16px;
  }
  
  .home_content2 .content p {
    font-size: 15px;
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .home {
    gap: 4rem;
    padding: 60px 4% 60px;
  }
  
  .home_content1 {
    margin-top: 3rem;
  }
  
  .home_content1 h1 {
    font-size: 40px;
    line-height: 1.3;
    padding: 0 10px;
  }
  
  .home_content1 p {
    font-size: 16px;
    padding: 0 15px;
    line-height: 1.6;
  }
  
  .home_content1 .home_btn {
    margin-top: 20px;
  }
  
  .home_content1 .home_btn a {
    font-size: 16px;
    padding: 10px 20px;
  }
  
  .home_content2 {
    gap: 70px;
    padding: 0 10px;
  }
  
  .home_content2 .content {
    width: 100%;
    max-width: 500px;
  }
  
  .home_content2 .content h2 {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .home_content2 .content h5 {
    font-size: 15px;
  }
  
  .home_content2 .content p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .home_content2 .content a {
    font-size: 14px;
  }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .home {
    gap: 5rem;
  }
  
  .home_content1 {
    margin-top: 2rem;
  }
  
  .home_content1 h1 {
    font-size: 32px;
    line-height: 1.4;
    padding: 0 5px;
  }
  
  .home_content1 p {
    font-size: 14px;
    padding: 0 10px;
    line-height: 1.7;
  }
  
  .home_content1 .home_btn {
    margin-top: 25px;
  }
  
  .home_content1 .home_btn a {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .home_content2 {
    padding: 0 5px;
  }
  
  .home_content2 .content {
    width: 100%;
    max-width: 400px;
  }
  
  .home_content2 .content h2 {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .home_content2 .content h5 {
    font-size: 14px;
  }
  
  .home_content2 .content p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .home_content2 .content a {
    font-size: 13px;
  }
}

/* Very Small Mobile Devices (360px and below) */
@media (max-width: 360px) {
  .home {
    gap: 2.5rem;
    padding: 15px 2% 30px;
  }
  
  .home_content1 {
    margin-top: 1.5rem;
  }
  
  .home_content1 h1 {
    font-size: 28px;
    line-height: 1.5;
  }
  
  .home_content1 p {
    font-size: 13px;
    padding: 0 5px;
  }
  
  .home_content1 .home_btn a {
    font-size: 13px;
    padding: 7px 14px;
  }
  
  .home_content2 {
    gap: 20px;
  }
  
  .home_content2 .content h2 {
    font-size: 15px;
  }
  
  .home_content2 .content h5 {
    font-size: 13px;
  }
  
  .home_content2 .content p {
    font-size: 12px;
  }
  
  .home_content2 .content a {
    font-size: 12px;
  }
}

/* Landscape Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
  .home {
    gap: 2rem;
    padding: 20px 5% 30px;
  }
  
  .home_content1 {
    margin-top: 1rem;
  }
  
  .home_content1 h1 {
    font-size: 35px;
  }
  
  .home_content1 p {
    font-size: 15px;
  }
  
  .home_content2 {
    gap: 20px;
    flex-direction: row;
  }
  
  .home_content2 .content {
    width: 45%;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .home_video {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .home_video {
    display: none;
  }
  
  .home::before {
    background: linear-gradient(0deg, #181d1c 20%, rgba(24, 29, 28, 0.8) 100%);
  }
}

/* ========================== Header Responsive Design =========================== */

/* Large Tablets and Small Laptops (1024px and below) */
@media (max-width: 1024px) {
  header {
    padding: 30px 5%;
  }
  
  header .logo img {
    width: 60px;
  }
  
  header .logo .logo_name h1 {
    font-size: 18px;
  }
  
  header .logo .logo_name p {
    font-size: 12px;
  }
  
  header .nav-links .nav-link {
    gap: 20px;
  }
  
  header .nav-links .nav-link a {
    font-size: 14px;
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  header {
    padding: 20px 4%;
  }
  
  .desktop-nav {
    display: none !important;
  }
  
  .nav-links {
    display: none !important;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  header .logo img {
    width: 50px;
  }
  
  header .logo .logo_name h1 {
    font-size: 16px;
  }
  
  header .logo .logo_name p {
    font-size: 11px;
  }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
  header {
    padding: 15px 3%;
  }
  
  .desktop-nav {
    display: none !important;
  }
  
  .nav-links {
    display: none !important;
  }
  
  header .logo img {
    width: 45px;
  }
  
  header .logo .logo_name h1 {
    font-size: 15px;
  }
  
  header .logo .logo_name p {
    font-size: 10px;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
  
  .mobile-menu-header {
    padding: 15px 20px;
  }
  
  .mobile-nav-links {
    padding: 0 20px;
  }
  
  .mobile-menu-footer {
    padding: 20px;
  }
}

/* Very Small Mobile Devices (360px and below) */
@media (max-width: 360px) {
  header {
    padding: 12px 2%;
  }
  
  .desktop-nav {
    display: none !important;
  }
  
  .nav-links {
    display: none !important;
  }
  
  header .logo img {
    width: 40px;
  }
  
  header .logo .logo_name h1 {
    font-size: 14px;
  }
  
  header .logo .logo_name p {
    font-size: 9px;
  }
  
  .mobile-menu-header {
    padding: 12px 15px;
  }
  
  .mobile-nav-links {
    padding: 0 15px;
  }
  
  .mobile-nav-link {
    padding: 15px 0;
    font-size: 15px;
  }
  
  .mobile-menu-footer {
    padding: 15px;
  }
}

/* Landscape Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
  .mobile-menu-content {
    height: calc(100vh - 80px);
    padding: 20px 0;
  }
  
  .mobile-menu-header {
    padding: 15px 25px;
  }
  
  .mobile-nav-link {
    padding: 12px 0;
  }
}

/* ========================== Achievements Section =========================== */
.achievements {
  background-color: #f8f9fa;
  padding: 80px 9% 60px;
  min-height: auto;
}

.achievements_header {
  text-align: left;
  margin-bottom: 60px;
}

.achievements_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight_red {
  color: var(--secondary-color);
}

.achievements_subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}

.achievements_stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.stat_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat_dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.stat_dot.purple {
  background-color: #8b5cf6;
}

.stat_dot.red {
  background-color: var(--secondary-color);
}

.stat_dot.blue {
  background-color: var(--primary-color);
}

.stat_dot.yellow {
  background-color: #fbbf24;
}

.stat_dot.teal {
  background-color: #14b8a6;
}

.stat_number {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.stat_label {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
}

/* Responsive Design for Achievements */
@media (max-width: 1024px) {
  .achievements_stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .stat_number {
    font-size: 28px;
  }
  
  .achievements_title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .achievements_stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat_item {
    min-width: 150px;
  }
  
  .achievements_title {
    font-size: 20px;
  }

  .achievements_subtitle {
    font-size: 14px;
  }

  .stat_number {
    font-size: 20px;
  }
  
  .achievements {
    padding: 60px 5% 40px;
  }
}



/* ========================== Services Section =========================== */
.services {
  background-color: #fff;
  padding: 80px 9% 60px;
  min-height: auto;
}

.services_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.services_main_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
  max-width: 60%;
}

.red_dot {
  color: var(--secondary-color);
}

.services_subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  position: relative;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--text-color);
  width: fit-content;
  min-width: 200px;
}

.services_subtitle a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
 .services_subtitle a:hover {
  text-decoration: underline;
 }

.services_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.service_card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service_icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.service_icon.orange {
  background-color: #ff6b35;
}

.service_icon.yellow {
  background-color: #ffd23f;
}

.service_icon.green {
  background-color: #06d6a0;
}

.service_icon.blue {
  background-color: #118ab2;
}

.service_title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
  line-height: 1.3;
}

.service_description {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.services_footer {
  margin-top: 40px;
}

.services_footer p {
  font-size: 12px;
  color: var(--text-color);
  line-height: 1.6;
  text-align: justify;
  max-width: 100%;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
  .services_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .services_header {
    flex-direction: column;
    gap: 20px;
  }
  
  .services_main_title {
    max-width: 100%;
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .services_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .services_main_title {
    font-size: 20px;
  }
  
  .services {
    padding: 60px 5% 40px;
  }
}

/* ========================== Tech Stack Section =========================== */
.tech_stack {
  background-color: #f8f9fa;
  padding: 80px 9% 60px;
  min-height: auto;
}

.tech_stack_header {
  text-align: center;
  margin-bottom: 60px;
}

.tech_stack_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.tech_stack_description {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.tech_stack_scroll {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.tech_stack_container {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.tech_item {
  font-size: 20px;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
  padding: 15px 0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.tech_item:hover {
  transform: scale(1.05);
  font-weight: 600;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.tech_stack_scroll:hover .tech_stack_container {
  animation-play-state: paused;
}

/* Responsive Design for Tech Stack */
@media (max-width: 1024px) {
  .tech_stack_title {
    font-size: 24px;
  }
  
  .tech_stack_description {
    font-size: 16px;
  }
  
  .tech_item {
    font-size: 16px;
  }
  
  .tech_stack_container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .tech_stack_title {
    font-size: 20px;
  }
  
  .tech_stack_description {
    font-size: 14px;
  }
  
  .tech_item {
    font-size: 14px;
  }
  
  .tech_stack_container {
    gap: 25px;
  }
  
  .tech_stack {
    padding: 60px 5% 40px;
  }
}

/* ========================== Testimonials Section =========================== */
.testimonials {
  background-color: #fff;
  padding: 80px 9% 60px;
  min-height: auto;
}

.testimonials_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 60px;
}

.testimonials_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.testimonial_nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial_nav:hover {
  background-color: #d91e36;
  transform: scale(1.1);
}

.testimonials_carousel {
  display: flex;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
  height: 400px; /* Fixed height for carousel */
}

.testimonial_card {
  min-width: 100%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateX(100%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%; /* Fixed height for all cards */
  box-sizing: border-box;
}

.testimonial_card.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial_image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
  border: 4px solid var(--secondary-color);
}

.testimonial_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial_content {
  max-width: 600px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.testimonial_text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 25px;
  font-style: italic;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial_name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.testimonial_title {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.testimonial_dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

.dot:hover {
  background-color: var(--secondary-color);
  opacity: 0.7;
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
  .testimonials_title {
    font-size: 26px;
  }
  
  .testimonial_card {
    padding: 30px;
  }
  
  .testimonial_text {
    font-size: 16px;
  }
  
  .testimonial_name {
    font-size: 16px;
  }
}

/* ============================= How We Work Section ================================ */
.how_we_work {
  background-color: #f8f9fa;
  padding: 80px 9% 60px;
  min-height: auto;
}

.how_we_work_header {
  text-align: center;
  margin-bottom: 60px;
}

.how_we_work_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.how_we_work_subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  margin: 0;
}

.how_we_work_content {
  display: flex;
  align-items: center;
  padding: 0 3%;
  gap: 80px;
}

/* Process Visual - Target Graphic */
.process_visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.target_graphic {
  position: relative;
  width: 300px;
  height: 300px;
}

.target_circles {
  position: relative;
  width: 100%;
  height: 100%;
}

.target_outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border: 4px solid var(--secondary-color);
  border-radius: 50%;
  background-color: #fff;
}

.target_middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border: 3px solid var(--secondary-color);
  border-radius: 50%;
  background-color: #fff;
}

.target_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.ladders {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main_ladder {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 260px;
  background-color: var(--secondary-color);
  border-radius: 4px;
}

.main_ladder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -15px;
  width: 38px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 4px;
}

.main_ladder::after {
  content: '';
  position: absolute;
  top: 0;
  left: -15px;
  width: 38px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 4px;
  animation: ladderSteps 2s ease-in-out infinite;
}

@keyframes ladderSteps {
  0%, 100% { top: 0; }
  25% { top: 60px; }
  50% { top: 120px; }
  75% { top: 180px; }
}

.side_ladder {
  position: absolute;
  top: 40px;
  width: 6px;
  height: 200px;
  background-color: #fff;
  border: 2px solid var(--secondary-color);
  border-radius: 3px;
}

.side_ladder.left {
  left: 20%;
}

.side_ladder.right {
  right: 20%;
}

.side_ladder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -12px;
  width: 30px;
  height: 6px;
  background-color: #fff;
  border: 2px solid var(--secondary-color);
  border-radius: 3px;
}

/* Process Steps */
.process_steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step_item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step_number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step_content {
  flex: 1;
}

.step_title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: "Fredoka", sans-serif;
}

.step_description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.schedule_btn {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 20px;
}

.schedule_btn:hover {
  background-color: #d91e36;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(217, 30, 54, 0.3);
}

/* Responsive Design for How We Work */
@media (max-width: 1024px) {
  .how_we_work_content {
    flex-direction: column;
    gap: 50px;
  }
  
  .how_we_work_title {
    font-size: 24px;
  }
  
  .target_graphic {
    width: 250px;
    height: 250px;
  }
  
  .target_outer {
    width: 230px;
    height: 230px;
  }
  
  .target_middle {
    width: 150px;
    height: 150px;
  }
  
  .target_inner {
    width: 70px;
    height: 70px;
  }
  
  .main_ladder {
    height: 210px;
  }
  
  .side_ladder {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .how_we_work {
    padding: 60px 0;
  }
  
  .how_we_work_title {
    font-size: 22px;
  }
  
  .how_we_work_subtitle {
    font-size: 18px;
  }
  
  .step_item {
    padding: 20px;
  }
  
  .step_title {
    font-size: 10px;
  }
  
  .step_description {
    font-size: 14px;
  }
  
  .target_graphic {
    width: 200px;
    height: 200px;
  }
  
  .target_outer {
    width: 180px;
    height: 180px;
  }
  
  .target_middle {
    width: 120px;
    height: 120px;
  }
  
  .target_inner {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 5% 40px;
  }
  
  .testimonials_title {
    font-size: 18px;
  }
  
  .testimonials_container {
    gap: 20px;
  }
  
  .testimonial_nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .testimonial_card {
    padding: 25px;
  }
  
  .testimonial_image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .testimonial_text {
    font-size: 14px;
  }
  
  .testimonial_name {
    font-size: 16px;
  }
  
  .testimonial_title {
    font-size: 14px;
  }
}

/* ============================= Footer Style ================================ */
footer {
  display: flex;
  flex-direction: column;
}

.footer_bg {
  display: flex;
  background-image: linear-gradient(0deg, #181d1c 55%, transparent 100%),
    url(../images/footer_image.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 100% 200%;
  height: 500px;
  align-items: end;
}


.footer-col p {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}

.footer_contents {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  justify-content: center;
  background-color: #181d1c;
  padding: 30px 10%;
  gap: 40px;
}

footer ul {
  list-style: none;
}

.footer-col {
  width: 23%;
  min-width: 250px;
}

.footer-col .first_details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col .first_details h5 {
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  font-family: "Fredoka", sans-serif;
}

.footer-col .first_details span {
  font-family: "Whisper", cursive;
  text-transform: none;
  font-size: 28px;
}


.footer-col .first_details ul li {
  font-size: 16px;
  padding-bottom: 10px;
  color: #fff;
  line-height: 1.6rem;
}

.footer-col .first_details a {
  font-weight: 600;
}

.footer-col .first_details .social-footer-col {
  margin-top: 20px;
}

.footer-col h4 {
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: var(--secondary-color);
  height: 2px;
  width: 40px;
}

ul li:not(:last-child) {
  margin-bottom: 8px;
}

ul li {
  font-size: 15px;
}

ul li a {
  display: block;
  font-size: 16px;
  text-transform: capitalize;
  color: #bdb6b6;
  text-decoration: none;
  transition: 0.4s;
}

ul li a:hover {
  color: white;
  padding-left: 2px;
}

.links a {
  display: inline-block;
  height: 44px;
  width: 44px;
  color: white;
  background-color: var(--secondary-color);
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 44px;
  border-radius: 10px;
  transition: 0.4s;
}

.links a i {
  font-size: 14px;
}

.links a:hover {
  color: #4d4f55;
  background-color: white;
}

/* Contact Info Styles */
.contact_info {
  margin-top: 20px;
}

.contact_info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.contact_info i {
  color: var(--secondary-color);
  font-size: 16px;
}

/* Newsletter Form Styles */
.newsletter_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsletter_form p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.subscribe_form {
  width: 100%;
}

.form_group {
  display: flex;
  background-color: #2a2a2a;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.form_group:focus-within {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(217, 30, 54, 0.2);
}

.form_group input {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.form_group input::placeholder {
  color: #888;
}

.form_group button {
  background-color: var(--secondary-color);
  border: none;
  padding: 12px 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form_group button:hover {
  background-color: #d91e36;
}

.form_group button i {
  font-size: 16px;
}

/* Social Links in Footer */
.footer-col .social_links {
  margin-top: 20px;
}

.footer-col .social_links h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.social_icons {
  display: flex;
  gap: 12px;
}

.social_icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2a2a2a;
  color: #ccc;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #444;
}

.social_icons a:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
}

.social_icons a i {
  font-size: 18px;
}

.second_footer {
  width: 100%;
  padding: 30px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background-color: #181d1c;
  border-top: 0.1px solid rgba(255, 255, 255, 0.2);
}

.second_footer p {
  font-size: 14px;
}





.footer_legal {
  display: flex;
  gap: 20px;
}

.footer_legal a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer_legal a:hover {
  color: var(--secondary-color);
}

@media (max-width: 740px) {
  .footer_bg {
    width: 100%;
    align-items: end;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer_bg h2 {
    padding-left: 0%;
    text-align: center;
  }
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }
  .footer-col .first_details {
    margin-right: 0px;
  }
  .footer-col .first_details ul .contact_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .footer-col h4::before {
    all: unset;
  }
  .footer-col .newsletter_form .social_links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .second_footer {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .second_footer p {
    font-size: 14px;
  }
  
  .footer_legal {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 555px) {
  .footer-col {
    width: 100%;
  }
}

/*=============== SCROLL UP ===============*/

.scrollup {
  position: fixed;
  background: var(--main-color);
  right: 5rem;
  bottom: -20%;
  display: inline-flex;
  padding: 1rem;
  border-radius: 10px;
  z-index: 10;
  transition: 0.4s;
}

.scrollup__icon {
  font-size: 2.5rem;
  color: var(--text-color);
}

.scrollup:hover {
  background: var(--main-second-color);
  opacity: 1;
}

/* Show Scroll Up*/

.show-scroll {
  bottom: 3rem;
}

/* ============= Responsive Design For Small Screen Laptops ============= */
@media (max-width: 1440px) {
  html {
    zoom: 0.8;
  }
}

@media (max-width: 1366px) {
  html {
    zoom: 0.7;
  }
}

@media (max-width: 1024px) {
  html {
    zoom: 0.6;
  }
}
