/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 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: "Nunito",  sans-serif;
  --nav-font: "Inter",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #22577E; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #0d83fd; /* 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: #0d83fd; /* 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: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2C5EAD;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --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 {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(#3674B5);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: #22577E;
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, #22577E, transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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: white;
    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: #68C7E9;
  }

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

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #68C7E9;
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@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: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), 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);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

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

.footer .footer-top {
  padding-top: 50px;
}

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

.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 .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

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

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

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

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

.page-title .breadcrumbs 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: 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-2 {
  text-align: center;
  padding-top: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;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

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

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

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

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

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.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(--accent-color), transparent 50%);
  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: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

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

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

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

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

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

/* about us page css */

/* સામાન્ય સ્ટાઈલ */
.section-title {
  text-align: center;
  color: #245a7b;
  margin-bottom: 40px;
  font-size: 32px;
}

/* Mission & Vision Section */
.mission-vision-section {
  display: flex;
  gap: 30px;
  padding: 60px 5%;
  background-color: #ffffff;
}

.mv-card {
  flex: 1;
  background-color: #f8fafd;
  padding: 40px;
  border-radius: 20px;
  border-left: 5px solid #245a7b;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mv-card h3 {
  color: #245a7b;
  font-size: 24px;
  margin-bottom: 15px;
}

.mv-card p {
  color: #555;
  line-height: 1.6;
}

/* Core Values Section */
.core-values-section {
  padding: 60px 5%;
  background-color: #f0f4f8;
}

.values-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.value-card h4 {
  color: #333;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background-color: #245a7b;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  margin-top: 40px;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color:white;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-btn {
  background-color: #ffffff;
  color: #245a7b;
  padding: 15px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}

.cta-btn:hover {
  background-color: #a9d6e5;
  color: #1a425a;
}

/* =========================================
   Responsive Design (Mobile & Tablet)
   ========================================= */
@media (max-width: 768px) {
  
  /* Mission & Vision Section */
  .mission-vision-section {
    flex-direction: column; /* બોક્સને એકબીજાની નીચે લાવવા */
    padding: 40px 5%;
    gap: 20px;
  }

  /* Core Values Section */
  .values-grid {
    flex-direction: column; /* 3 કાર્ડ્સને લાઈનમાં નીચે લાવવા */
  }

  .value-card {
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 26px; /* મોબાઈલમાં હેડિંગ થોડું નાનું કરવા */
    margin-bottom: 30px;
  }
  

  /* Call to Action (CTA) Section */
  .cta-section {
    padding: 50px 20px;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    display: inline-block;
    width: 100%; /* મોબાઈલમાં બટનને આખી પહોળાઈ આપવા માટે (ઓપ્શનલ) */
    box-sizing: border-box;
  }
}

/* નાની મોબાઈલ સ્ક્રીન માટે (Extra Small Devices) */
@media (max-width: 480px) {
  .mv-card {
    padding: 25px;
  }
  
  .mv-card h3 {
    font-size: 20px;
  }
}

/* =========================================
   What We Do - Intro Section
   ========================================= */
/* =========================================
   What We Do - Intro Section (Updated)
   ========================================= */
.wwd-intro {
  /* નેવબારથી લખાણને છૂટું પાડવા માટે ઉપર 120px ની જગ્યા આપી છે */
  padding: 120px 5% 100px 5%; 
  background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%); /* સ્મૂથ કલર ઇફેક્ટ */
  text-align: center;
  border-bottom: 1px solid #e0eaf5; /* નીચે એક હળવી લાઈન */
}

.intro-content {
  max-width: 900px;
  margin: 0 auto; /* લખાણને બરાબર વચ્ચે રાખવા */
}

.intro-content h2 {
  color: #1a425a;
  font-size: 46px; /* ડેસ્કટોપમાં મોટું અને આકર્ષક હેડિંગ */
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.intro-content h2 span {
  color: #245a7b;
}

.intro-content p {
  color: #555;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 auto;
}

/* =========================================
   Our Process Section
   ========================================= */
.process-section {
  padding: 80px 5%;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  color: #245a7b;
  font-size: 32px;
  margin-bottom: 50px;
}

.process-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.process-step {
  flex: 1;
  background: #f8fafd;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.process-step:hover {
  transform: translateY(-5px);
  border-bottom: 4px solid #245a7b;
}

.step-number {
  background-color: #245a7b;
  color: #ffffff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.process-step h4 {
  color: #1a425a;
  font-size: 20px;
  margin-bottom: 15px;
}

.process-step p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================
   Responsive Design (Mobile & Tablet)
   ========================================= */
@media (max-width: 992px) {
  /* ટેબલેટ માટે */
  .wwd-intro {
    padding: 100px 5% 80px 5%;
  }
  
  .intro-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
/* મોબાઈલ માટે */
  .wwd-intro {
    padding: 80px 20px 60px 20px; /* મોબાઈલમાં જગ્યા થોડી ઓછી કરી છે */
  }

  .intro-content h2 {
    font-size: 30px; /* મોબાઈલની સ્ક્રીન મુજબ નાનું હેડિંગ */
    margin-bottom: 15px;
  }

  .intro-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .process-section {
    padding: 60px 20px;
  }

  .process-grid {
    flex-direction: column; /* એક લાઈનમાં નીચે નીચે ગોઠવાશે */
    gap: 20px;
  }

  .process-step {
    flex: 1 1 100%;
  }
}

/* =========================================
   Capabilities Section (Hover Animation)
   ========================================= */
.capabilities-section {
  padding: 80px 5%;
}

.cap-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.cap-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  flex: 1;
  min-width: 280px;
  text-align: center;
  border: 1px solid #e0eaf5;
  transition: all 0.4s ease; /* એનિમેશન સ્મૂથ કરવા */
  cursor: pointer;
}

