/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');

/* Reset and base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #fff;
}

/* Header styling */ .header { width: 100%; background-color: #ffffff; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08); position: sticky; top: 0; z-index: 999; transition: all 0.3s ease; } .container { display: flex; align-items: center; justify-content: space-between; padding: 22px 8%; } /* Logo */ .logo img { height: 120px; /* Big, clear logo */ width: auto; object-fit: contain; } /* Navigation styling */ .nav-links { list-style: none; display: flex; gap: 55px; align-items: center; } .nav-links a { text-decoration: none; color: #083b5c; /* Deep blue */ font-weight: 700; font-size: 1.15rem; /* Larger text */ letter-spacing: 0.5px; transition: all 0.3s ease; position: relative; } /* Underline hover effect */ .nav-links a::after { content: ""; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px; background-color: #f6a96d; /* Accent color */ transition: 0.3s ease; } .nav-links a:hover::after { width: 100%; } .nav-links a:hover, .nav-links a.active { color: #f6a96d; } /* Apply Button */ .btn { background-color: #f6a96d; color: #fff; padding: 14px 38px; border-radius: 40px; text-decoration: none; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.6px; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(246, 169, 109, 0.3); } .btn:hover { background-color: #083b5c; color: #fff; box-shadow: 0 4px 10px rgba(8, 59, 92, 0.3); transform: translateY(-2px); } /* Mobile menu toggle */ .menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 6px; } .bar { width: 30px; height: 3px; background-color: #083b5c; transition: all 0.3s ease; } /* Responsive design */ @media (max-width: 900px) { .logo img { height: 90px; } .nav-links { position: absolute; top: 105px; right: 0; width: 100%; background-color: #ffffff; flex-direction: column; align-items: center; gap: 30px; padding: 30px 0; display: none; box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08); } .nav-links.active { display: flex; } .menu-toggle { display: flex; } .btn { display: none; } .toggle .bar:nth-child(1) { transform: rotate(45deg) translateY(8px); } .toggle .bar:nth-child(2) { opacity: 0; } .toggle .bar:nth-child(3) { transform: rotate(-45deg) translateY(-8px); } }
/* ===== FIXED CAROUSEL FOR PORTRAIT IMAGES ===== */
.carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #ffe8d2);
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
}

/* Image Fix: Fits perfectly with spacing */
.slide img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain; /* keeps proportions perfectly */
  object-position: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

/* Dots navigation */
.dots {
  text-align: center;
  position: absolute;
  bottom: 25px;
  width: 100%;
}

