/* Modern Services Section Styles */
:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --text-color: #1f2937;
  --light-text: #6b7280;
  --background: #ffffff;
  --card-bg: #ffffff;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background);
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-family: "Albert Sans", sans-serif;
  color: black;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .logo {
  height: 50px;
  width: 100px;
}

.header .logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #2196f3;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #2196f3;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.header .button {
  border: 2px solid #c5baff;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header .button:hover {
  background-color: #c5baff;
  color: white;
  transform: translateY(-2px);
}

.header .bars {
  display: none;
  font-size: 1.6rem;
}

/* Dropdown Styles */
.nav-menu .dropdown .link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown-content a {
  color: #333;
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #2196f3;
  border-left: 3px solid #2196f3;
}

.dropdown i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: #333;
}

.dropdown:hover .dropdown-content {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.dropdown:hover i {
  transform: rotate(180deg);
  color: #2196f3;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: white;
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 1001;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  font-family: "Albert Sans", sans-serif;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  z-index: 1002;
  transition: color 0.3s ease;
}

.mobile-menu .close-btn:hover {
  color: #2196f3;
}

.mobile-menu nav {
  width: 100%;
}

.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
  width: 100%;
  gap: 1.5rem;
}

.mobile-menu .nav-menu li {
  width: 100%;
}

.mobile-menu .nav-menu a {
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  width: 100%;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu .nav-menu a:hover {
  color: #2196f3;
}

.mobile-menu .dropdown {
  padding: 0;
  width: 100%;
}

.mobile-menu .dropdown .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 0rem 0;
}

.mobile-menu .dropdown .link span {
  font-weight: 500;
  color: #333;
  font-size: 1.2rem;
  font-family: "Albert Sans", sans-serif;
  margin-right: 0.5rem;
  padding: 0.5rem 0;
}

.mobile-menu .dropdown-content {
  position: static;
  box-shadow: none;
  display: none;
  width: 100%;
  padding-left: 1rem;
  margin-top: 0.5rem;
  background-color: transparent;
}

.mobile-menu .dropdown.active .dropdown-content {
  display: block;
}

.mobile-menu .dropdown-content a {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: #555;
  display: block;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-menu .dropdown-content a:hover {
  color: #2196f3;
  border-left: 2px solid #2196f3;
  padding-left: 0.5rem;
}

.mobile-menu .dropdown i {
  transition: transform 0.3s ease;
  color: #333;
}

.mobile-menu .dropdown.active i {
  transform: rotate(180deg);
  color: #2196f3;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  backdrop-filter: blur(3px);
}

.overlay.active {
  display: block;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.8;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

/* Service Card */
.service-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Icon Wrapper */
.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  /* background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white; */
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .icon-wrapper {
  transform: scale(1.1);
}

/* Card Content */
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-card p {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.7;
}

/* Banner Section */
.banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Albert Sans", sans-serif;
}

.banner .ban {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .ban .content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 15rem;
}

.banner .ban .content .maincontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #c4d9ff;
  padding: 3rem 0rem;
  border-radius: 20px;
  gap: 3rem;
  text-align: center;
}

.banner .ban .content .maincontent .head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banner .ban .content .maincontent .head h1 {
  font-size: 2rem;
  padding: 0 12rem;
}

.banner .ban .content .maincontent .head p {
  font-size: 1.05rem;
  padding: 0 15rem;
}

.banner .ban .content .maincontent .btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  background-color: #c4d9ff;
  padding: 5px;
  border-radius: 30px;
}

.banner .ban .content .maincontent .btn input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.banner .ban .content .maincontent .btn input:focus {
  border-color: #2196f3;
}

.banner .ban .content .maincontent .btn span {
  background-color: #c5baff;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.banner .ban .content .maincontent .btn span:hover {
  background-color: #1976d2;
}

