/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #006f3c;
  --primary-dark: #004d2a;
  --primary-light: #00994d;
  --secondary: #e82224;
  --secondary-dark: #c41e20;
  --accent: #006939;
  --white: #ffffff;
  --black: #000000;
  --light-bg: #f8fafc;
  --gray: #6b7280;
  --dark: #1f2937;
  --gradient: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  --gradient-dark: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  --gradient-red: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

a {
  text-indent: inherit;
  text-decoration: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  /* color: var(--dark); */
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 34, 36, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 34, 36, 0.4);
  background: var(--secondary-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--gradient-red);
  color: var(--white);
}

.btn-accent {
  /* background: var(--accent); */
  background: var(--gradient-red);
  /* color: var(--dark); */
}

.btn-accent:hover {
  /* background: var(--accent); */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.highlight {
  color: var(--primary);
  font-weight: 700;
}

.accent {
  color: var(--secondary);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

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

.logo {
  /* font-family: "Plus Jakarta Sans", sans-serif; */
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  z-index: 1001;
}


/*  HERO SECTION */
.hero {
  /* background: url("/assets/bluebg.png");  */
  background: url("/assets/PROBG.jpg"); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 50px 0 100px;
  position: relative;
  overflow: hidden;
}
.contact-details{
  display: flex;
  justify-content: end;
  gap:30px;
  font-size: 20px;
  margin-bottom: 50px;
  color: var(--black)
}
.contact-details span{
  display:flex;
  gap:5px
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr ;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--black);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--black);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media(max-width:480px){
  .hero{
    /* background:url('./assets/bluebg.png'); */
    background:url('./assets/res-hero-v2.jpg');
}
  }
.badge {
  /* background: rgba(255, 255, 255, 0.1); */
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 2px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--black)
}
  
/* .badge:hover {
    color: var(--white);
} */

.badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* FORM CARD */
.quick-form-card {
  background: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-radius: 23px;
  /* margin-top: 65px; */
}

.quick-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-red);
}

/* FORM ELEMENTS */
.quick-form-card h3 {
  color: black;
  margin-bottom: 24px;
  font-size: 1.5rem;
  text-align: center;
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--black)
}

.quick-form input,
.quick-form select {
  padding: 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}

.quick-form input:focus,
.quick-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 111, 60, 0.1);
  font-family: 'Poppins', sans-serif;
}

.quick-form textarea {
  padding: 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
  min-height: 90px;
  resize: vertical; 
  font-family: 'Poppins', sans-serif;
}

.quick-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 111, 60, 0.1);
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  padding: 14px;
  /* border: 2px solid #e5e7eb; */
  border: 2px solid var(--black);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
  background: transparent;
  color: black;
}
.quick-form select{
  background-color: var(--black);
}

.form-submit-btn {
  background: var(--gradient-red);
  color: var(--white);
  padding: 16px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.form-submit-btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 34, 36, 0.3);
}
.logo-section{
  display:flex;
  justify-content:space-between;
  align-items: center;
  margin-top:10px;
  margin-bottom:20px;
}
.logo-image{
  height:150px;
  width:200px;
}
.contact-information{
  display:flex;
  gap:15px;
  font-size: 24px;
}
.tele,
.mail{
  color: black;
  transition: var(--transition);
}

