/* Google Fonts: Inter & Poppins are loaded in index.html */
:root {
  --navy: #1a1a40;
  --gold: #f4c542;
  --white: #fff;
  --gray: #f5f5f7;
  --font-main: 'Inter', 'Poppins', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--navy);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(26,26,64,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  display: block;
}

/* Hero Section */
.hero-section {
  background: var(--white);
  color: var(--white);
  padding: 0;
  text-align: center;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.hero-content {
  /*padding-top: 100px;*/
  /*padding-bottom: 80px;*/
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(26,26,64,0.08);
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover {
  background: var(--navy);
  color: var(--gold);
}

/* About Section */
.about-section {
  background: var(--gray);
  padding: 100px 0 100px 0;
  text-align: center;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.about-img {
  /*flex: 1 1 320px;*/
  min-width: 220px;
  max-width: 600px;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
}
.about-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,26,64,0.10);
  object-fit: cover;
}
.about-text {
  flex: 2 1 500px;
  min-width: 260px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--navy);
  background: none;
  padding: 0;
}
.about-text h3 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
  color: var(--navy);
  font-weight: 600;
  background: none;
  padding: 0;
}
.about-text p {
  font-size: 1.1rem;
  color: var(--navy);
  background: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1.1rem;
}
.about-list {
  margin: 0 0 1.5rem 0;
  padding-left: 1.2rem;
  color: var(--navy);
  font-size: 1.08rem;
}
.about-list li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
  list-style: disc inside;
}

/* Services Section */
.services-section {
  padding: 70px 0;
  background: var(--white);
  text-align: center;
}
.services-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: var(--gray);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,26,64,0.06);
  padding: 2rem 1.5rem;
  width: 240px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(26,26,64,0.10);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Why Choose Us Section */
.why-section {
  background: var(--gray);
  padding: 70px 0;
  text-align: center;
}
.why-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.why-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,26,64,0.06);
  padding: 1.5rem 1.2rem;
  width: 220px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(26,26,64,0.10);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

/* Contact Section */
.contact-section {
  padding: 70px 0 40px 0;
  background: var(--white);
}
.contact-container {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.contact-info {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 400px;
}
.contact-info h2 {
  margin-bottom: 1rem;
}
.contact-form {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 400px;
  background: var(--gray);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(26,26,64,0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form h3 {
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-main);
  resize: none;
}
.contact-form textarea {
  min-height: 90px;
}
.contact-form button {
  margin-top: 0.5rem;
}
.form-message {
  margin-top: 0.5rem;
  font-size: 0.98rem;
  color: var(--navy);
}
.map-placeholder {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,26,64,0.08);
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 4px 32px rgba(26,26,64,0.10);
  background: var(--navy);
  min-height: 420px;
  height: 100vh;
  max-height: 600px;
  display: flex;
  align-items: stretch;
}
.hero-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fadeIn 0.7s;
  transition: opacity 0.5s;
}
.hero-slide.active {
  display: flex;
  position: relative;
  opacity: 1;
  z-index: 2;
}
.hero-slide:not(.active) {
  opacity: 0;
  z-index: 1;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,64,0.55);
  z-index: 1;
}
.hero-slide .hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}
.hero-slide h1,
.hero-slide p {
  color: #fff;
  background: rgba(0,0,0,0.35);
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  display: inline-block;
  max-width: 90%;
  box-shadow: 0 2px 8px rgba(26,26,64,0.10);
  text-align: center;
}
.hero-slide h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 1.2rem;
}
.hero-slide p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.hero-slide .cta-btn {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  z-index: 2;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,26,64,0.7);
  color: var(--gold);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-arrow.left { left: 10px; }
.slider-arrow.right { right: 10px; }
.slider-arrow:hover { background: var(--gold); color: var(--navy); }
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.2rem;
  position: relative;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  max-width: none;
}
.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.slider-dots button.active {
  background: var(--gold);
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .services-grid, .why-grid, .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .service-card, .why-card, .contact-form, .contact-info {
    width: 100%;
    max-width: 500px;
  }
  .hero-slider {
    width: 100vw;
    max-width: 100vw;
    min-height: 220px;
    height: 32vh;
    max-height: 400px;
  }
  .hero-slide {
    min-height: 220px;
    height: 100%;
  }
  .hero-slide .hero-slide-content {
    max-width: 95vw;
    padding: 1.2rem 0.5rem;
  }
  .hero-slide h1 {
    font-size: 1.3rem;
    padding: 0.4rem 0.7rem;
  }
  .hero-slide p {
    font-size: 1rem;
    padding: 0.3rem 0.7rem;
  }
  .about-section h2, .services-section h2, .why-section h2 {
    font-size: 1.3rem;
  }
  .about-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .about-img, .about-text {
    max-width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: center;
  }
  .about-text {
    align-items: center;
  }
  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .nav-container {
    flex-direction: row;
    height: auto;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--white);
    flex-direction: column;
    width: 180px;
    gap: 1.2rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(26,26,64,0.08);
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .logo {
    font-size: 1.1rem;
  }
  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .hero-slider {
    min-height: 120px;
    height: 32vh;
    max-height: 400px;
  }
  .hero-slide {
    min-height: 120px;
    height: 100%;
  }
  .hero-slide .hero-slide-content {
    max-width: 99vw;
    padding: 0.7rem 0.2rem;
  }
  .hero-slide h1 {
    font-size: 1rem;
  }
  .hero-slide p {
    font-size: 0.85rem;
  }
  .whatsapp-float {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 99999 !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18) !important;
  width: 56px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
  cursor: pointer !important;
}


} 