* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  margin: 0 0 15px;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
.header {
  background: #111;
  color: #fff;
  padding: 1rem 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #007BFF;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-video {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.logo h1 {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-menu li a:hover {
  color: #00c6ff;
}

.nav-menu a.active {
  color: #00c6ff;
  font-weight: 700;
  border-bottom: 2px solid #fff;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  color: #fff;
  font-size: 28px;
  z-index: 1001;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.active {
  display: block;
  opacity: 1;
}
.hero {
  background: linear-gradient(to right, #007BFF, #00C851);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.cta-btn, 
.btn-primary {
  display: inline-block;
  background: #fff;
  color: #007BFF;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover, 
.btn-primary:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.services {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.services h2 {
  margin-bottom: 50px;
  font-size: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  width: 280px;
  display: inline-block;
  vertical-align: top;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s ease;
}

.service-card i {
  font-size: 40px;
  color: #007BFF;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.pricing {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 10px;
  margin: 15px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  color: #004080;
  margin-bottom: 10px;
}

.price {
  font-size: 1.5em;
  font-weight: bold;
  margin: 15px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  margin: 10px 0;
}

.featured {
  border: 2px solid #004080;
  transform: scale(1.05);
}
.ratings {
  background: #e4ebf2;
  padding: 60px 20px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}

.ratings iframe {
  border-radius: 10px;
  box-shadow:   1px 4px 10px rgba(0,0,0,0.1);
}

.faq {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.faq h2 {
  color: #004080;
  margin-bottom: 30px;
}

.faq-item {
  max-width: 700px;
  margin: 20px auto;
  text-align: left;
}

.faq-item h3 {
  color: #0066cc;
  margin-bottom: 10px;
}

.faq-item p {
  margin: 0 0 20px;
  line-height: 1.6;
}
.about {
  padding: 80px 20px;
  background: #f4f6f9;
  text-align: center;
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  color: #333;
}

.about .container {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  position: relative;
}

.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #007BFF;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

.about h3 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #007BFF;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  max-width: 600px;
  text-align: left;
}

.about-list li {
  background: #fff;
  padding: 12px 18px;
  margin-bottom: 12px;
  border-left: 4px solid #007BFF;
  border-radius: 4px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.about-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #f0f8ff;
  border-left-color: #005a9e;
}
.mission, 
.vision {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.mission h2, 
.vision h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 20px;
}

.mission p, 
.vision p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.values {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.values h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 30px;
}

.values ul {
  list-style: none;
  max-width: 700px;
  margin: auto;
  padding: 0;
  text-align: left;
}

.values ul li {
  margin: 15px 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.values ul li strong {
  color: #0066cc;
}
.team {
  padding: 60px 20px;
  background: #f4f6f9;
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 40px;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.team-member {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member h3 {
  color: #0066cc;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 1rem;
  line-height: 1.6;
}
.contact, 
.contact-form {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.contact h2, 
.contact-form h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 30px;
}

form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, 
select, 
textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

textarea {
  min-height: 150px;
  resize: none;
}

button {
  padding: 12px 25px;
  border: none;
  background: #007BFF;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: #111;
}

.contact-info {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.contact-info h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 10px 0;
  line-height: 1.6;
}

.contact-info strong {
  color: #0066cc;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #007BFF;
  font-weight: 500;
}

.social-links a:hover {
  text-decoration: underline;
}
.cta {
  background: linear-gradient(to right, #007BFF, #00C851);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-weight: 700;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 15px;
  border-radius: 50%;
  border: none;
  background: #007BFF;
  color: white;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.scroll-top:hover {
  background: #111;
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #002b5c;
    padding: 20px;
    border-radius: 8px;
    gap: 15px;
    width: 220px;
    box-shadow: 0 4px 10px rgba(183, 238, 237, 0.2);
    text-align: center;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
    animation: slideIn 0.3s ease forwards;
  }

  .menu-toggle {
    display: block;
  }

  .hero h2, 
  .cta h2 {
    font-size: 1.8rem;
  }

  .contact-form form {
    width: 100%;
  }

  .contact-info {
    padding: 40px 15px;
  }
  .ratings {
  background: #242729;
  padding: 60px 20px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}
.contact-info {
  font-family: Arial, sans-serif;
  margin: 20px;
}

.contact-info h2 {
  color: #333;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 5px 0;
}

.socialMedia a {
  margin-right: 15px;
  text-decoration: none;
  font-weight: bold;
}

.socialMedia a i {
  margin-right: 5px;
}

.socialMedia a:hover {
  color: #0077b5;
}


.ratings iframe {
  border-radius: 10px;
  box-shadow:   4px 4px 10px rgba(0,0,0,0.1);
  min-width: 100%;
  width: 100%;
  z-index: 1;

}
.ratings iframe :hover{
  box-shadow: darkblue 5px 3px 10px;
}

@media (max-width: 480px) {
  .contact-form input,
  .contact-form textarea,
  .btn-primary {
    font-size: 0.95rem;
    padding: 10px;
  }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
body.dark {
  background-color: #1a1a1a;
  color: gold;
}

body.dark .header { background: #000;}
body.dark .service-card, body.dark .pricing-card, body.dark .team-member {
  background: #2d2d2d;
  color: gold;
}
body.dark .about, body.dark .pricing, body.dark .team {
  background: #121212;
}

.dark-toggle {
  position: fixed;
  top: 85px;
  right: 20px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  background: #007BFF;
  bottom: 90px;
  width: 50px;
  height: 50px;
  color:gold;
  border: none;
  z-index: 1001;
  font-size: 1.2rem;
}
.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
body {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
body.dark .service-card, body.dark .pricing-card, body.dark .about-list li {
  background: #1e1e1e;
  color:gold;
}
.hidden { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.show { opacity: 1; transform: translateY(0); 
}.contact-info {
  font-family: Arial, sans-serif;
  margin: 20px;
}

.contact-info h2 {
  color: #333;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info {
  font-family: Arial, sans-serif;
  margin: 20px;
}

.contact-info h2 {
  color: #333;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 5px 0;
}

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

.socialMedia a {
  text-decoration: none;
  font-weight: bold;
  color: #007BFF; 
}

.socialMedia a i {
  margin-right: 5px;
}

/* Hover effects with brand colors */
.socialMedia a[href*="wa.me"]:hover {
  color: #25D366; /

.socialMedia a[href*="linkedin"]:hover {
  color: #0077b5;
}

.socialMedia a[href*="x.com"]:hover {
  color: #1DA1F2;
}