/* Hover Effect (જાદુ અહીં છે) */
.cap-card:hover {
  transform: translateY(-15px); /* કાર્ડ 15px ઉપર આવશે */
  box-shadow: 0 20px 40px rgba(36, 90, 123, 0.15); /* પડછાયો પડશે */
  border-color: #245a7b; /* બોર્ડરનો કલર ડાર્ક થશે */
}

.cap-icon {
  font-size: 50px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.cap-card:hover .cap-icon {
  transform: scale(1.2); /* માઉસ લઈ જતા આઇકન મોટો થશે */
}

.cap-card h3 {
  color: #1a425a;
  margin-bottom: 15px;
  font-size: 22px;
}

.cap-card p {
  color: #666;
  line-height: 1.6;
}

/* =========================================
   Tech Stack Section (Auto Scrolling Animation)
   ========================================= */
.tech-stack-section {
  padding: 60px 0;
  overflow: hidden;
  padding-bottom: 80px;
}

.tech-title {
  text-align: center;
  color: #22577E;
  font-size: 32px;
  margin-bottom: 40px;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.slider-track {
  display: flex;
  width: max-content; /* આ ખૂબ જરૂરી છે પરફેક્ટ લૂપ માટે */
  animation: scrollTrack 20s linear infinite; 
}

/* આ નવો ક્લાસ એડ કર્યો છે સ્પેસિંગ મેન્ટેન કરવા માટે */
.slide-group {
  display: flex;
  gap: 40px; /* બે બટન વચ્ચેની જગ્યા */
  padding-right: 40px; /* પહેલા અને બીજા ગ્રુપ વચ્ચે સમાન જગ્યા રાખવા માટે */
}

.slide {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: #22577E;
  padding: 15px 40px;
  border-radius: 50px; 
  transition: all 0.3s;
  cursor: pointer;
}

.slide:hover {
  color: #22577E;
  background:#F8FAFD ;
  border: 2px solid #22577E;
}

@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}
/* =========================================
   Responsive Design (Mobile)
   ========================================= */
@media (max-width: 768px) {
  .cap-card {
    flex: 1 1 100%; /* મોબાઈલમાં એકની નીચે એક */
  }
  
  .tech-title {
    font-size: 26px;
  }
  
.slide-group {
    gap: 20px;
    padding-right: 20px;
  }
  
  .slide {
    font-size: 18px;
    padding: 10px 25px;
  }
  
  .slider-track {
    animation: scrollTrack 15s linear infinite; 
  }
}


/* =========================================
   Hero Section
   ========================================= */
.case-hero {
  position: relative;
  padding: 150px 5% 100px 5%;
  text-align: center;
  background-color: #f0f4f8; 
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(36, 90, 123, 0.05), rgba(36, 90, 123, 0.1));
  z-index: 0;
  animation: floatAnim 2s infinite alternate ease-in-out;
}

.shape-1 { width: 300px; height: 300px; top: -50px; left: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; right: -150px; animation-delay: 2s; }

@keyframes floatAnim {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.05); }
}

.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