/* Footer */
.modern-footer {
  background-color: #c5baff;
  color: #000;
  padding: 4rem 0 2rem;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-company h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.footer-company p {
  color: #323232;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #3a3a3a;
  transform: translateY(-3px);
}

.footer-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  color: #000;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #1f1f1f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modern-footer .footer-container .footer-grid .footer-company .img {
  height: 50px;
  width: 90px;
  background-image: url("./public/images/logo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Floating Action Buttons */
.floating-button {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #fff; */
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.floating-button:hover {
  transform: scale(1.1);
  /* color: #fff; */
}

.whatsapp-button {
  background-color: #25d366;
  bottom: 20px;
  color: white;
  right: 20px;
}

.call-button {
  /* background-color: #007bff; */
  bottom: 20px;
  left: 20px;
}

.ph {
  z-index: 2000;
  color: black;
}

.unread-message {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: #fff;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .header {
    padding: 1rem 3rem;
  }

  .page1 .subpage1 .content .right {
    width: 400px;
    height: 350px;
  }

  /* Banner Responsive Styles */
  .banner .ban .content {
    padding: 2rem 8rem;
  }

  .banner .ban .content .maincontent .head h1 {
    font-size: 1.8rem;
    padding: 0 6rem;
  }

  .banner .ban .content .maincontent .head p {
    font-size: 1rem;
    padding: 0 8rem;
  }

  /* Footer Responsive Styles */
  .footer-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 1.5rem;
  }

  .footer-company h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 1050px) {
  .header {
    padding: 1rem 2rem;
  }
  .nav-menu a {
    font-size: 0.9rem;
  }

  .header .button {
    font-size: 0.9rem;
  }

  .nav-menu .dropdown .link {
    font-size: 0.9rem;
  }

  .nav-menu .dropdown .link i {
    font-size: 0.95rem;
  }

  /* Banner Responsive Styles */
  .banner .ban .content {
    padding: 2rem 4rem;
  }

  .banner .ban .content .maincontent .head h1 {
    font-size: 1.6rem;
    padding: 0 4rem;
  }

  .banner .ban .content .maincontent .head p {
    font-size: 0.9rem;
    padding: 0 5rem;
  }

  .banner .ban .content .maincontent .btn {
    max-width: 500px;
  }

  /* Footer Responsive Styles */
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-links h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 860px) {
  .header .logo {
    height: 40px;
    width: 80px;
  }

  .header {
    padding: 1rem 0.9rem;
  }

  .nav-menu a {
    font-size: 0.89rem;
  }

  .header .button {
    font-size: 0.8rem;
  }

  .hero-section {
    margin: 8rem 3rem 1rem 3rem;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  /* ////change */

  .nav-menu .dropdown .link {
    font-size: 0.9rem;
  }

  .nav-menu .dropdown .link i {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .header .logo {
    height: 50px;
    width: 100px;
  }

  .header {
    padding: 1rem 2rem;
  }

  .nav-menu {
    display: none;
  }

  .header .button {
    display: none;
  }

  .header .bars {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
  }

  .header .bars:hover {
    color: #2196f3;
  }

  .services-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 25px;
  }

  /* Banner Responsive Styles */

  .banner {
    margin-bottom: 10px;
  }

  .banner .ban .content {
    padding: 1.5rem 2rem;
  }

  .banner .ban .content .maincontent {
    padding: 2rem 1rem;
  }

  .banner .ban .content .maincontent .head h1 {
    font-size: 1.4rem;
    padding: 0 2rem;
  }

  .banner .ban .content .maincontent .head p {
    font-size: 0.9rem;
    padding: 0 2rem;
  }

  .banner .ban .content .maincontent .btn {
    max-width: 400px;
    flex-direction: column;
    gap: 1rem;
  }

  .banner .ban .content .maincontent .btn input {
    width: 100%;
  }

  .banner .ban .content .maincontent .btn span {
    width: 100%;
    text-align: center;
  }

  /* Footer Responsive Styles */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .header {
    padding: 1rem 1.8rem;
  }

  /* Banner Responsive Styles */
  .banner .ban .content {
    padding: 1rem;
  }

  .banner .ban .content .maincontent {
    padding: 1.5rem 1rem;
  }

  .banner .ban .content .maincontent .head h1 {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

  .banner .ban .content .maincontent .head p {
    font-size: 0.85rem;
    padding: 0 1rem;
  }

  /* Footer Responsive Styles */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-company {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 460px) {
  .header {
    padding: 1.3rem 1rem;
  }

  /* Banner Responsive Styles */
  .banner .ban .content {
    padding: 0.8rem;
  }

  .banner .ban .content .maincontent {
    padding: 1.2rem 0.8rem;
  }

  .banner .ban .content .maincontent .head h1 {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }

  .banner .ban .content .maincontent .head p {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }

  /* Footer Responsive Styles */
  .modern-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-company h2 {
    font-size: 1.4rem;
  }

  .footer-links h3 {
    font-size: 1.1rem;
  }

  .footer-links ul li a {
    font-size: 0.9rem;
  }

  .social-links a {
    width: 35px;
    height: 35px;
  }

  .copyright p {
    font-size: 0.9rem;
  }

  .footer-legal a {
    font-size: 0.9rem;
  }
}

/* Animation Classes */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
