@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

/* ================= VARIABLES ================= */
:root {
  --primary: #00e5c0;
  --secondary: #0f172a;
  --dark: #020617;
  --light: #ffffff;
  --muted: #64748b;
  --blue: #0052D4;


  --radius: 14px;
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, .08);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, .15);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.btn:hover {
  background: var(--yellow);
  color: var(--black);
}

@-webkit-keyframes fadeIn {
  0% {
    top: 0%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.home {
  padding: 0;
}

.home .slide {
  min-height: 60rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--white)), to(transparent));
  background: linear-gradient(90deg, var(--white), transparent);
}

.home .slide .content {
  width: 50rem;
  position: relative;
}

.home .slide .content h3 {
  font-size: 6rem;
  color: var(--black);
  text-transform: capitalize;
  text-transform: uppercase;
}

.home .slide .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 0.rem;
  background: var(--white);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--yellow);
}

.swiper-slide {
  width: 100;
  height: 2.5rem;

}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}

.home .swiper-button-prev {
  right: 7rem;
}

@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }

  .header .login-form {
    width: 90%;
  }

  .home .slide {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .home .slide .content {
    text-align: center;
  }

  .home .slide .content h3 {
    font-size: 3rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 90%;
  }

  .about .row .content h3 {
    font-size: 3.5rem;
  }
}

/* =========================================
   HERO SECTION (Complete & Corrected)
   ========================================= */
/* =========================================
   HERO SECTION CSS
   ========================================= */

/* 1. HERO MAIN CONTAINER */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  /* Covers most of the screen */
  padding-top: 8rem;
  /* Space for the fixed header */
  padding-bottom: 4rem;

  /* ADDED: Side Padding for spacing */
  padding-left: 5%;
  padding-right: 5%;

  /* Soft Blue-to-Green Gradient Background */
  background: linear-gradient(135deg, #f0f8ff 0%, #eafce0 100%);

  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 2. FLEX LAYOUT (Left Text / Right Image) */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  /* Ensures content doesn't stretch too wide on huge screens */
  margin: 0 auto;
  /* Centers the container */
}

/* --- LEFT SIDE: Content --- */
.hero-content {
  flex: 1;
  max-width: 650px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 0.9;
  font-size: 3.9em;
  margin-bottom: 1.5rem;
  color: var(--black-color);
  /* Updated to use variable */
}