.dot {
  height: 14px;
  width: 14px;
  margin: 0 6px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover,
.dot.active {
  background-color: #f6a96d;
  transform: scale(1.1);
}

/* Fade Animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .carousel {
    height: 65vh;
  }
  .slide img {
    height: 85%;
  }
}

@media (max-width: 600px) {
  .carousel {
    height: 55vh;
  }
  .slide img {
    height: 80%;
  }
}

/* ===== COURSES SECTION ===== */
.courses-section {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

/* Centering container */
.courses-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Section Title ===== */
.section-title {
  font-weight: 800;
  font-size: 2.8rem;
  color: #003b64;
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
  max-width: 700px;
  text-align: center;
}

/* ===== GRID (2 IMAGES PER ROW) ===== */
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
}

/* ===== COURSE CARD ===== */
.course-card {
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  flex: 1 1 calc(50% - 40px); /* 2 per row with gap */
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.course-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 5px solid #003b64;
}

.course-content {
  padding: 25px;
  text-align: left;
  width: 100%;
}

.course-content h3 {
  font-weight: 700;
  color: #003b64;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.course-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== APPLY BUTTON ===== */
.apply-btn-container {
  margin-top: 70px;
  text-align: center;
  width: 100%;
}

.apply-btn {
  background: linear-gradient(90deg, #003b64, #f6a96d);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.apply-btn:hover {
  background: linear-gradient(90deg, #f6a96d, #003b64);
  transform: scale(1.05);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .course-card {
    flex: 1 1 100%; /* One per row on tablet */
    max-width: 700px;
  }

  .course-card img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .courses-section {
    padding: 60px 5%;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .course-card img {
    height: 250px;
  }

  .apply-btn {
    font-size: 1rem;
    padding: 12px 30px;
  }
}    
/* FEATURES FACILITIES SECTION */
.features-facilities {
  padding: 100px 20px;
  background-color: white;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.features-facilities .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #003b64;
}

.features-facilities .section-description {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Real graphics styling */
.feature-graphic {
  width: 100%;
  max-width: 180px;
  margin-bottom: 25px;
}

.feature-graphic img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Card title */
.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #003b64;
}

/* Card description */
.feature-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-grid {
    gap: 25px;
  }

  .feature-card {
    max-width: 260px;
    padding: 25px 15px;
  }

  .feature-graphic {
    max-width: 150px;
  }
}

/* Footer Styling */
.footer {
  width: 100%;
  background: linear-gradient(135deg, #ffffff, #f0f4ff); /* subtle gradient */
  color: #333;
  font-family: 'Montserrat', sans-serif;
  padding: 80px 20px 40px 20px;
  border-top: 1px solid #e0e0e0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Decorative Shapes */
.footer-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.footer-shapes .circle {
  width: 200px;
  height: 200px;
  background-color: #5551ff;
  top: -50px;
  left: -50px;
}

.footer-shapes .blob {
  width: 300px;
  height: 300px;
  background-color: #ff7f50;
  bottom: -100px;
  right: -100px;
}

/* Container */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* Top Sections */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  align-items: flex-start;
}

.footer-section {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.8);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-section h4 {
  font-weight: 700; /* Bold heading */
  margin-bottom: 15px;
  color: #222;
}

.footer-section p,
.footer-section li a {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600; /* Bold text */
  color: #555;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  font-size: 16px; /* increased from 14px */
  font-weight: 800;
  color: #555;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #5551ff;
}

/* Social icons */
.footer-social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-social a {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.footer-social img {
  width: 28px;
  height: 28px;
}

/* Newsletter */
.footer-newsletter {
  text-align: center;
  width: 100%;
}

.footer-newsletter input[type="email"] {
  padding: 14px 20px;
  width: 320px;
  border: 1px solid #ccc;
  border-radius: 50px;
  outline: none;
  margin-bottom: 10px;
  font-weight: 600;
  transition: border 0.3s, box-shadow 0.3s;
}

.footer-newsletter input[type="email"]:focus {
  border-color: #5551ff;
  box-shadow: 0 0 10px rgba(85, 81, 255, 0.3);
}

.footer-newsletter button {
  padding: 14px 30px;
  background-color: #5551ff;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s, transform 0.3s;
}

.footer-newsletter button:hover {
  background-color: #3331ff;
  transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #888;
}

.footer-legal a {
  text-decoration: none;
  color: #888;
  margin: 0 5px;
  font-weight: 600;
}

.footer-legal a:hover {
  color: #5551ff;
}

/* Fully Responsive */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    width: 100%;
  }

  .footer-newsletter input[type="email"] {
    width: 80%;
  }

  .footer-newsletter button {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .footer-newsletter input[type="email"],
  .footer-newsletter button {
    width: 100%;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}

/* Testimonials Section */
.testimonials {
  width: 100%;
  background-color: #ffffff; /* White background */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.testimonials p {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* Testimonials Section */
.testimonials {
  width: 100%;
  background-color: #ffffff; /* White background */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

/* Header */
.testimonials-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.testimonials-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* Testimonial Cards Container */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Testimonial Card */
.testimonial-card {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  max-width: 300px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Quote Icon */
.quote-icon {
  font-size: 50px;
  color: #5551ff;
  position: absolute;
  top: -20px;
  left: 20px;
  font-weight: bold;
}

.testimonial-card p {
  font-weight: 500;
  color: #555;
  font-size: 15px;
  margin: 25px 0 10px 0;
}

.testimonial-card h4 {
  font-weight: 700;
  color: #333;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 90%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 100%;
  }
}
/* General Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 8%;
  background-color: #fff;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
  min-width: 320px;
  animation: slideInLeft 1s ease forwards;
}

.about-content h1 {
  font-size: 3rem;
  color: #003b64;
  font-weight: 800;
  margin-bottom: 25px;
}

.about-content h1 span {
  color: #f6a96d;
}

.about-content p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.explore-btn {
  margin-top: 10px;
  background: #f6a96d;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(246, 169, 109, 0.3);
}

.explore-btn:hover {
  background: #003b64;
  transform: translateY(-3px);
}

.about-image {
  flex: 1;
  text-align: center;
  animation: slideInRight 1s ease forwards;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
  background: #f7f9fc;
  padding: 100px 8%;
  text-align: center;
}

.mv-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.mv-card {
  background: #fff;
  flex: 1 1 400px;
  max-width: 500px;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.mv-card:hover {
  transform: translateY(-6px);
}

.mv-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.mv-card h2 {
  font-size: 1.8rem;
  color: #003b64;
  font-weight: 700;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Why Choose */
.why-choose {
  padding: 100px 8%;
  text-align: center;
  background: #fff;
}

.why-choose h2 {
  font-size: 2.8rem;
  color: #003b64;
  font-weight: 800;
  margin-bottom: 60px;
}

.why-choose span {
  color: #f6a96d;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.why-card {
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 360px;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.why-card h3 {
  color: #003b64;
  font-size: 1.4rem;
  margin: 20px 0 10px;
  font-weight: 700;
}

.why-card p {
  color: #555;
  font-size: 1rem;
  padding: 0 20px 25px;
}

/* Values */
.values {
  background: linear-gradient(90deg, #003b64, #083b5c);
  padding: 100px 8%;
  text-align: center;
  color: #fff;
}

.values h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 800;
}

.values h2 span {
  color: #f6a96d;
}

.values-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 260px;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: #f6a96d;
  color: #003b64;
  transform: translateY(-5px);
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-content h1 {
    font-size: 2.3rem;
  }

  .about-image img {
    max-width: 90%;
  }
}
/*About Section Ending*/
/* General */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #333;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 10;
}

.header .container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo img {
  width: 150px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #007bff;
}

.btn {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #0056b3;
}

/* Courses Section */
.courses-section {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.courses-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
}

.courses-section span {
  color: #007bff;
}

.intro-text {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  line-height: 1.6;
}

/* Centered grid fix */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  justify-content: center;   /* centers all cards horizontally */
  justify-items: center;     /* centers each card inside the grid cell */
  width: 100%;
  max-width: 1200px;         /* limits full width for better layout */
  margin: 0 auto;
}

.course-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 420px;
  width: 100%;
  text-align: left;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.course-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.course-content {
  padding: 20px;
}

.course-content h3 {
  font-size: 1.3rem;
  color: #007bff;
}

.course-content .duration {
  color: #555;
  font-weight: 600;
  margin: 8px 0;
}

.course-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.course-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: background 0.3s;
}

.course-btn:hover {
  background: #0056b3;
}

/* Why Choose Us */
.why-choose-section {
  background: #f8f9fc;
  text-align: center;
  padding: 80px 20px;
}

.why-choose-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #111;
}

.why-choose-section span {
  color: #007bff;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
  justify-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.choose-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  max-width: 380px;
  width: 100%;
}

.choose-card:hover {
  transform: translateY(-6px);
}

.choose-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.choose-card h3 {
  color: #007bff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.choose-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Responsive Navigation */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
  }
}
/* Contact*/
/* Base Setup */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #333;
}

/* Contact Section */
/* ===== GENERAL ===== */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #0b2545;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 80px;
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

header .logo img {
  height: 120px;
}

nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #007bff;
}

.apply-btn {
  background: #007bff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  transition: 0.3s;
}

.apply-btn:hover {
  background: #0056d1;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 160px 20px 80px;
  text-align: center;
}

.contact-header h2 {
  font-size: 38px;
  color: #0b2545;
  font-weight: 700;
}

.contact-header span {
  color: #f99d4c;
}

.contact-header p {
  max-width: 650px;
  margin: 20px auto 60px;
  color: #555;
  line-height: 1.6;
}

/* ===== CONTACT CONTAINER ===== */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  flex: 1;
  min-width: 320px;
  background: #f9fafc;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.contact-card h3 {
  color: #0b2545;
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-card p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ===== FORM ===== */
.form-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-card input,
.form-card textarea {
  padding: 14px 18px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: #f99d4c;
  box-shadow: 0 0 5px rgba(249, 157, 76, 0.4);
}

.form-card button {
  padding: 14px 0;
  border: none;
  background: linear-gradient(90deg, #007bff, #f99d4c);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.form-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(249, 157, 76, 0.4);
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  margin-top: 15px;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  header {
    padding: 18px 40px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 90%;
    max-width: 600px;
  }

  .contact-header h2 {
    font-size: 32px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  background: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float img {
  width: 45px;
  height: 45px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}
