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

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


:root {
  --primary-color: #00BFFF; /* SkyBlue */
  --secondary-color: #808080; /* Grey */
  --accent-color: #00BFFF;
  --background-color: #ffffff;
  --text-color: #000000;
  --light-gray: #f3f4f6;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #808080;
}
::selection{
  background: rgb(0,123,255,0.3);
}
.content{
  max-width: 1250px;
  margin: auto;
  padding: 0px 30px;
}

.navbar{
  position: fixed;
  z-index: 5;
  width: 100%;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.navbar.sticky{
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.navbar .logo a{
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  text-decoration: none;
}
.navbar .menu-list{
  display: flex;
  gap: 2rem;
  list-style: none;
}
.menu-list li{
  list-style: none;
}
.menu-list li a{
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.menu-list li a:hover{
  color: var(--primary-color);
}


.ct{
  color: #808080;
  
}

/*---------------------------------------------------------------*/





/* Hero Section */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color), #1e90ff);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.animated-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 15s infinite;
}

.shape1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.shape2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: -100px;
  animation-delay: -5s;
}

.shape3 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: 50%;
  animation-delay: -10s;
}

.shape4 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 30%;
  animation-delay: -7s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -50px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.animated-text {
  color: white;
}

.animated-text .text {
  display: block;
  opacity: 0;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out forwards;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.animated-text .text:nth-child(1) {
  animation-delay: 0.5s;
}

.animated-text .text:nth-child(2) {
  animation-delay: 1s;
  color: #fff;
  position: relative;
  display: inline-block;
}

.animated-text .text:nth-child(2)::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: white;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1s ease-out forwards;
  animation-delay: 1.5s;
}

.animated-text .text:nth-child(3) {
  animation-delay: 1.5s;
}

.animated-text .subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin: 1.5rem 0;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 2s;
}

.cta-container {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 2.5s;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  background-color: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--light-gray);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

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

/* Update responsive styles */
@media (max-width: 768px) {
  .animated-text .text {
    font-size: 2.5rem;
  }
  
  .shape {
    opacity: 0.5;
  }
  
  .shape1 {
    width: 200px;
    height: 200px;
  }
  
  .shape2 {
    width: 150px;
    height: 150px;
  }
  
  .shape3 {
    width: 100px;
    height: 100px;
  }
  
  .shape4 {
    width: 75px;
    height: 75px;
  }
}

/*---------------------------------------------------------------*/


.privacy-container {
  /* max-width: 600px; */
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  box-sizing: border-box;

  justify-items: center;

  
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
}


/* --------------------------- */
.footer-container {
  width: 100%;
  background-color: var(--text-color);
  padding: 2rem 0;
  text-align: center;
  /* position: fixed; */
  bottom: 0;
  left: 0;
  color: white;
}

.footer-container a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

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


/* ------------------------------------- */

.privacy-container ul{
  padding-left: 20px;
}

#headingIn{
  font-weight:600;
  padding-bottom: 5px;
}

/* Container for the tiles */
.tiles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Tile Styles */
.tile {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
  border: 1px solid rgba(0, 191, 255, 0.1);
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 191, 255, 0.15);
  border-color: var(--primary-color);
}

.tile-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 191, 255, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.tile:hover .tile-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.service-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.tile:hover .service-icon {
  color: white;
}

.tile h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  transition: color 0.3s ease;
  text-align: center;
}

.tile:hover h2 {
  color: var(--primary-color);
}

.tile p {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
  font-size: 0.95rem;
}

.tile-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  justify-content: center;
}

.tile-features span {
  background: rgba(0, 191, 255, 0.08);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tile-features span i {
  font-size: 0.9rem;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  background: rgba(0, 191, 255, 0.1);
  margin: 0 auto;
  width: fit-content;
}

.tile:hover .learn-more {
  background: var(--primary-color);
  color: white;
}

.learn-more i {
  transition: transform 0.3s ease;
}

.tile:hover .learn-more i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .tiles-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .tile {
    padding: 2rem 1.5rem;
  }

  .tile h2 {
    font-size: 1.4rem;
  }

  .tile-features {
    flex-direction: column;
  }

  .tile-features span {
    width: 100%;
    justify-content: center;
  }
}

/* Tile-specific colors (optional) */
#app-dev {
  background-color: #fff;
  color: var(--primary-color);
}

#website-dev {
  background-color: #fff;
  color: var(--primary-color);
}

#branding {
  background-color: #fff;
  color: var(--primary-color)
}





.banner{
  background-color: #fff;
  width: 100%;
  height: 728px;     /* height: 728px; */
  
}


.f1{
  width: 100%;
  height: 728px;            
  background-color: #8b8a8a;

}


.f2{
  width: 100%;
  height: 728px;
  background-color: var(--primary-color);
  padding: 80px;
}