/* Gradient Text Effect */
.hero h1 span {
  background: linear-gradient(90deg, #0052D4, #7ebd00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: #555;
  /* Darker grey for readability on light bg */
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

/* --- RIGHT SIDE: Image --- */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

  /* Floating Animation */
  animation: floatImage 5s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================================
   BUTTONS (Fixed Gradient Issue)
   ========================================= */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
  text-align: center;
}

/* Primary Button: Blue-to-Green Gradient */
.btn-primary {
  background: linear-gradient(90deg, #0052D4 0%, #7ebd00 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 82, 212, 0.2);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 82, 212, 0.3);
}

/* Secondary Button: Outline Style */
.btn-secondary {
  background: transparent;
  color: #0052D4;
  /* Blue Text */
  border: 2px solid #0052D4;
}

.btn-secondary:hover {
  background: #0052D4;
  color: #fff;
  transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE (Mobile View)
   ========================================= */
@media (max-width: 968px) {
  .hero {
    min-height: auto;
    padding-top: 8rem;
    padding-left: 1.5rem;
    /* Ensure mobile has padding too */
    padding-right: 1.5rem;
    text-align: center;
  }

  .hero-container {
    flex-direction: column;
    /* Stack Vertically */
    gap: 3rem;
  }

  /* ORDERING: Content First (1), Image Second (2) */
  .hero-content {
    order: 1;
    max-width: 100%;
  }

  .hero-image {
    order: 2;
    width: 100%;
  }

  .hero-image img {
    max-width: 90%;
    animation: none;
    /* Stop animation on mobile */
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    margin: 0 auto 2rem;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* ================= SERVICES SECTION ================= */
/* =========================================
   SERVICES SECTION
   ========================================= */

.services {
  /* padding: 80px 0; */
  background-color: #f0f8ff;
  /* Light professional background */
}

/* ===== Section Header ===== */
.section-header {
  text-align: left;
  margin: 2.3rem 0 2.3rem 2.1em;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black-color);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

/* Highlight "Our" with Gradient */
.highlight {
  background: linear-gradient(90deg, #0052D4, #7ebd00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Underline Effect */
.section-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0052D4, #7ebd00);
  /* margin: 10px auto 0; */
  border-radius: 2px;
}

.section-intro {
  /* max-width: 700px; */
  /* margin: 15px auto 0; */
  color: #555;
  font-size: 1.3rem;
  line-height: 1.6;
}

/* ===== Service Grid ===== */
.service-grid {
  display: grid;
  /* Responsive Grid: 3 columns on desktop, 2 on tablet, 1 on mobile */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 0 10px;
  margin-left: 1.5em;
  margin-right: 1.5em;
}

/* ===== Service Card ===== */
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  /* Important for image */
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 82, 212, 0.15);
  /* Blue shadow on hover */
  border-color: rgba(0, 82, 212, 0.2);
}

/* Card Image */
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

/* Card Content */
.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 1rem;
}

/* List Items */
.service-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.service-card ul li {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.8rem;
  padding-left: 20px;
  position: relative;
}

/* Custom Green Checkmark */
.service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #7ebd00;
  /* Green Accent */
  font-weight: bold;
}

/* ===== Card Footer & Button ===== */
.card-footer {
  margin-top: auto;
  text-align: right;
}

.details-link {
  font-weight: 600;
  color: #0052D4;
  /* Primary Blue */
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.details-link:hover {
  color: #7ebd00;
  /* Green Hover */
  transform: translateX(5px);
}

/* ===== NEW: Card Content Wrapper ===== */
/* Add padding back to the content area */
.card-content {
  padding: 1.8rem 2rem;
  flex-grow: 1;
  /* Allows content to fill space */
  display: flex;
  flex-direction: column;
}

/* ===== Card Title ===== */
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.2rem;
}

/* ===== List ===== */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
  /* Add space between list and button */
}

.service-card ul li {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: .55rem;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.6;
}

/* ===== NEW: Card Footer & Button Positioning ===== */
.card-footer {
  margin-top: auto;
  /* Pushes footer to the bottom */
  display: flex;
  justify-content: flex-end;
  /* Aligns button to the right */
}

.details-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.details-link:hover {
  color: var(--secondary);
  /* Change on hover */
}

/* Check icon */
.service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: .85rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--blue);
  border-top: 2px solid;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .services h2 {
    font-size: 32px;
  }

  .services .section-intro {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 4rem 0;
  }

  .services h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 1.8rem 1.6rem;
  }
}

/* ================= VISION & MISSION ================= */

.vision-mission {
  background: #f8fafc;
  padding: 5rem 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 0 1.5em;
}

.vm-card {
  background: #ffffff;
  padding: 2.8rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
  transition: transform .35s ease, box-shadow .35s ease;
  border-top: 4px solid #84cc16;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}


.vm-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.vm-card ul {
  list-style: none;
  padding: 0;
}

.vm-card ul li {
  font-size: 15px;
  color: #475569;
  margin-bottom: .8rem;
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.6;
}

/* Check Icon */
.vm-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #84cc16;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .vm-heading h2 {
    font-size: 30px;
  }

  .vm-card {
    padding: 2.2rem;
  }
}

/* ================= FOUNDERS SECTION ================= */
/* =========================================
   BASE STYLES (Desktop)
   ========================================= */
.founders-section {
  padding: 40px 0;
  background: #f8fafc;
}

.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 28px;
  color: #1e293b;
  font-weight: 700;
}

/* Founders Grid */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Founder Card */
.founder-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center; /* Vertically centers desktop content */
  gap: 20px; /* Adds space between text and image */
}

/* Left Side Content */
.founder-info-left {
  flex: 1; /* Takes up remaining space */
}

.founder-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #e0f2f1;
  color: #009688;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  margin-bottom: 15px;
}

.founder-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}

