/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.site-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 50px;
  border-radius: 50px;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #007BFF;
}






/* === Dropdown Fix === */
nav ul li {
  position: relative;
}

nav ul li ul {
  display: none;
  position: absolute;
  top: 100%; /* Directly below parent */
  left: 0;
  background-color: #fff;
  min-width: 200px;
  z-index: 999;
}

nav ul li:hover > ul {
  display: block;
}

nav ul li ul li {
  padding: 10px;
  white-space: nowrap;
}

nav ul li ul li:hover {
  background-color: #f0f0f0;
}

/* Arrow styling */
nav ul li .arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when hovering on parent */
nav ul li:hover .arrow {
  transform: rotate(180deg);
}


/* Button */
.header-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn {
  background-color: #007BFF;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #0056b3;
}


.btn:hover {
  background-color: #0056b3;
}

/* Mobile Styles */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
  }

  .menu-toggle {
    display: block;
  }

  .header-btn {
    gap: 10px;
  }
}

/* WhatsApp Link Styling */
.whatsapp-link {
  background-color: #25D366;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.whatsapp-link i {
  font-size: 16px;
}

.whatsapp-link:hover {
  background-color: #1da851;
}

/* Hero Section */
.hero {
  background-image: url('img/hero.jpg'); /* Change to your image path */
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  padding: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: slideInDown 1.2s ease-in-out;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeIn 2s ease-in-out;
}

.hero-btn {
  background-color: #FFD700; /* Gold color */
  color: black;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  animation: fadeInUp 2.5s ease-in-out;
}

.hero-btn:hover {
  background-color: #e0be00;
}

/* Animations */
@keyframes slideInDown {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Services Section */
.services {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Stronger shadow */
  overflow: hidden;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25); /* Hover effect */
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 20px 0 10px;
  font-size: 1.3rem;
  color: #333;
}

.card p {
  padding: 0 15px;
  font-size: 0.95rem;
  color: #666;
  min-height: 100px;
}

.card-btn {
  display: inline-block;
  margin: 20px 0;
  background: #002244;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.card-btn span {
  font-weight: bold;
  font-size: 1.2em;
  margin-left: 6px;
}

.card-btn:hover {
  background: #003366;
}

.services-overview {
  padding: 60px 20px;
  background: #f9f9f9;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  
}

.services-left {
  flex: 1 1 40%;
}

.services-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-left h2 span {
  display: block;
  font-size: 1.2rem;
  color: #999;
  font-weight: 400;
}

.services-left p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-btn i {
  margin-right: 10px;
}

.whatsapp-btn:hover {
  background: #1ebe5c;
}

/* SERVICE BUTTONS */
.services-right {
  flex: 1 1 50%;
}

.services-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.service-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 14px 20px;
  font-size: 1.05rem;
  color: #333;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-btn i {
  font-size: 1.2rem;
  color: #2a8be5;
}

.service-btn:hover {
  background-color: #2a8be5;
  color: white;
  transform: translateY(-3px);
}

.service-btn:hover i {
  color: white;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #111;
}

.section-heading h2 span {
  color: #2a8be5;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Basic layout */
:root{
  --blue:#004aad;
  --blue-dark:#003080;
  --bg:#ffffff;
  --text:#333;
}

*{box-sizing:border-box}
body{font-family:Inter, system-ui, Arial, Helvetica, sans-serif; margin:0; color:var(--text); background:var(--bg);}

/* Section */
/* Basic layout */
:root{
  --blue:#004aad;
  --blue-dark:#003080;
  --bg:#ffffff;
  --text:#333;
}

*{box-sizing:border-box}
body{font-family:Inter, system-ui, Arial, Helvetica, sans-serif; margin:0; color:var(--text); background:var(--bg);}

.why-choose-us {
  background: #ffffff; /* light blue */
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #2b93fa;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #1ba4ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.icon-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.icon-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.9);
}

.icon-box.show {
  opacity: 1;
  transform: scale(1);
}

.icon-box i {
  font-size: 40px;
  color: #555;
  margin-bottom: 15px;
}

.icon-box h3 {
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 10px;
}

.icon-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.counter-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px 10px;
  background: #3261fc;
}

.counter-heading {
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
}

.counter-subtitle {
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 30px;
  font-style: italic;
}

.counter-box {
  text-align: center;
  flex: 1 1 200px;
  margin: 10px;
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
}

.plus {
  font-size: 3rem;
  font-weight: bold;
  color: #fffdfd;
  margin-left: 5px;
  opacity: 0;
  transition: opacity 0.6s ease-in;
}

.counter-box p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #ffffff;
}

/* Layout */
.portfolio-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 10%;
  background: #fff;
}

.portfolio-content {
  flex: 1;
}

.portfolio-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.portfolio-content strong {
  color: #1653fc;
}

.portfolio-content p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.3px;
  text-align: justify;
  background: linear-gradient(to right, #ffffff, #f9f9f9);
  padding: 15px 20px;
  border-left: 4px solid rgb(36, 123, 253);
  border-radius: 6px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}


/* Slider Styles */
.portfolio-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  border-radius: 8px;
}

/* Arrows */
.arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.arrows span {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dots span {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dots span.active {
  background-color: #1e64fc;
}

/* Responsive */
@media (max-width: 900px) {
  .portfolio-section {
    flex-direction: column;
    text-align: center;
  }
}

.our-location {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
  background-color: #e6f2ff; /* Light blue background */
}

.location-text {
  flex: 1 1 400px;
  padding: 20px;
  background: linear-gradient(to right, #f0f8ff, #e6f0ff);
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease-in-out;
}

.location-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #004aad; /* Deep blue accent */
  font-weight: 700;
}

.location-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


.location-map {
  flex: 1 1 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .our-location {
    flex-direction: column;
  }
}

.footer {
  background-color: #004080; /* Deep Blue */
  color: white;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgb(253, 253, 253);
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: gold;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Section Layout */
.team-section {
  padding: 80px 10%;
  background: #f9fbff;
  text-align: center;
}

/* Header */
.team-header h3 {
  color: #1e90ff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-header h2 {
  font-size: 32px;
  color: #222;
  font-weight: 700;
  margin-bottom: 20px;
}

.team-header p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Features */
.team-features {
  margin-bottom: 40px;
}

.team-features span {
  display: inline-block;
  margin: 8px 15px;
  color: #333;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 20px;
  background: linear-gradient(90deg, #1e90ff, #3ba7ff);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(30, 144, 255, 0.3);
}