.about{
  padding: 96px 0;
  color: #fff;

}
.about .title{
  font-size: 28px;
  font-weight: 500; background-color:#00bfff;  
  text-align:center;

}
.about p{
  padding-top: 20px;
  text-align: justify;
}
.icon{
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: none;
}
.icon.cancel-btn{
  position: absolute;
  right: 30px;
  top: 20px;
}
.navbar.sticky .icon.cancel-btn{
  top: 10px;
}
@media (max-width: 768px) {
  body.disabledScroll{
    overflow: hidden;
  }
  .icon{
    display: block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 9;
  }
  .icon.cancel-btn{
    display: none;
  }
  .icon.cancel-btn.show{
    display: block;
  }
  .icon.hide{
    display: none;
  }
  .navbar .menu-list{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: var(--primary-color) ;
    display: block;
    padding: 40px 0;
    text-align: center;
    clip-path: circle(25px at calc(100% - 55px) calc(0% + 50px));
    transition: all 0.3s ease;
  }
  .navbar.sticky .menu-list{
    clip-path: circle(25px at calc(100% - 55px) calc(0% + 43px));
  }
  .navbar .menu-list.active{
    clip-path: circle(75%);
  }
  .navbar .menu-list li{
    margin-top: 60px;
  }
  .navbar .menu-list li a{
    font-size: 23px;
  }
}

.logo{
flex:1;
}

.logo a{
display:flex; align-item:center; font-size: 20px; 
}

.logo a:hover{
color:#fff;
}

.logo img{
width:112px; margin-right:10px;
}

a:hover, a.active{
    background: none;
    color:  var(--primary-color) ;
  }



.button {
  border: none;
  border-radius: 10%/40% ;
  align-items: center;
  width: 180px;
  height: 50px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color:#000000;

}

.button :hover{
  background-color: #00BFFF;
}

.footer {
  background-color: var(--primary-color);
  border: none;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #343d46;
  padding: 14px 0;
  display: inline-block;
}

.footer0 {
  background-color: #4f5b66;
  color: var(--primary-color);
}





.success{
  background-color: #fff;
  display: flexbox;
  justify-content: center;
  align-items: center;
}

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), #1e90ff);
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.header-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-card h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.service-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-button:hover {
  background-color: #1e90ff;
  transform: translateY(-2px);
}

/* CTA Section */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.section-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