.designation {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.founder-contact p {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
  word-break: break-all; /* Prevents long emails from breaking layout */
}

.founder-contact i {
  margin-right: 10px;
  color: #009688;
  flex-shrink: 0; /* Prevents icon from squishing */
}

/* Social Links */
.social-links {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #009688; /* Fixed hex color typo */
  font-size: 24px; /* Slightly larger for easier tapping */
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #00796b;
}

/* Right Side Image */
.founder-image-right {
  width: 150px; /* Reduced fixed width for better proportions */
  height: 150px; /* Fixed height to keep it square */
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0; /* Prevents image from shrinking */
  background: #eee; /* Placeholder bg */
}

.founder-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   MOBILE RESPONSIVE STYLES (Add This)
   ========================================= */
@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr; /* Stack cards vertically */
  }

  .founder-card {
    flex-direction: column-reverse; /* Puts image on TOP, text BOTTOM */
    text-align: center; /* Centers text for mobile look */
    padding: 30px 20px;
    gap: 25px;
  }

  .founder-info-left {
    width: 100%;
  }

  /* Center the Contact Info & Socials */
  .founder-contact p {
    justify-content: center; 
  }

  .social-links {
    justify-content: center;
  }

  /* Adjust Image for Mobile */
  .founder-image-right {
    width: 120px; /* Slightly smaller on mobile */
    height: 120px;
    margin: 0 auto; /* Centers the image */
  }
}
/* ===== PROFESSIONAL CONTACT SECTION ===== */
:root {
  --primary-color: #0b6eff;
  --primary-dark: #0055cc;
  --text-dark: #1a202c;
  --text-light: #718096;
  --input-bg: #f7fafc;
  --border-color: #e2e8f0;
}

.contact-section {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  /* Thoda wide layout */
  width: 100%;
}

/* --- Card Wrapper (Split Layout) --- */
/* =========================================
   1. VARIABLES (Agar pehle se nahi hain)
   ========================================= */
:root {
  --primary-color: #00e676;      /* Neon Green Theme */
  --primary-dark: #00c766;       /* Darker Green for Hover */
  --text-dark: #0f172a;          /* Dark Blue/Black */
  --text-light: #64748b;         /* Muted Grey */
  --input-bg: #f8fafc;           /* Light Grey Background */
  --border-color: #e2e8f0;       /* Light Border */
  --card-radius: 20px;
}

/* =========================================
   2. MAIN LAYOUT (Desktop First)
   ========================================= */
.contact-section {
  padding: 80px 0;
  background-color: #f1f5f9; /* Light background for section contrast */
}

.contact-wrapper {
  background: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Soft Shadow */
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* Left side 55%, Right 45% */
  overflow: hidden; /* Image corners round rakhne ke liye */
}

/* --- Left Side: Content --- */
.contact-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Details (Phone/Email links) */
.contact-details {
  margin-bottom: 2.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.detail-item {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  margin-left: 5px;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* =========================================
   3. FORM STYLING
   ========================================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Name aur Phone side-by-side */
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Inputs, Select, Textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--input-bg); /* Subtle Border */
  background: var(--input-bg);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  transition: all 0.3s ease;
}

/* Resize handle styling for Textarea */
.contact-form textarea {
  resize: vertical; /* Sirf height change ho sake */
  min-height: 120px;
}

/* Focus Effect (Jab click karein) */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.1); /* Green Glow */
  outline: none;
}

/* Dropdown Arrow Fix */
.select-wrapper {
  position: relative;
}
.contact-form select {
  appearance: none; /* Default arrow hatana */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

/* =========================================
   4. BUTTONS
   ========================================= */
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn1 {
  padding: 1rem 2rem;
  border-radius: 50px; /* Pill Shape */
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn1-primary {
  background: var(--primary-color);
  color: #000; /* Black text on neon green */
  border: none;
  flex: 2; /* Send button bada */
}

.btn1-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
}

.btn1-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  flex: 1; /* Call button chhota */
}

.btn1-secondary:hover {
  border-color: var(--text-dark);
  background: var(--text-dark);
  color: #fff;
}

/* =========================================
   5. RIGHT SIDE: IMAGE
   ========================================= */
.contact-image {
  background-color: #eee;
  position: relative;
  min-height: 100%;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   6. MOBILE RESPONSIVENESS (Important)
   ========================================= */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr; /* Stack Text and Image vertically */
  }

  .contact-image {
    height: 300px; /* Mobile par image ki height fix karein */
    order: -1; /* Image ko text se upar dikhane ke liye (Optional) */
  }

  .contact-content {
    padding: 2rem; /* Mobile padding kam */
  }

  .form-grid {
    grid-template-columns: 1fr; /* Stack Name and Phone vertically */
  }

  .form-actions {
    flex-direction: column; /* Buttons upar-neeche */
  }

  .btn1 {
    width: 100%;
  }
}