.tele:hover,
.mail:hover{
  color:var(--primary);
}
@media(max-width:992px){
  .logo-image{
    height:125px;
    width:175px;;
  }
  .logo-section{
    margin-top: -40px;
  }
}
@media(max-width:768px){
  .logo-section{
   flex-direction: column;
    align-items: center;
    gap:10px;
    justify-content: center; 
  }
  .contact-information{
    flex-direction: column;
    gap:5px;
    font-size: 20px;
    align-items: center;
  }
}
@media(max-width:601px){
  .logo-section{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}


/* TABLET (Collapse grid) */
@media (max-width: 768px) {
  .hero {
    padding: 30px 0 80px;
    background-attachment: scroll;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .quick-form-card {
    margin: 0 auto;
  }

  .hero-ctas {
    justify-content: center;
  }
  
}


/* Small Mobiles (Under 576px) */
@media (max-width: 576px) {
.hero{
  padding: 20px 0px;
}
  .hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .quick-form-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .contact-details {
    flex-direction: column;
    align-items: end;
    gap: 10px;
  }
  .contact-details a{
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 1.9rem;
  }

}

/* iPHONE SE, SMALL ANDROID (375px – 430px) */
@media (max-width: 480px) {
  .hero{
    padding: 0px 0 60px;
  }
  .hero-content {
    padding-top: 70px;
  }
  
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .trust-badges {
    justify-content: center;
    gap: 10px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .quick-form-card {
    padding: 20px;
    width: 100%;
    max-width: 100%;
  }

  .quick-form input,
  .quick-form select {
    padding: 12px;
    font-size: 0.9rem;
  }

  .quick-form textarea {
    padding: 12px;
    font-size: 0.9rem;
    min-height: 100px;
  }

  .form-submit-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
}

/* TINY phones (360px & below) */
@media (max-width: 360px) {
  .hero {
    padding: 90px 0 50px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .quick-form-card {
    padding: 16px;
  }
}
body {
  overflow-x: hidden;
}

@media (min-width: 768px) and (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr; /* collapse to one column */
    text-align: center;
    margin-top: 60px;
  }

  .hero-right {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .quick-form-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}


/* Stats Section */
.stats {
  background: var(--white);
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 11px 20px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .stat-card {
  padding: 11px 20px;
  }
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  text-align: center;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  /* background: var(--gradient); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-red);
}

.benefit-card h3 {
  color: var(--dark);
  margin-bottom: 16px;
}

.benefit-card p {
  flex-grow: 1;
}

/* Packages Section */
.packages {
  background: var(--light-bg);
}

.package-category {
  margin-bottom: 40px;
}

.category-title {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--secondary);
  display: inline-block;
  width: 100%;
}

.packages-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.package-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
}

.package-card.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-card.featured::before {
  background: var(--gradient-red);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(232, 34, 36, 0.3);
}

.package-header {
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 6px;
  padding-bottom: 0px;
  border-bottom: 1px solid #e5e7eb;
}

.package-header h4 {
  color: var(--dark);
  margin-bottom: 10px;
}

.price {
  display:flex;
  justify-content: flex-start;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  flex-grow: 1;
}

.package-features li {
  padding: 8px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.package-features li:hover {
  transform: translateX(5px);
}

.package-btn {
  width: 100%;
  margin-top: auto;
}

@media (min-width: 768px) {
  .package-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.price {
  font-size: 3.5rem;
}
.package-features {
  margin: 0 0 24px;
}
}


/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 16px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p {
  flex-grow: 1;
}

@media (max-width: 512px) {
  .service-card {
    padding: 18px 30px;
  }
}

/* CTA Section */
.cta-section {
   background: linear-gradient(90deg, #000000,  #B82E1F);
    /* url("https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80"); */
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cta-section {
    padding: 40px 0;
  }
}

/* Contact Section */
.contact {
  background: var(--light-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info {
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  height: fit-content;
}

.contact-info h3 {
  color: var(--dark);
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gradient-red);
  border-radius: 2px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}


.contact-details strong {
  color: var(--dark);
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
}

.contact-details p {
  margin: 0;
  color: var(--gray);
  line-height: 1.4;
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--black);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  padding: 35px 35px 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  height: fit-content;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.contact-form h3 {
  color: var(--dark);
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
}

.contact-form h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 33px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--light-bg);
  width: 100%;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 111, 60, 0.1);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: #d71b22;
  font-size: 1.4rem;
  font-weight: 600;
}
@media(min-width:870px){
  .footer-section h4{
    margin-top: 40px;
  }
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color:var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
 transform: scale(1.2);
}

.social-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  opacity: 0.8;
}
/* Form Validation Styles */
.form-error {
  border-color: #e82224 !important;
  background-color: #fef2f2;
}

.error-message {
  color: #e82224;
  font-size: 0.875rem;
  margin-top: 5px;
  display: block;
}

.form-success {
  border-color: #10b981 !important;
}

/* Loading state for buttons */
.form-submit-btn.loading {
  position: relative;
  color: transparent;
}

.form-submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success message animation */
.form-success-message {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 20px;
  background: #25d366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}


/* Enhanced animation with better performance */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: opacity 0.3s ease;
    transform: none;
  }
  
  .fade-in.visible {
    transform: none;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 80px 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-links a {
    font-weight: bold;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
    background-attachment: scroll;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
    padding-top: 0px;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .quick-form-card {
    padding: 25px 20px;
    margin-top: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .packages-row {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info,
  .contact-form {
    padding: 25px;
  }

  .contact-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-icon {
    font-size: 1.8rem;
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 75px 0 50px;
    min-height: auto;
  }

  .hero-content {
    gap: 25px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 30px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .badge {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .quick-form-card {
    padding: 25px 20px;
    margin-top: 20px;
  }

  .quick-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .quick-form {
    gap: 14px;
  }

  .quick-form input,
  .quick-form select {
    padding: 14px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 20px;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 1.2rem;
  }

  .contact-item {
    padding: 12px;
  }

  .contact-icon {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0 30px;
    min-height: auto;
  }

  .hero-content {
    gap: 15px;
    padding-top: 55px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .hero-ctas {
    gap: 8px;
    margin-bottom: 20px;
  }

  .btn {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .trust-badges {
    gap: 4px;
  }

  .badge {
    min-width: 90px;
    padding: 5px 6px;
    font-size: 0.75rem;
  }

  .quick-form-card {
    padding: 15px 12px;
    margin-top: 10px;
  }

  .quick-form-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .quick-form {
    gap: 10px;
  }

  .quick-form input,
  .quick-form select {
    padding: 10px;
    font-size: 16px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .package-header h4 {
    font-size: 1.3rem;
  }

  .price {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .contact-info,
  .contact-form {
    padding: 15px;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 1.1rem;
  }

  .contact-item {
    padding: 10px;
    gap: 8px;
  }

  .contact-icon {
    font-size: 1.2rem;
  }

  .contact-details strong {
    font-size: 1rem;
  }

  .contact-details p {
    font-size: 0.9rem;
  }
}

.banner-section {
    background: linear-gradient(90deg, #000000, #B82E1F);
    padding: 80px 0;
    color: var(--white);
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Bigger image area */
    gap: 60px;
    align-items: center;
}

.banner-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px){
    .banner-left h2 {
        font-size: 1.5rem;
    }
}

.banner-left p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 550px;
    color:var(--white)
}

.banner-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.banner-right img {
    width: 100%;
    max-width: 700px;   
    border-radius: 10px;
    display: block;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .banner-left p {
        margin: 0 auto 16px;
    }
    .banner-right img {
        max-width: 350px;
        margin: 0 auto;
    }
}


/* team-member */
.team-section {
    padding: 70px 0;
    /* background-color:var(--light-bg); */
    background: linear-gradient(90deg, #000000,  #B82E1F);
    text-align: center;
}

.team-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s ease-in-out;
   
}

.team-card {
    min-width: 25%;
    min-height:300px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.team-image {
    /* background: #0b1e4d; */
    width: 325px;
    height: 295px;
    border-radius: 4px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-card h4 {
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
    /* color: #083d77; */
    color: var(--white);
    font-weight: 600;
}

.team-card p {
    /* color: #718096; */
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Navigation Arrows */
.carousel-btn {
    position: absolute;
    top: 45%;
    /* background: #083d77; */
    background: #ff3737;
    color: #fff;
    border: none;
    font-size: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.prev { left: 10px; }
.next { right: 10px; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .team-card { min-width: 33.33%; }
}
@media (max-width: 768px) {
    .team-card { min-width: 50%; }
}
@media (max-width: 576px) {
    .team-card { min-width: 100%; }
}
@media(min-width:1179px){
  .team-card{
    min-width:325px;
  }
  .carousel-track{
    gap:30px;
  }
}
@media(min-width:375px)and(max-width:575px){
  .carousel-track {
    display: flex;
    justify-content: center;
    transition: transform 0.45s ease-in-out;
   
}
.team-card {
  display: flex;
    min-width: 100%;
    min-height:300px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}
}


.client-slider {
    /* background-color: var(--light-bg);      */
    /* background-color: burlywood; */
    padding: 18px 0;             
    text-align: center;
}
@media(min-width:575px){
  .client-slider {
    padding: 50px 0;             
}
}

.client-heading {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #0b1e4d;  
    text-align: center;            
}

.slider {
    width: 100%;
    /* You may need a max-width here if the track is too wide */
    overflow: hidden;
    position: relative;
    
}

.slide-track {
    /* Important: set a very wide width that can contain 2x the logos */
    display: flex; 
    align-items: center;
    gap: 80px;
    /* Adjust the duration for speed, slower = smoother */
    animation: scroll 40s linear infinite; /* Increased to 40s for a smoother, slower loop */
    width: max-content; /* Ensure the track is wide enough to hold all logos */
}

.slide-track:hover {
    animation-play-state: paused;
}

/* **Remove the .slide-track::after rule completely** */

.logo {
    width: 175px;
    height: 100px;
    object-fit: contain;
    opacity: .9;
    /* This makes the image a fixed size and prevents stretching */
    flex-shrink: 0; 
}

/* Keyframe — move exactly one set of logos (50% of the total track width) */
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
    .logo {
        width: 120px;
        height: 60px;
    }
}

.top-contact-bar {
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    padding: 6px 0;
    font-size: 18px;
    color: #333;
    margin-top: -10px;
}

.top-contact-container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

.top-contact-container i {
    margin-right: 6px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .top-contact-container {
        justify-content: flex-end;
        font-size: 10px;
        gap: 5px;
        flex-wrap: wrap;
    }
    .top-contact-bar{
      padding: 6px 0px;
      margin-top: -10px;
    }
}

/* IMPROVED ANIMATION SYSTEM */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HERO ANIMATIONS - Immediate */
.hero-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  will-change: opacity, transform;
}

.hero-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CONTACT SECTION ANIMATIONS - Scroll-based */
.contact-animate {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.contact-animate.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Different direction for contact form */
.contact-form.contact-animate {
  transform: translateX(40px);
}

.contact-form.contact-animate.visible {
  transform: translateX(0);
}

/* Enhanced staggered delays */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.3s; }
.fade-in:nth-child(3) { transition-delay: 0.5s; }
.fade-in:nth-child(4) { transition-delay: 0.7s; }
.fade-in:nth-child(5) { transition-delay: 0.9s; }
.fade-in:nth-child(6) { transition-delay: 1.1s; }

/* Package cards with scale effect */
.package-card.fade-in {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: opacity 1s ease-out, 
              transform 1s ease-out;
}

.package-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Service cards with rotation */
.service-card.fade-in {
  opacity: 0;
  transform: translateY(40px) rotate(-2deg);
  transition: opacity 1s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* Benefit cards with bounce */
.benefit-card.fade-in {
  opacity: 0;
  transform: translateY(60px) scale(0.8);
  transition: opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stats with pop effect */
.stat-card.fade-in {
  opacity: 0;
  transform: scale(0.5) rotate(10deg);
  transition: opacity 0.8s ease-out, 
              transform 0.8s ease-out;
}

.stat-card.fade-in.visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}


.hero-contact-details {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.hero-contact-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-contact-details i {
    color: var(--white);
}

@media (min-width: 992px) and (max-width: 1290px) {
    .hero h1 {
        margin-top: 60px;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  
    .hero-content {
        padding-top: 14px;
    }

    .hero-contact-details {
        top: 15px;
        right: 15px;
        gap: 8px;
    }

    .hero-contact-details span {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: 0px;
    }

    .hero-contact-details {
        flex-direction: row;
        gap: 5px;
    }

    .hero-contact-details span {
        font-size: 10px;
        padding: 4px 8px;
    }
}



/* === TEAM CAROUSEL — CLEAN PRODUCTION CSS === */

/* Base */
* { box-sizing: border-box; }


.section-header h2 {
  margin: 0;
  color: #083d77;
}

/* Shell */
.team-carousel {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  outline: none;
}

.carousel-viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(8,61,119,0.25);
  border-radius: 8px;
}

/* Track */
.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  will-change: transform;
  transform: translate3d(0,0,0);
}

@media (min-width: 1180px) {
  .carousel-track { gap: 30px; }
}

/* Slides — fixed, uniform size on all screens */
.team-card {
  flex: 0 0 325px;
  width: 325px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Image box — fixed uniform height */
.team-image {
  width: 325px;
  height: 295px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image fill — choose one: cover (no background gaps) or contain (no crop) */
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* If you prefer no cropping, change to: contain */
  object-position: center;
  display: block;
}

/* Text area spacing */
.team-card h4 {
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 1.05rem;
  /* color: #083d77; */
  color: var(--white);
  font-weight: 700;
  min-height: 1.25em;
}

.team-card p {
  /* color: #718096; */
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  min-height: 1.25em; 
}

/* Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #083d77;
  color: #fff;
  border: none;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.carousel-btn:hover { transform: translateY(-50%) scale(1.05); }
.carousel-btn:active { transform: translateY(-50%) scale(0.97); }
.prev { left: 10px; }
.next { right: 10px; }

/* One card centered on tablet & mobile (visual alignment) */
@media (max-width: 1200px) {
  .carousel-track { justify-content: center; }
  .team-card { margin: 0 auto; }
}

/* Small screens: slight tighter spacing */
@media (max-width: 576px) {
  .carousel-btn { opacity: 0.85; }
  .carousel-track { gap: 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none !important; }
}

/* --- Government Logos Section (clean & responsive) --- */
.govt-logos {
  background: var(--light);
  padding: 70px 0px;
}

/* Fluid grid: adapts columns automatically */
.govt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;                 /* tighter on mobile */
  justify-items: center;
}

/* Card */
.govt-card {
  width: 100%;
  max-width: 260px;
  padding: 16px 12px;
  text-align: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Desktop-only hover lift (no jumpy cards on touch) */
@media (hover: hover) and (pointer: fine) {
  .govt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.10);
  }
}

/* One consistent logo rule (remove duplicates) */
.govt-card img {
  display: block;
  width: auto;
  max-width: 160px;
  height: 80px;
  object-fit: contain;  
  margin: 0 auto;
}

/* Tweak spacing/sizing as screen grows */
@media (min-width: 480px) {
  .govt-grid { gap: 18px; }
  .govt-card { padding: 18px 14px; }
  .govt-card img { max-width: 170px; height: 90px; }
}

@media (min-width: 768px) {
  .govt-logos { padding: 72px 0; }
  .govt-grid { gap: 22px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .govt-card { max-width: 280px; padding: 22px 16px; }
  .govt-card img { max-width: 180px; height: 100px; }
}

@media (min-width: 1200px) {
  .govt-grid { gap: 30px; grid-template-columns: repeat(4, 1fr); } /* lock to 4 cols on XL if you prefer */
  .govt-card img { max-width: 200px; height: 110px; }
}




@media (max-width: 480px) {
    p{
      text-align: justify;
      hyphens: auto;
    }
    .section-header p{
      margin-top: 20px;
    }
    .container{
      padding-right:30px;
      padding-left: 30px;
    }
    .govt-logos{
      padding: 70px 0px;
    }
    /* .hero p{
      color: var(--white);
    } */
    .benefits-grid p{
      text-align: center;
    }
    .service-card p{
      text-align: center !important;
    }
    .section-header p{
      text-align: center;
    }
}
.mobile-br {
    display: none;
}


@media (max-width: 480px) {
    .mobile-br {
        display: inline;
    }
}
.package-div{
  margin-bottom: 30px;
}

.footer-disclimer {
   border-top: 1px solid rgba(255, 255, 255, 0.1); 
   text-align: justify;
   font-size: 12px;

}
.price small{
  margin-top: 20px;
  font-size: 20px;
  margin-right: 10px;
}
@media(max-width:768px){
  .price small{
    margin-top: 8px;
    font-size: 16px;
  }
}

a.tel[href^="tel"],
a.mail[href^="mailto"] {
  color: #000 !important;
  text-decoration: none !important;
}