.section-header p {
  color: var(--secondary-color);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.tiles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tile {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.tile:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tile:hover::before {
  opacity: 0.1;
}

.tile > * {
  position: relative;
  z-index: 1;
}

.tile-icon {
  width: 80px;
  height: 80px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.tile:hover .tile-icon {
  background: var(--primary-color);
  transform: rotateY(180deg);
}

.tile:hover .tile-icon i {
  color: white;
  transform: rotateY(-180deg);
}

.service-icon {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.tile h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.tile h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tile:hover h2 a {
  color: var(--primary-color);
}

.tile p {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tile-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tile-features span {
  background: rgba(0, 191, 255, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.tile:hover .tile-features span {
  background: var(--primary-color);
  color: white;
}

.tile-features span i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.tile:hover .tile-features span i {
  transform: scale(1.2);
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.tile:hover .service-highlights li {
  transform: translateX(10px);
}

.service-highlights li i {
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.tile:hover .service-highlights li i {
  transform: scale(1.2);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(0, 191, 255, 0.1);
}

.tile:hover .learn-more {
  background: var(--primary-color);
  color: white;
  gap: 0.8rem;
}

.learn-more i {
  transition: transform 0.3s ease;
}

.tile:hover .learn-more i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .tiles-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .tile {
    padding: 1.5rem;
  }

  .tile h2 {
    font-size: 1.5rem;
  }

  .tile-features {
    flex-direction: column;
  }

  .tile-features span {
    width: 100%;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--light-gray);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), #1e90ff);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background-color: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.95);
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.footer-container {
  background-color: var(--text-color);
  padding: 4rem 0 2rem;
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.footer-section:hover h3::after {
  width: 60px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0;
}

.footer-section a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: var(--primary-color);
  background: white;
  transform: translateY(-3px);
}

.footer {
  background-color: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-section a:hover {
    transform: translateX(0) scale(1.05);
  }

  .social-links {
    justify-content: center;
  }
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 1rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.process-step h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.process-step p {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Service Card Enhancements */
.service-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  transform: rotateY(180deg);
}

.service-card:hover .service-icon i {
  color: white;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.service-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-color);
}

.service-features li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.service-button:hover {
  background-color: #1e90ff;
  transform: translateY(-2px);
}

.service-button i {
  transition: transform 0.3s ease;
}

.service-button:hover i {
  transform: translateX(5px);
}

/* Responsive Design for Process Timeline */
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }

  .step-number {
    margin: 0;
  }

  .process-step h3 {
    margin-bottom: 0.2rem;
  }
}

/* Animation Classes */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos-delay="200"] {
  transition-delay: 0.2s;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: white;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.about-text:hover h2::after {
  width: 100px;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-color);
  font-size: 1.1rem;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.value-card p {
  color: var(--secondary-color);
  font-size: 1rem;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-image i {
  font-size: 4rem;
  color: var(--primary-color);
}

.team-card h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--secondary-color);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  padding: 2rem;
}

.contact-info h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.5rem;
}

.info-item h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.info-item p {
  color: var(--secondary-color);
  line-height: 1.6;
}

.contact-form {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 15px;
}

.contact-form h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-form h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 8px;
  background: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.8rem;
  background: white;
  padding: 0 0.5rem;
  color: var(--primary-color);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #1e90ff;
  transform: translateY(-2px);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Map Section */
.map-section {
  padding: 0;
  background: var(--light-gray);
}

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }

  .info-item {
    padding: 0.8rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.8rem;
  }
}

/* Privacy Section */
.privacy-section {
  padding: 5rem 0;
  background: white;
}

.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-text {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-text h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin: 2rem 0 1rem;
  position: relative;
}

.privacy-text h2:first-child {
  margin-top: 0;
}

.privacy-text h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.privacy-text p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.info-card {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card ul li {
  color: var(--text-color);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.info-card ul li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.privacy-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.privacy-text ul li {
  color: var(--text-color);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-text ul li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.contact-info {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-content {
    padding: 0 1rem;
  }

  .privacy-text {
    padding: 1.5rem;
  }

  .privacy-text h2 {
    font-size: 1.8rem;
  }

  .info-card {
    padding: 1rem;
  }
}

/* Terms & Conditions Page Styles */
.terms-section {
  padding: 80px 20px;
  background: var(--light-gray);
}

.terms-content {
  max-width: 1200px;
  margin: 0 auto;
}

.terms-text {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-text h2 {
  color: var(--primary-color);
  margin: 30px 0 20px;
  font-size: 24px;
  position: relative;
  padding-bottom: 10px;
}

.terms-text h2:first-child {
  margin-top: 0;
}

.terms-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.terms-text h2:hover::after {
  width: 100px;
}

.terms-text p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.terms-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-text ul li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.terms-text ul li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 20px;
}

.terms-text ul li:hover {
  transform: translateX(10px);
}

.info-card {
  background: var(--light-gray);
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.contact-info {
  background: var(--light-gray);
  padding: 25px;
  border-radius: 8px;
  margin-top: 20px;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .terms-text {
    padding: 20px;
  }

  .terms-text h2 {
    font-size: 20px;
  }

  .info-card {
    padding: 15px;
  }

  .contact-info {
    padding: 15px;
  }
}

/* Refund Policy Page Styles */
.refund-section {
  padding: 80px 20px;
  background: var(--light-gray);
}

.refund-content {
  max-width: 1200px;
  margin: 0 auto;
}

.refund-text {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.refund-text h2 {
  color: var(--primary-color);
  margin: 30px 0 20px;
  font-size: 24px;
  position: relative;
  padding-bottom: 10px;
}

.refund-text h2:first-child {
  margin-top: 0;
}

.refund-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.refund-text h2:hover::after {
  width: 100px;
}

.refund-text p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.refund-text ul, .refund-text ol {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.refund-text ul li, .refund-text ol li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.refund-text ul li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 20px;
}

.refund-text ol li {
  counter-increment: item;
  padding-left: 35px;
}

.refund-text ol li::before {
  content: counter(item) ".";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.refund-text ul li:hover, .refund-text ol li:hover {
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .refund-text {
    padding: 20px;
  }

  .refund-text h2 {
    font-size: 20px;
  }

  .info-card {
    padding: 15px;
  }

  .contact-info {
    padding: 15px;
  }
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.expertise-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.expertise-list li:hover {
  transform: translateX(10px);
}

.expertise-list li i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.about-text {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-text:hover {
  transform: translateY(-5px);
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.about-text:hover h2::after {
  width: 100px;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* About Page Specific Styles */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.expertise-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.expertise-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.expertise-item h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.expertise-item p {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.commitment-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(10px);
  background: var(--primary-color);
}

.feature:hover i,
.feature:hover span {
  color: white;
}

.feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.feature span {
  color: var(--text-color);
  font-weight: 500;
}

.vision-quote {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.vision-quote i {
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.5;
}

.vision-quote i.fa-quote-left {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.vision-quote i.fa-quote-right {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.vision-quote p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-color);
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .commitment-features {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .vision-quote {
    padding: 1.5rem;
  }

  .vision-quote p {
    font-size: 1.1rem;
  }
}

/* Enhanced Services Section Styles */
.tiles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tile {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.tile-icon {
  width: 80px;
  height: 80px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.tile:hover .tile-icon {
  background: var(--primary-color);
}

.service-icon {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.tile:hover .service-icon {
  color: white;
}

.tile h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.tile:hover h2 {
  color: var(--primary-color);
}

.tile p {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tile-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.tile-features span {
  background: rgba(0, 191, 255, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.tile-features span i {
  font-size: 1rem;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  background: rgba(0, 191, 255, 0.1);
  margin: 0 auto;
  width: fit-content;
}

.tile:hover .learn-more {
  background: var(--primary-color);
  color: white;
}

.learn-more i {
  transition: transform 0.3s ease;
}

.tile:hover .learn-more i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .tiles-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .tile {
    padding: 1.5rem;
  }

  .tile h2 {
    font-size: 1.5rem;
  }

  .tile-features {
    flex-direction: column;
  }

  .tile-features span {
    width: 100%;
  }
}