/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #07b1d0f3;
  --secondary: #07b1d0;
  --accent: #07b1d0;
  --light: #f0f9f4;
  --dark: #0b2a25;
  --text: #333;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #f8fafc;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top Bar Styles */
.topbar {
  background: var(--secondary);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-left {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.top-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-right i {
  font-size: 0.8rem;
  opacity: 0.9;
}

.phone {
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* Header Styles */
.site-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.logo-image {
  height: clamp(40px, 8vw, 80px);
  width: auto;
  vertical-align: middle;
  margin: 0 5px;
}

.logo-text {
  color: var(--dark);
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav li {
  margin-left: 15px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.main-nav a:hover {
  color: var(--secondary);
}

.main-nav a.active {
  color: var(--secondary);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--dark);
}

.btn-outliner {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* Hero Carousel Section */
.hero-carousel {
  position: relative;
  height: 30vh;
  min-height: 400px;
  max-height: 500px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.carousel-slides {
  position: relative;
  height: 100%;
  width: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.carousel-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.carousel-content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.carousel-content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 20px;
  animation: fadeInUp 1s ease-out 0.6s both;
  flex-wrap: wrap;
}

.breadcrumb li {
  margin: 0 10px;
}

.breadcrumb a {
  color: var(--white);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  color: var(--white);
  margin-left: 10px;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 10;
}

.carousel-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.carousel-nav button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--dark);
  border-radius: 2px;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon,
.service-card:hover .service-content h3,
.service-card:hover .service-content p {
  color: white;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 20px;
  font-size: 2rem;
  color: var(--secondary);
  transition: all 0.4s ease;
}

.service-content {
  padding: 0 25px 30px;
  text-align: center;
}

.service-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 15px;
  color: var(--dark);
  transition: color 0.4s ease;
}

.service-content p {
  color: var(--dark);
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.service-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-link i {
  color: var(--secondary);
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--primary);
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-card:hover .service-link {
  color: white;
}

/* Featured Services - UPDATED FOR MOBILE RESPONSIVENESS */
.featured-services {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.featured-services::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.1;
}

.featured-services::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: var(--dark);
  border-radius: 50%;
  opacity: 0.05;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 20px;
}

.featured-content p {
  color: var(--dark);
  margin-bottom: 30px;
}

.featured-list {
  list-style: none;
}

.featured-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.featured-list i {
  color: var(--dark);
  margin-right: 10px;
  margin-top: 5px;
  font-size: 1.2rem;
}

.featured-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.featured-image:hover img {
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--light);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.btn-outline:hover {
  background: var(--text);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 178, 123, 0.2);
}

/* Specialized Services */
.specialized-services {
  padding: 80px 0;
  background: white;
}

.specialized-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  background: white;
  border: 2px solid var(--light);
  color: var(--text);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

.tab-btn:hover:not(.active) {
  border-color: var(--secondary);
  color: var(--secondary);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.specialized-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.specialized-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--light);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.specialized-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.specialized-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.specialized-details h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.specialized-details p {
  color: var(--text-light);
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://res.cloudinary.com/dl4hjr1p2/image/upload/v1762550338/undefined_icuzez.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: white;
  color: var(--primary);
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn-primary:hover {
  background: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer with Logo */
.site-footer {
  background: var(--secondary);
  color: var(--text);
  padding: 30px 0 10px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 10px;
}

.footer-col h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 25px;
  color: var(--dark);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--dark);
}

.footer-col p {
  margin-bottom: 20px;
  color: var(--text);
}

/* .footer-col i {
  color: var(--white);
} */

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-image {
  height: 70px;
  width: auto;
  margin-right: 10px;
  color: var(--text);
}

.footer-logo-text {
  color: var(--text);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.9rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--text);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--text);
  color: var(--secondary);
  transform: translateY(-3px);
}

/* NEW: Comprehensive Services Section */
.comprehensive-services {
  padding: 80px 0;
  background: var(--light);
}

.service-category {
  margin-bottom: 60px;
}

.service-category h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--dark);
}

.service-subcategory {
  margin-bottom: 40px;
}

.service-subcategory h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.service-subcategory h4 i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.service-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item i {
  color: var(--secondary);
  margin-right: 15px;
  font-size: 1.2rem;
}

.service-item span {
  font-weight: 500;
  color: var(--text);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .main-nav.active ul {
    display: flex;
  }
  .main-nav a:hover {
    color: var(--white);
  }

  .main-nav a.active {
    color: var(--text);
  }

  .main-nav li {
    margin: 10px 0;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-outliner {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
  }

  .hero-carousel {
    height: 60vh;
    min-height: 400px;
  }

  .carousel-content h1 {
    font-size: 2.5rem;
  }

  .carousel-content p {
    font-size: 1.1rem;
  }

  .carousel-nav {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .specialized-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .specialized-item {
    flex-direction: column;
    text-align: center;
  }

  .service-items {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  /* UPDATED: Featured Services for Mobile */
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured-content {
    order: 1;
  }

  .featured-image {
    order: 2;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 50vh;
    min-height: 350px;
  }

  .carousel-content h1 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .section-header h2,
  .featured-content h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .service-items {
    grid-template-columns: 1fr;
  }

  .specialized-item {
    padding: 20px;
  }

  .specialized-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .hero-carousel {
    height: 45vh;
    min-height: 300px;
  }

  .carousel-content h1 {
    font-size: 1.8rem;
  }

  .carousel-content p {
    font-size: 0.9rem;
  }

  .breadcrumb li {
    margin: 0 5px;
  }

  .breadcrumb a {
    font-size: 0.8rem;
  }

  .service-card {
    margin: 0 10px;
  }

  .service-item {
    padding: 15px;
  }

  .service-item i {
    font-size: 1rem;
    margin-right: 10px;
  }

  .service-item span {
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