.reveal-text {
  font-size: 52px; color: #1a425a; font-weight: 800; line-height: 1.2; margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  /* અહીં 1s ની જગ્યાએ 0.6s કર્યું છે */
  animation: slideUpFade 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards; 
}
.reveal-text span { color: #245a7b; }

.fade-in-text {
  font-size: 18px; color: #555; opacity: 0;
  /* અહીં 1s ની જગ્યાએ 0.6s અને delay 0.3s ની જગ્યાએ 0.15s કર્યો છે */
  animation: slideUpFade 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards; 
  animation-delay: 0.15s; 
}

@keyframes slideUpFade { to { opacity: 1; transform: translateY(0); } }

/* =========================================
   Case Study Sections (Zig-Zag)
   ========================================= */
.case-section { padding: 80px 7%; background: #ffffff; }
.case-section.bg-light { background: #f8fafd; }

.case-container { display: flex; align-items: center; gap: 60px; }
.case-container.reverse { flex-direction: row-reverse; }

.case-image {
  flex: 1; border-radius: 20px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08); transition: transform 0.3s ease;
}
.case-image img { width: 100%; display: block; transition: transform 0.6s ease; }
.case-image:hover img { transform: scale(1.08); }

.case-text { flex: 1; }

.badge {
  display: inline-block; background: #e0eaf5; color: #245a7b;
  padding: 8px 15px; border-radius: 50px; font-weight: bold; font-size: 14px; margin-bottom: 20px;
}
.case-text h2 { font-size: 34px; color: #1a425a; margin-bottom: 20px; }
.case-text p { color: #666; line-height: 1.7; margin-bottom: 20px; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { color: #245a7b; font-weight: 600; margin-bottom: 10px; }

/* =========================================
   Global Reset & Spacing
   ========================================= */
body { margin: 0; padding: 0; font-family: 'Poppins', sans-serif; overflow-x: hidden; }

/* =========================================
   1. Service Hero
   ========================================= */
.service-hero {
  position: relative;
  padding: 180px 5% 140px 5%; 
  text-align: center;
  
  /* જૂનો background-color કાઢીને આ નવી લાઈન મૂકો */
  background: linear-gradient(to bottom, #245a7b 0%, #0b192c 100%); 
  
  color: #ffffff;
  overflow: hidden;
  min-height: 80vh; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.animated-bg-shape {
  position: absolute; border-radius: 50%; filter: blur(100px);
  z-index: 0; opacity: 0.5; animation: floatBg 2s infinite alternate ease-in-out;
}
.shape-pink { width: 400px; height: 400px; background: #e0ac9a; top: -50px; left: -100px; }
.shape-blue { width: 500px; height: 500px; background: #245a7b; bottom: -100px; right: -100px; animation-delay: 4s; }

@keyframes floatBg {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 60px) scale(1.1); }
}

.hero-content { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }

.badge-tag {
  display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 25px; border-radius: 50px; font-size: 15px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 30px; backdrop-filter: blur(10px);
}
.main-title { font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 30px; }
.text-gradient {
  background: linear-gradient(90deg, #a9d6e5, #ffffff);
  background-clip: text;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.sub-title { font-size: 22px; opacity: 0.85; line-height: 1.7; max-width: 800px; margin: 0 auto; }

/* =========================================
   2. Philosophy Cards
   ========================================= */
.philosophy-section { padding: 120px 7%; background: #f8fafd; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 42px; color: #1a425a; font-weight: 700; }
.section-header p { font-size: 20px; color: #555; margin-top: 15px; }

.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; max-width: 1300px; margin: 0 auto;
}
/* =========================================
   2. Philosophy Cards (Smooth Hover Effect)
   ========================================= */
.feature-card {
  background: #ffffff; 
  padding: 50px; 
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04); 
  
  /* ઝટકો ન લાગે તે માટે પહેલેથી પારદર્શક બોર્ડર આપી છે */
  border-bottom: 6px solid transparent; 
  
  /* આ લાઈન એનિમેશનને એકદમ સ્મૂથ બનાવશે (0.5 સેકન્ડનો સમય) */
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
}

.feature-card:hover {
  transform: translateY(-15px); /* કાર્ડ ધીમેથી ઉપર આવશે */
  border-bottom: 6px solid #245a7b; /* નીચે સ્મૂથ બ્લુ લાઈન દેખાશે */
  box-shadow: 0 30px 60px rgba(36, 90, 123, 0.15); /* પડછાયો ઘાટો થશે */
}
.icon-box { font-size: 50px; margin-bottom: 25px; }
.feature-card h3 { font-size: 26px; color: #1a425a; margin-bottom: 18px; font-weight: 600; }
.feature-card p { color: #666; line-height: 1.8; font-size: 16px; }

/* =========================================
   3. NEW: Showcase Section (For Page Length)
   ========================================= */
.portfolio-showcase { padding: 100px 7%; background: #ffffff; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1300px; margin: 0 auto; }
.showcase-item { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.showcase-overlay {
  position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px;
  background: linear-gradient(to top, rgba(11, 25, 44, 0.9), transparent); color: #fff;
}
.showcase-overlay h3 { font-size: 24px; margin: 0; }

/* Simple Image Zoom Effect (Requested by User) */
.zoom-image img { width: 100%; display: block; transition: transform 0.6s ease; }
.zoom-image:hover img { transform: scale(1.08); }

/* =========================================
   4. Timeline Process
   ========================================= */
.process-timeline-section { padding: 100px 7% 120px; background: #f8fafd; }
.timeline-container { max-width: 1100px; margin: 0 auto; position: relative; }
.timeline-line {
  position: absolute; left: 50%; top: 0; width: 6px; height: 100%;
  background: #e0eaf5; transform: translateX(-50%);
}
.timeline-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 120px; position: relative; }
.timeline-row.reverse { flex-direction: row-reverse; }

.timeline-dot {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 30px; height: 30px; background: #245a7b; border: 6px solid #f8fafd;
  border-radius: 50%; z-index: 2; box-shadow: 0 0 0 6px rgba(36, 90, 123, 0.2);
}
.timeline-image, .timeline-text { width: 45%; }
.timeline-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.step-num { color: #245a7b; font-weight: bold; font-size: 15px; letter-spacing: 2px; text-transform: uppercase; }
.timeline-text h3 { font-size: 36px; color: #1a425a; margin: 12px 0 20px; font-weight: 700; }
.timeline-text p { color: #555; font-size: 17px; line-height: 1.8; }

/* =========================================
   5. CTA Banner
   ========================================= */
.cta-banner {
  background: linear-gradient(135deg, #1a425a, #245a7b); padding: 100px 40px; 
  text-align: center; color: #fff; margin: 0 7% 120px;
  border-radius: 32px; box-shadow: 0 30px 60px rgba(26, 66, 90, 0.3);
}
.cta-banner h2 { font-size: 48px; margin-bottom: 20px; font-weight: 700; }
.cta-banner p { font-size: 20px; margin-bottom: 40px; opacity: 0.9; }
.premium-btn {
  display: inline-block; background: #fff; color: #1a425a; padding: 18px 50px; 
  border-radius: 50px; font-weight: bold; font-size: 20px; text-decoration: none; transition: all 0.3s ease;
}
.premium-btn:hover { background: #a9d6e5; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.premium-btn .arrow { transition: transform 0.3s; display: inline-block; }
.premium-btn:hover .arrow { transform: translateX(5px); }

/* =========================================
   SMOOTH SCROLL ANIMATIONS (CSS + JS)
   ========================================= */
/* The hidden starting state */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(60px);
  /* Butter-smooth transition */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* The active state applied by JS */
.scroll-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional Delays for staggered effect */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Initial load animation for Hero section (so it doesn't wait for scroll) */
.service-hero .scroll-fade-up {
  animation: loadFadeUp 0.8s ease-out forwards;
}
.service-hero .delay-1 { animation-delay: 0.2s; }
.service-hero .delay-2 { animation-delay: 0.4s; }

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

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 992px) {
  .timeline-line { left: 40px; }
  .timeline-row, .timeline-row.reverse { flex-direction: column; align-items: flex-start; padding-left: 90px; }
  .timeline-dot { left: 40px; top: 0; transform: translate(-50%, 0); }
  .timeline-image, .timeline-text { width: 100%; margin-bottom: 30px; }
  .main-title { font-size: 48px; }
  .feature-grid, .showcase-grid { grid-template-columns: 1fr; gap: 30px;}
}
@media (max-width: 768px) {
  .service-hero { padding: 140px 20px 100px; }
  .main-title { font-size: 38px; }
  .section-header h2 { font-size: 32px;}
  .cta-banner h2 { font-size: 36px; }
  .cta-banner { padding: 80px 20px; margin: 0 5% 80px;}
}

/* =========================================
   1. Web Dev Hero Section (High-Tech Look)
   ========================================= */
.dev-hero {
  position: relative; padding: 180px 5% 140px 5%; 
  text-align: center; background-color: #050b14; /* એકદમ ડીપ ડાર્ક બ્લુ */
  color: #ffffff; overflow: hidden; min-height: 80vh; 
  display: flex; align-items: center; justify-content: center;
}

/* Background Tech Grid */
.dev-bg-grid {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(36, 90, 123, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 90, 123, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0; opacity: 0.5;
}

/* =========================================
   2. Competency Grid
   ========================================= */
.competency-section { padding: 120px 7%; background: #f8fafd; }
.dev-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; max-width: 1300px; margin: 0 auto;
}
.dev-card {
  background: #ffffff; padding: 50px; border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04); 
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-top: 6px solid #e0eaf5;
}
.dev-card:hover {
  transform: translateY(-15px); border-top: 6px solid #245a7b;
  box-shadow: 0 30px 60px rgba(36, 90, 123, 0.15);
}
.dev-icon { font-size: 45px; margin-bottom: 20px; }
.dev-card h3 { font-size: 24px; color: #1a425a; margin-bottom: 15px; font-weight: 700; }
.dev-card p { color: #555; line-height: 1.8; font-size: 16px; }

/* =========================================
   3. Tech Marquee (Infinite Auto Scroll)
   ========================================= */
.tech-marquee-section {
  background: #245a7b; padding: 60px 0; text-align: center; color: #fff; overflow: hidden;
}
.tech-marquee-section h3 { font-size: 24px; margin-bottom: 30px; font-weight: 600; opacity: 0.9; }

.marquee-wrapper { width: 100%; overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex; gap: 30px; padding-right: 30px; width: max-content;
  animation: scrollMarquee 25s linear infinite; /* સ્મૂથ ચાલતી પટ્ટી */
}
.tech-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 40px; border-radius: 50px; font-size: 18px; font-weight: bold;
  transition: all 0.3s ease; cursor: pointer; backdrop-filter: blur(5px);
}
.tech-pill:hover { background: #fff; color: #245a7b; transform: scale(1.05); }

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

/* =========================================
   4. Dev Features Zig-Zag
   ========================================= */
.dev-features-section { padding: 120px 7%; background: #ffffff; }
.feature-row { display: flex; align-items: center; gap: 80px; margin-bottom: 120px; }
.feature-row.reverse { flex-direction: row-reverse; }

.feature-image, .feature-text { flex: 1; }
.feature-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.feature-text h2 { font-size: 38px; color: #1a425a; margin-bottom: 20px; font-weight: 700; line-height: 1.2; }
.feature-text p { color: #555; font-size: 18px; line-height: 1.8; margin-bottom: 30px; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { font-size: 16px; color: #1a425a; font-weight: 600; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }

/* Responsive Updates for this page */
@media (max-width: 992px) {
  .feature-row, .feature-row.reverse { flex-direction: column; gap: 40px; margin-bottom: 80px; text-align: center; }
  .check-list li { justify-content: center; }
}
@media (max-width: 768px) {
  .dev-hero { padding: 140px 20px 100px; }
  .feature-text h2 { font-size: 32px; }
  .marquee-track { animation: scrollMarquee 15s linear infinite; } /* ફોનમાં થોડું ફાસ્ટ */
}

/* =========================================
   1. Flutter Hero Section
   ========================================= */
.flutter-hero {
  position: relative; padding: 180px 5% 50px 5%; 
  text-align: center; background-color: #0b141e; /* ડીપ ડાર્ક થીમ */
  color: #ffffff; overflow: hidden;
}

.hero-bg-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 90, 123, 0.2) 0%, transparent 70%);
  z-index: 0;
}

.flutter-hero .hero-content { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }

/* Floating Mobile Image */
.hero-mobile-image {
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.4);
  /* સ્મૂથ ફ્લોટિંગ એનિમેશન */
  animation: floatMobile 6s ease-in-out infinite;
}
.hero-mobile-image img { width: 100%; display: block; }

@keyframes floatMobile {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* =========================================
   2. Benefits Grid (Soft Smooth Hover)
   ========================================= */
.flutter-benefits { padding: 120px 7%; background: #f8fafd; }

.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; max-width: 1300px; margin: 0 auto;
}

.benefit-card {
  background: #ffffff; padding: 50px; border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04); 
  border-top: 6px solid transparent;
  /* એકદમ સ્મૂથ ટ્રાન્ઝિશન */
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.benefit-card:hover {
  transform: translateY(-12px); 
  border-top: 6px solid #245a7b;
  box-shadow: 0 25px 50px rgba(36, 90, 123, 0.12);
}

.benefit-icon { font-size: 50px; margin-bottom: 25px; }
.benefit-card h3 { font-size: 26px; color: #1a425a; margin-bottom: 18px; font-weight: 600; }
.benefit-card p { color: #666; line-height: 1.8; font-size: 16px; }

/* =========================================
   3. App Showcase (Zig-Zag)
   ========================================= */
.app-showcase-section { padding: 120px 7%; background: #ffffff; }

.showcase-row { display: flex; align-items: center; gap: 80px; margin-bottom: 120px; }
.showcase-row.reverse { flex-direction: row-reverse; }

.showcase-image, .showcase-text { flex: 1; }
.showcase-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.showcase-image img { width: 100%; display: block; transition: transform 0.6s ease; }
.showcase-image:hover img { transform: scale(1.05); }

.showcase-text h2 { font-size: 38px; color: #1a425a; margin-bottom: 20px; font-weight: 700; line-height: 1.2; }
.showcase-text p { color: #555; font-size: 18px; line-height: 1.8; margin-bottom: 30px; }

/* Responsive */
@media (max-width: 992px) {
  .showcase-row, .showcase-row.reverse { flex-direction: column; gap: 40px; margin-bottom: 80px; text-align: center; }
  .hero-mobile-image { margin-top: 40px; }
}
@media (max-width: 768px) {
  .flutter-hero { padding: 140px 20px 0px; }
  .showcase-text h2 { font-size: 32px; }
}

/* =========================================
   1. Graphic Design Hero Section
   ========================================= */
.graphic-hero {
  position: relative; padding: 180px 5% 120px 5%; 
  text-align: center; 
  background: linear-gradient(to bottom, #245a7b 0%, #0b141e 100%);
  color: #ffffff; overflow: hidden; min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
}

.hero-bg-gradient {
  position: absolute; top: -50%; left: -20%; width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(169, 214, 229, 0.1) 0%, transparent 60%);
  z-index: 0; animation: pulseGlow 8s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; }
}

.graphic-hero .hero-content { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }

/* =========================================
   2. Graphic Services Cards
   ========================================= */
.graphic-services { padding: 120px 7%; background: #ffffff; }

.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; max-width: 1300px; margin: 0 auto;
}

.service-card {
  background: #f8fafd; padding: 50px; border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
  border: 1px solid #e0eaf5;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: left;
}
.service-card:hover {
  transform: translateY(-15px); 
  background: #ffffff;
  border-color: #245a7b;
  box-shadow: 0 25px 50px rgba(36, 90, 123, 0.12);
}

.service-icon { font-size: 50px; margin-bottom: 25px; }
.service-card h3 { font-size: 26px; color: #1a425a; margin-bottom: 18px; font-weight: 700; }
.service-card p { color: #666; line-height: 1.8; font-size: 16px; }

/* =========================================
   3. Creative Showcase (Masonry Style)
   ========================================= */
.creative-showcase { padding: 100px 7% 120px; background: #f0f4f8; }

.masonry-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px; max-width: 1300px; margin: 0 auto; align-items: start;
}

.masonry-item {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08); cursor: pointer;
}
.masonry-item img {
  width: 100%; display: block; transition: transform 0.6s ease;
}
.masonry-item:hover img { transform: scale(1.08); }

.masonry-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 20, 30, 0.9), transparent);
  opacity: 0; transition: opacity 0.4s ease; display: flex; align-items: flex-end; padding: 30px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay h4 { color: #fff; font-size: 22px; margin: 0; transform: translateY(20px); transition: transform 0.4s ease; }
.masonry-item:hover .masonry-overlay h4 { transform: translateY(0); }

/* =========================================
   4. Workflow Steps
   ========================================= */
.design-workflow { padding: 120px 7%; background: #ffffff; text-align: center; }

.workflow-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px; max-width: 1200px; margin: 0 auto; position: relative;
}

.workflow-step { position: relative; padding: 20px; }
.step-circle {
  width: 80px; height: 80px; margin: 0 auto 25px; border-radius: 50%;
  background: #f8fafd; color: #245a7b; font-size: 32px; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed #a9d6e5; transition: all 0.4s ease;
}
.workflow-step:hover .step-circle { background: #245a7b; color: #fff; border-style: solid; transform: scale(1.1); }
.workflow-step h4 { font-size: 22px; color: #1a425a; margin-bottom: 15px; }
.workflow-step p { color: #666; font-size: 15px; line-height: 1.6; }

/* Responsive Updates */
@media (max-width: 768px) {
  .graphic-hero { padding: 140px 20px 80px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .step-circle { margin-bottom: 15px; }
}

/* =========================================
   1. SEO Hero Section
   ========================================= */
.seo-hero {
  position: relative;
  padding: 180px 5% 140px 5%; 
  text-align: center;
  /* Navbar sathe perfect match thava mate pure linear gradient */
  background: linear-gradient(to bottom, #245a7b 0%, #0b141e 100%);
  color: #ffffff;
  overflow: hidden;
  min-height: 75vh; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow-layer {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 214, 229, 0.15) 0%, transparent 65%);
  z-index: 0;
}

.seo-hero .hero-content { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }

/* =========================================
   2. SEO Pillars Grid & Smooth Hover
   ========================================= */
.seo-pillars-section { padding: 120px 7%; background: #ffffff; }

.seo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; max-width: 1300px; margin: 0 auto;
}

.seo-card {
  background: #f8fafd; padding: 50px; border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  border-bottom: 6px solid transparent;
  /* Perfect butter-smooth transition */
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.seo-card:hover {
  transform: translateY(-15px);
  background: #ffffff;
  border-bottom: 6px solid #245a7b;
  box-shadow: 0 30px 60px rgba(36, 90, 123, 0.15);
}

.seo-icon { font-size: 50px; margin-bottom: 25px; }
.seo-card h3 { font-size: 26px; color: #1a425a; margin-bottom: 18px; font-weight: 700; }
.seo-card p { color: #666; line-height: 1.8; font-size: 16px; }

/* =========================================
   3. Attractive Bento Metrics Section
   ========================================= */
.seo-metrics-section { padding: 100px 7% 120px; background: #f0f4f8; }

.metrics-display-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px;
  max-width: 1200px; margin: 0 auto; align-items: center;
}

.metric-visual-box { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.06); }

.metric-stats-container { display: flex; flex-direction: column; gap: 25px; }

.metric-stat-strip {
  background: #ffffff; padding: 30px 40px; border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.02);
  border-left: 6px solid #245a7b;
  transition: transform 0.4s ease;
}
.metric-stat-strip:hover { transform: translateX(10px); }
.metric-stat-strip h3 { font-size: 38px; color: #245a7b; margin: 0 0 5px 0; font-weight: 800; }
.metric-stat-strip p { font-size: 16px; color: #555; margin: 0; font-weight: 600; }

/* =========================================
   Responsive Adjustments
   ========================================= */
@media (max-width: 992px) {
  .metrics-display-grid { grid-template-columns: 1fr; gap: 40px; }
  .seo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .seo-hero { padding: 140px 20px 100px; }
  .metric-stat-strip { text-align: center; }
}

/* =========================================
   1. Contact Hero Section
   ========================================= */
.contact-hero {
  position: relative; padding: 180px 5% 100px 5%; 
  text-align: center;
  background: linear-gradient(to bottom, #245a7b 0%, #f0f4f8 100%); /* નેવબારથી વ્હાઇટ તરફ સ્મૂથ બ્લેન્ડ */
  color: #ffffff; overflow: hidden;
}
.hero-glow-layer {
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 1000px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  z-index: 0;
}
.contact-hero .hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.contact-hero .sub-title { color: #e0eaf5; }

/* =========================================
   2. Contact Main Section & Layout
   ========================================= */
.contact-main-section { padding: 40px 7% 120px; background: #f0f4f8; }

.contact-wrapper {
  display: flex; gap: 0; max-width: 1200px; margin: 0 auto;
  background: #ffffff; border-radius: 30px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* --- Left: Info Panel (Dark Glass Theme) --- */
.contact-info-panel {
  flex: 1; background: #0b192c; color: #fff; padding: 60px 50px;
  position: relative; overflow: hidden;
}
.contact-info-panel h2 { font-size: 32px; margin-bottom: 10px; font-weight: 700; z-index: 2; position: relative; }
.contact-info-panel p { color: #a9d6e5; margin-bottom: 50px; line-height: 1.6; z-index: 2; position: relative; }

.info-list { display: flex; flex-direction: column; gap: 35px; z-index: 2; position: relative; }
.info-item { display: flex; align-items: flex-start; gap: 20px; }
.info-icon { font-size: 28px; background: rgba(255,255,255,0.1); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.info-text h4 { margin: 0 0 5px 0; font-size: 18px; color: #fff; font-weight: 600; }
.info-text p { margin: 0; color: #e0eaf5; font-size: 16px; }

/* Decorative Background Circles */
.panel-circle { position: absolute; border-radius: 50%; background: rgba(36, 90, 123, 0.5); filter: blur(40px); z-index: 1; }
.circle-1 { width: 250px; height: 250px; bottom: -50px; right: -50px; }
.circle-2 { width: 150px; height: 150px; top: 50px; left: -50px; background: rgba(169, 214, 229, 0.2); }

/* --- Right: Form Panel --- */
.contact-form-panel { flex: 1.5; padding: 60px 80px; background: #ffffff; }

.premium-form { display: flex; flex-direction: column; gap: 40px; }
.form-row { display: flex; gap: 30px; }

/* Floating Label Input Animations */
.input-group { position: relative; width: 100%; }

.input-group input, .input-group textarea, .input-group select {
  width: 100%; padding: 15px 0; font-size: 16px; color: #1a425a;
  border: none; border-bottom: 2px solid #e0eaf5; background: transparent;
  outline: none; font-family: 'Poppins', sans-serif; resize: none;
}

.input-group label {
  position: absolute; top: 15px; left: 0; color: #999; font-size: 16px;
  pointer-events: none; transition: all 0.3s ease;
}

/* Magic happens here: Label goes up when focused or valid (filled) */
.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
  top: -15px; font-size: 13px; color: #245a7b; font-weight: 600;
}

/* Animated Bottom Line */
.input-line {
  position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: #245a7b; transition: width 0.4s ease;
}
.input-group input:focus ~ .input-line,
.input-group textarea:focus ~ .input-line,
.input-group select:focus ~ .input-line {
  width: 100%;
}

.select-group select { color: #555; cursor: pointer; }

/* Ripple Button Styling */
.ripple-btn {
  position: relative; overflow: hidden; background: #1a425a; color: #fff;
  padding: 18px 40px; border: none; border-radius: 50px; font-size: 18px; font-weight: 700;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s ease; align-self: flex-start; margin-top: 10px;
}
.ripple-btn:hover { background: #245a7b; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(36, 90, 123, 0.3); }
.ripple-btn .arrow { transition: transform 0.3s; }
.ripple-btn:hover .arrow { transform: translateX(5px); }

/* Ripple Effect Span */
.ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  animation: rippleAnim 0.6s linear; background: rgba(255, 255, 255, 0.4);
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper { flex-direction: column; }
  .contact-form-panel { padding: 50px 40px; }
}
@media (max-width: 768px) {
  .contact-hero { padding: 140px 20px 80px; }
  .form-row { flex-direction: column; gap: 40px; }
  .contact-info-panel { padding: 40px 30px; }
  .contact-form-panel { padding: 40px 20px; }
}

/* 1. Main Grid - Charo box ne ek line ma (horizontal) lavshe */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  align-items: stretch;
}

/* 2. Andar na Box ni Design - Text ne center ma lavva */
.bento-card {
  background: #f8fafd;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center; /* Lkhaan ne center ma lavshe */
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
  border: 1px solid #e0eaf5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(36, 90, 123, 0.1);
  border-color: #245a7b;
}

/* Icon mate thodi space */
.bento-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.bento-card h3 {
  font-size: 22px;
  color: #1a425a;
  margin-bottom: 10px;
  font-weight: 600;
}

/* 3. Number (Counter) valo row ne center ma rakhva */
.stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 10px 0;
}

.stat-row h2 {
  font-size: 50px; /* Number mota ane clear dekhase */
  color: #245a7b;
  margin: 0;
  font-weight: 800;
  line-height: 1;
}

.about-description {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* ટાઇટલને સેન્ટરમાં લાવવા માટે */
.impact-header {
  text-align: center;
  margin-bottom: 50px; /* ટાઇટલ અને બોક્સ વચ્ચે થોડી જગ્યા રાખવા */
  width: 100%;
}

.impact-header h2 {
  font-size: 42px;
  color: #1a425a; /* તમારી બ્રાન્ડનો ડાર્ક બ્લુ કલર */
  margin-bottom: 10px;
  font-weight: 700;
}

.impact-header p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

/* =========================================
   1. Internship Hero Section
   ========================================= */
.internship-hero {
  position: relative;
  padding: 180px 5% 140px 5%; 
  text-align: center;
  background: linear-gradient(to bottom, #245a7b 0%, #0b141e 100%);
  color: #ffffff;
  overflow: hidden;
  min-height: 75vh; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow-effect {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 1000px; border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 214, 229, 0.15) 0%, transparent 60%);
  z-index: 0;
}

.internship-hero .hero-content { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }

/* =========================================
   2. Tech Track Domains Grid
   ========================================= */
.internship-domains { padding: 120px 7%; background: #ffffff; }

.domain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px; max-width: 1300px; margin: 0 auto;
}

.domain-card {
  background: #f8fafd; padding: 45px 35px; border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  border-top: 6px solid transparent;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: left;
}

.domain-card:hover {
  transform: translateY(-15px);
  background: #ffffff;
  border-top: 6px solid #245a7b;
  box-shadow: 0 30px 60px rgba(36, 90, 123, 0.15);
}

.domain-icon { font-size: 45px; margin-bottom: 20px; }
.domain-card h3 { font-size: 24px; color: #1a425a; margin-bottom: 15px; font-weight: 700; }
.domain-card p { color: #666; line-height: 1.7; font-size: 15px; }

/* =========================================
   3. Perks Bento Layout
   ========================================= */
.internship-perks { padding: 100px 7% 120px; background: #f0f4f8; }

.perks-bento-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px; max-width: 1200px; margin: 0 auto;
}

.perk-box {
  background: #ffffff; padding: 40px; border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}
.perk-box:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}
.perk-emoji { font-size: 45px; display: block; margin-bottom: 15px; }
.perk-box h4 { font-size: 22px; color: #1a425a; margin: 0 0 12px 0; font-weight: 700; }
.perk-box p { font-size: 15px; color: #666; margin: 0; line-height: 1.6; }

/* =========================================
   4. Journey Roadmap (Steps)
   ========================================= */
.internship-steps { padding: 120px 7%; background: #ffffff; text-align: center; }

.roadmap-container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px; max-width: 1200px; margin: 0 auto;
}

.roadmap-item { position: relative; padding: 20px; text-align: center; }

.step-number {
  width: 70px; height: 70px; margin: 0 auto 25px; border-radius: 50%;
  background: #245a7b; color: #fff; font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(36, 90, 123, 0.3);
  transition: transform 0.4s ease;
}
.roadmap-item:hover .step-number { transform: rotate(360deg) scale(1.1); }
.roadmap-item h4 { font-size: 20px; color: #1a425a; margin-bottom: 12px; font-weight: 700; }
.roadmap-item p { color: #666; font-size: 15px; line-height: 1.6; margin: 0; }

/* =========================================
   Responsive Adjustments
   ========================================= */
@media (max-width: 992px) {
  .domain-grid, .perks-bento-grid { grid-template-columns: 1fr; }
  .roadmap-container { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .internship-hero { padding: 140px 20px 100px; }
  .domain-card, .perk-box { padding: 30px 20px; }
}

/* =========================================
   WhatsApp Floating Button
   ========================================= */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  left: 30px; /* ડાબી બાજુ સેટ કર્યું છે */
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  z-index: 9999; /* બધા જ સેક્શનની ઉપર દેખાડવા માટે */
}

/* Chat Bubble Design */
.whatsapp-chat-bubble {
  background: #ffffff;
  color: #1a425a;
  padding: 12px 20px;
  border-radius: 20px 20px 20px 0; /* ચેટના મેસેજ જેવો આકાર */
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid #e0eaf5;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInChat 0.6s ease forwards 1s; /* 1 સેકન્ડ પછી એનિમેશન સાથે આવશે */
}

/* હાથ હલાવવાનું એનિમેશન */
.wave {
  display: inline-block;
  animation: waveAnim 2.5s infinite;
  transform-origin: 70% 70%;
}

@keyframes waveAnim {
  0% { transform: rotate( 0.0deg) }
  10% { transform: rotate(14.0deg) }
  20% { transform: rotate(-8.0deg) }
  30% { transform: rotate(14.0deg) }
  40% { transform: rotate(-4.0deg) }
  50% { transform: rotate(10.0deg) }
  60% { transform: rotate( 0.0deg) }
  100% { transform: rotate( 0.0deg) }
}

@keyframes slideInChat {
  to { opacity: 1; transform: translateX(0); }
}

/* =========================================
   WhatsApp Floating Button (Right Side)
   ========================================= */
.whatsapp-float-btn {
  position: fixed;
  bottom: 90px; /* Up arrow thi uper rakhva mate 90px karyu che */
  right: 30px;  /* Left ni jagya e Right karyu */
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  z-index: 9999;
}

/* Chat Bubble Design for Right Side */
.whatsapp-chat-bubble {
  background: #ffffff;
  color: #1a425a;
  padding: 12px 20px;
  border-radius: 20px 20px 0 20px; /* Right side pramane aakar badalyo */
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid #e0eaf5;
  opacity: 0;
  transform: translateX(20px);
  animation: slideInChat 0.6s ease forwards 1s;
}

.wave {
  display: inline-block;
  animation: waveAnim 2.5s infinite;
  transform-origin: 70% 70%;
}

@keyframes waveAnim {
  0% { transform: rotate( 0.0deg) }
  10% { transform: rotate(14.0deg) }
  20% { transform: rotate(-8.0deg) }
  30% { transform: rotate(14.0deg) }
  40% { transform: rotate(-4.0deg) }
  50% { transform: rotate(10.0deg) }
  60% { transform: rotate( 0.0deg) }
  100% { transform: rotate( 0.0deg) }
}

@keyframes slideInChat {
  to { opacity: 1; transform: translateX(0); }
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.whatsapp-icon svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float-btn:hover .whatsapp-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn:hover .whatsapp-chat-bubble {
  border-color: #25D366;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 80px;
    right: 20px;
  }
  .whatsapp-icon {
    width: 50px;
    height: 50px;
  }
  .whatsapp-icon svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-chat-bubble {
    font-size: 13px;
    padding: 8px 15px;
  }
}

/* WhatsApp Button ને ફરજિયાત Right Side લાવવા માટે */
.whatsapp-float-btn {
  position: fixed !important;
  bottom: 90px !important; /* એરોની ઉપર રાખવા */
  right: 30px !important;  /* જમણી બાજુ સેટ કરવા */
  left: auto !important;   /* ડાબી બાજુથી કાઢી નાખવા */
  display: flex !important;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  z-index: 99999 !important;
}

/* =========================================
   Internship Popup Design
   ========================================= */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 20, 30, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999999; /* સૌથી ઉપર દેખાડવા */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

/* જ્યારે પોપઅપ ઓપન થાય ત્યારે આ ક્લાસ લાગશે */
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #ffffff;
  width: 90%;
  max-width: 450px;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  transform: scale(0.8) translateY(30px); /* ઝૂમ ઇફેક્ટ */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  border-top: 6px solid #245a7b;
}

.popup-overlay.show .popup-content {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px; right: 15px;
  background: #f0f4f8;
  border: none;
  width: 35px; height: 35px;
  border-radius: 50%;
  font-size: 14px;
  color: #1a425a;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.popup-close:hover {
  background: #e0eaf5;
  color: #ff4757;
  transform: rotate(90deg); /* ગોળ ફરવાની ઇફેક્ટ */
}

.popup-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}

.popup-header h2 { font-size: 26px; color: #1a425a; margin: 0 0 15px 0; font-weight: 800; }
.popup-body p { color: #555; font-size: 16px; line-height: 1.6; margin-bottom: 25px; }

.popup-actions { display: flex; gap: 15px; justify-content: center; }

.popup-btn-primary, .popup-btn-secondary {
  padding: 12px 25px; border-radius: 50px; font-weight: 600; text-decoration: none; font-size: 15px; transition: all 0.3s ease; width: 100%;
}

.popup-btn-primary { background: #245a7b; color: #fff; border: 2px solid #245a7b; }
.popup-btn-primary:hover { background: #1a425a; border-color: #1a425a; transform: translateY(-3px); }

.popup-btn-secondary { background: transparent; color: #245a7b; border: 2px solid #245a7b; }
.popup-btn-secondary:hover { background: #f0f4f8; transform: translateY(-3px); }

/* મોબાઈલ માટે 100% Responsive સેટિંગ */
@media (max-width: 480px) {
  .popup-content { padding: 30px 20px; }
  .popup-header h2 { font-size: 22px; }
  .popup-actions { flex-direction: column; gap: 10px; } /* મોબાઈલમાં બટન ઊભા ગોઠવાશે */
}

/* =========================================
   Conditional Form Fields (Internship)
   ========================================= */
.hidden-fields {
  display: none; /* શરૂઆતમાં છુપાયેલું રહેશે */
  flex-direction: column;
  gap: 30px; /* તમારા ફોર્મની જગ્યા પ્રમાણે સેટ કર્યું છે */
  margin-top: 30px;
  width: 100%;
  animation: smoothOpen 0.5s ease-out forwards;
}

@keyframes smoothOpen {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   Form Base Styles & Inputs
   ========================================= */
.contact-form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.input-group {
  flex: 1;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

/* Input, Select, Textarea Design */
.input-group input[type="text"],
.input-group input[type="email"],
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #e0eaf5;
  background: transparent;
  font-size: 16px;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-bottom: 2px solid #1a425a;
}

/* =========================================
   File Upload Design (Resume)
   ========================================= */
.file-upload-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.file-input {
  padding: 15px;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  cursor: pointer;
  color: #1a425a;
  transition: all 0.3s ease;
}

.file-input:hover {
  border-color: #1a425a;
  background: #f0f4f8;
}

/* =========================================
   Conditional Fields & Button
   ========================================= */
.hidden-fields {
  display: none;
  flex-direction: column;
  animation: smoothOpen 0.5s ease-out forwards;
}

@keyframes smoothOpen {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.submit-btn {
  background-color: #1a425a; /* બ્રાન્ડનો ડાર્ક બ્લુ કલર */
  color: #ffffff;
  padding: 16px 35px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #245a7b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 66, 90, 0.2);
}

@media (max-width: 768px) {
  .form-row { flex-direction: column; gap: 0; }
}

/* =========================================
   Perfect File Upload Match (No Overlap)
   ========================================= */
.file-upload-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0eaf5; /* ઉપરના ઇનપુટ જેવી જ સેમ લાઈન */
  padding-bottom: 8px;
}

.file-upload-wrapper label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.file-upload-wrapper input[type="file"] {
  width: 100%;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  outline: none;
}

/* 'Choose File' બટનની પ્રોફેશનલ ડિઝાઇન */
.file-upload-wrapper input[type="file"]::file-selector-button {
  background: #1a425a;
  color: #ffffff;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  margin-right: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.file-upload-wrapper input[type="file"]::file-selector-button:hover {
  background: #245a7b;
}