/* --------------------- PLACEMENTS ----------------------- */

/* ---------- RESET / BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  left: 0;
  width: 100%;
  z-index: 1000;
  height: auto;
  min-height: 85px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar-container,
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 24px;
  padding: 12px 0;
}

.logo {
  width: 130px;
  transition: transform 0.2s ease;
  max-width: 200px;
}

.logo:hover {
  transform: scale(1.02);
}

.menu-toggle {
  background: none;
  border: none;
  color: white;
  display: block;
  cursor: pointer;
  padding: 8px;
  border-radius: 999px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-icon {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* desktop adjustments */
@media (min-width: 768px) {
  .navbar-container,
  .nav-container {
    margin: 0 80px;
  }
  .logo {
    width: 160px;
  }
  .menu-toggle {
    display: none;
  }
}

/* ===== NAV MENU (mobile + desktop) ===== */
.nav-menu {
  display: none;
  position: fixed;
  top: 85%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  padding: 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-menu.active {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.nav-list li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  transition: 0.2s;
  padding: 6px 12px;
  display: inline-block;
}

.nav-list li a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* desktop menu */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    width: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border: none;
  }
  .nav-list {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
  .nav-list li a {
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
  }
}

/* ===== BANNER SECTION ===== */
.banner-section {
  position: relative;
  width: 100%;
  height: 350px;
  background-color: #0f172a;
  overflow: hidden;
}

.banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  inset: 0;
}

.banner-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 60px;
}

.banner-content p {
  margin-top: 10px;
  font-size: 1.125rem;
  max-width: 700px;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .banner-content h1 {
    font-size: 3.75rem;
  }
  .banner-content p {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .banner-section {
    height: 380px;
  }
}

/* ===== PLACEMENTS SECTION ===== */
.placements-section {
  padding: 4rem 1rem;
 
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Responsive container padding */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
  .placements-section {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Heading Styles */
.heading-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.heading-wrapper h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: #0f172a;
}

.heading-wrapper p {
  margin-top: 0.75rem;
  color: #475569;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .heading-wrapper h2 {
    font-size: 2.25rem;
  }
}

/* Section Subheading */
.section-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

/* Spacing between blocks */
.students-block {
  margin-bottom: 4rem;
}

.companies-block {
  margin-bottom: 0;
}

/* Student Cards Grid */
.students-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .students-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .students-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Student Card */
.student-card {
  background-color: white;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  text-align: center;
}

.student-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
}

/* Student Avatar */
.student-avatar {
  height: 8rem;
  width: 8rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 9999px;
  object-fit: cover;
  border: 4px solid #f1f5f9;
  display: block;
}

/* Student Info */
.student-info {
  text-align: center;
  margin-top: 1rem;
}

.student-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.student-role {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.student-batch {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: center;
  justify-items: center;
}

.company-grid img {
  max-height: 80px;
  width: 90px;
  filter: grayscale(0.1);
  transition: 0.2s;
  opacity: 0.85;
}

.company-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

@media (min-width: 640px) {
  .student-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .student-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .company-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 480px) {
  .placements-section {
    padding: 48px 16px;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
}
/* =========================
   ENQUIRE BUTTON
========================= */

.enquire-btn{
  background:#fff;
  color:#000;
  padding:10px 22px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  transition:0.3s;
  white-space:nowrap;
  box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.enquire-btn:hover{
  background:#e5e5e5;
}

/* =========================
   MODAL
========================= */

.enquire-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:999;
  padding:20px;
}

.hidden{
  display:none;
}

/* Modal Box */

.modal-box{
  width:100%;
  max-width:450px;
  background:#fff;
  padding:30px;
  border-radius:14px;
  position:relative;
  box-shadow:0 20px 40px rgba(0,0,0,0.25);

  overflow-y:auto;
  max-height:90vh;
}

/* Close Button */

.close-modal{
  position:absolute;
  top:12px;
  right:18px;
  border:none;
  background:none;
  font-size:30px;
  color:#666;
  cursor:pointer;
}

.close-modal:hover{
  color:#000;
}

/* Heading */

.modal-heading{
  text-align:center;
  font-size:30px;
  font-weight:700;
  color:#000;
  margin-bottom:25px;
}

/* Form */

.callback-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* Form Group */

.form-group label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
  color:#000;
}

/* Inputs */

.form-group input,
.phone-group input,
.phone-group select{
  width:100%;
  border:1px solid #d1d5db;
  padding:12px 14px;
  border-radius:8px;
  outline:none;
  font-size:15px;
}

/* Focus */

.form-group input:focus,
.phone-group input:focus,
.phone-group select:focus{
  border-color:#7c3aed;
  box-shadow:0 0 0 3px rgba(124,58,237,0.2);
}

/* Phone Group */

.phone-group{
  display:flex;
}

.phone-group select{
  width:90px;
  border-radius:8px 0 0 8px;
  border-right:none;
}

.phone-group input{
  border-radius:0 8px 8px 0;
}

/* Checkbox */

.checkbox-group{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  color:#000;
}

.checkbox-group input{
  width:16px;
  height:16px;
}

/* Submit Button */

.submit-btn{
  width:100%;
  background:#000;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:10px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.submit-btn:hover{
  background:#7c3aed;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:480px){

  .modal-box{
    padding:24px 20px;
  }

  .modal-heading{
    font-size:24px;
  }

  .enquire-btn{
    padding:8px 18px;
    font-size:14px;
  }
}

/* ===== FOOTER ===== */


.footer{
  background:#0c0c0c;
  color:#fff;
  padding:80px 8% 0;
  position:relative;
  overflow:hidden;
}

/* Footer Layout */
.footer-content{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:50px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

/* Common Column */
.footer-col h3,
.footer-contact h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:30px;
  position:relative;
}

.footer-col h3::after,
.footer-contact h3::after{
  content:"";
  width:50px;
  height:3px;
  background:#fff;
  position:absolute;
  left:0;
  bottom:-8px;
  border-radius:10px;
}

/* =========================
   ABOUT
========================= */
.footer-about{
  max-width:320px;
}

.footer-logo{
  width:180px;
  margin-bottom:10px;
  margin-top: -70px;
}

.footer-text{
  color:#cbd5e1;
  font-size:15px;
  line-height:1.9;
  margin-top: -20px;
}

/* =========================
   QUICK LINKS
========================= */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:14px;
}

.footer-links a{
  text-decoration:none;
  color:#cbd5e1;
  font-size:15px;
  transition:0.3s;
  position:relative;
}

.footer-links a:hover{
  color:#fff;
  padding-left:8px;
}

/* =========================
   CONTACT INFO
========================= */
.footer-contact{
  display:flex;
  flex-direction:column;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-info p{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin:0;
  color:#cbd5e1;
  font-size:15px;
  line-height:1.7;
}

.contact-info i{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:0.3s;
  font-size:15px;
}

.contact-info p:hover i{
  background:#00d4ff;
  color:#0f172a;
  transform:translateY(-3px);
}

/* =========================
   SOCIAL ICONS
========================= */
.footer-social{
  display:flex;
  align-items:center;
  justify-content:flex-start; /* move left */
  gap:14px;
  margin-top:30px; /* adjust top space */
}

.footer-social a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  transition:0.3s;
  font-size:16px;
}

.footer-social a:hover{
  background:#00d4ff;
  color:#000;
  transform:translateY(-4px);
}
/* =========================
   BOTTOM BAR
========================= */
.bottom-bar{
  text-align:center;
  padding:22px ;
}

.bottom-bar p{
  margin:0;
  color:#94a3b8;
  font-size:14px;
  line-height:1.1;
}

.bottom-bar a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.bottom-bar a:hover{
  color:#00d4ff;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){

  .footer{
    padding:60px 6% 0;
  }

  .footer-content{
    gap:40px;
  }

  .footer-logo{
    width:160px;
  }

  .footer-col h3,
  .footer-contact h3{
    font-size:20px;
  }

  .footer-text,
  .footer-links a,
  .contact-info p{
    font-size:14px;
  }

  .footer-social{
    margin-top:20px;
  }
}

/* =========================
   HIRE SECTION
========================= */



/* RESET & BASE STYLES -  */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      line-height: 1.5;
    }

    /* ========== HIRE FROM US SECTION  ========== */
    .hire-section {
      padding: 4rem 1rem;
      background-color: #f8fafc; /* bg-slate-50 */
      margin-bottom: 4rem;
    }

    /* Container */
    .container {
      max-width: 1280px; /* max-w-7xl */
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Responsive container padding */
    @media (min-width: 640px) {
      .container {
        padding: 0 1.5rem;
      }
      .hire-section {
        padding: 4rem 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

    /* Heading Styles */
    .heading-wrapper {
      text-align: center;
      margin-bottom: 3rem; /* mb-12 */
    }

    .heading-wrapper h2 {
      font-size: 1.875rem; /* text-3xl */
      font-weight: 800; /* font-extrabold */
      color: #0f172a; /* text-slate-900 */
    }

    .heading-wrapper p {
      margin-top: 0.75rem; /* mt-3 */
      color: #475569; /* text-slate-600 */
      max-width: 42rem; /* max-w-2xl */
      margin-left: auto;
      margin-right: auto;
    }

    @media (min-width: 640px) {
      .heading-wrapper h2 {
        font-size: 2.25rem; /* sm:text-4xl */
      }
    }

    /* 2-Column Grid Layout */
    .two-column-grid {
      display: grid;
      gap: 3rem; /* gap-12 */
    }

    @media (min-width: 1024px) {
      .two-column-grid {
        grid-template-columns: repeat(2, 1fr); /* lg:grid-cols-2 */
        gap: 3rem;
      }
    }

    /* Registration Form Card */
    .form-card {
      background-color: white; /* bg-white */
      border-radius: 1rem; /* rounded-2xl */
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02); /* shadow-md */
      border: 1px solid #e2e8f0; /* border-slate-200 */
      padding: 1.5rem;
    }

    @media (min-width: 640px) {
      .form-card {
        padding: 2rem; /* sm:p-8 */
      }
    }

    .form-card h3 {
      font-size: 1.25rem; /* text-xl */
      font-weight: 600; /* font-semibold */
      margin-bottom: 1.5rem; /* mb-6 */
      color: #1e293b; /* text-slate-800 */
    }

    /* Form Group Styles */
    .form-group {
      margin-bottom: 1rem; /* space-y-4 gap is 1rem per group */
    }

    .form-group label {
      display: block;
      font-size: 0.875rem; /* text-sm */
      font-weight: 500; /* font-medium */
      color: #334155; /* text-slate-700 */
      margin-bottom: 0.25rem; /* mb-1 */
    }

    .form-group input,
    .form-group textarea {
      width: 100%; /* w-full */
      border-radius: 0.5rem; /* rounded-lg */
      border: 1px solid #cbd5e1; /* border-slate-300 */
      padding: 0.5rem 1rem; /* px-4 py-2 */
      font-size: 0.95rem;
      font-family: inherit;
      background-color: white;
      transition: all 0.2s ease;
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #0f172a;
      box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1); /* focus:ring-2 focus:ring-slate-900 */
    }

    /* Submit Button */
    .submit-btn {
      width: 100%; /* w-full */
      background-color: #0f172a; /* bg-slate-900 */
      color: white;
      padding: 0.625rem 1rem; /* py-2.5 */
      border-radius: 0.5rem; /* rounded-lg */
      font-weight: 500; /* font-medium */
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease;
      margin-top: 0.5rem;
    }

    .submit-btn:hover {
      background-color: #1e293b; /* hover:bg-slate-800 */
    }

    /* Features Grid (4 cards, 2x2 on tablet/desktop) */
    .features-grid {
      display: grid;
      gap: 1.5rem; /* gap-6 */
    }

    @media (min-width: 640px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr); /* sm:grid-cols-2 */
      }
    }

    /* Individual Feature Card */
    .feature-card {
      background-color: white; /* bg-white */
      border-radius: 1rem; /* rounded-2xl */
      padding: 1.5rem; /* p-6 */
      border: 1px solid #e2e8f0; /* border-slate-200 */
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02); /* shadow-sm */
      transition: all 0.25s ease;
    }

    .feature-card:hover {
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02); /* hover:shadow-lg */
      transform: translateY(-2px);
    }

    /* Icon Box */
    .feature-icon-hire {
      height: 2.5rem; /* h-10 */
      width: 2.5rem; /* w-10 */
      background-color: #0f172a; /* bg-slate-900 */
      color: white;
      border-radius: 0.5rem; /* rounded-lg */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 1rem; /* mb-4 */
    }

    .feature-card h4 {
      font-size: 1.125rem; /* text-lg */
      font-weight: 600; /* font-semibold */
      margin-bottom: 0.5rem; /* mb-2 */
      color: #0f172a;
    }

    .feature-card p {
      color: #475569; /* text-slate-600 */
      font-size: 0.875rem; /* text-sm */
      line-height: 1.5;
    }

    /* Toast Notification (Success Message) */
    .toast-message {
      position: fixed;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      background-color: #0f172a;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 2rem;
      font-size: 0.9rem;
      font-weight: 500;
      z-index: 1000;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.25s ease;
      white-space: nowrap;
      font-family: system-ui, -apple-system, sans-serif;
    }

    @media (max-width: 640px) {
      .toast-message {
        white-space: normal;
        text-align: center;
        max-width: 90%;
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
      }
    }

    /* Simple helper for spacing */
    .mt-1 { margin-top: 0.25rem; }

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
}

.gallery-header p {
  margin-top: 10px;
  color: #475569;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  margin-top: -50px;
  
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
 
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
 
}

.gallery-card:hover .overlay {
  opacity: 1;
}

.overlay p {
  color: white;
  font-weight: 500;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close,
.prev,
.next {
  position: absolute;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.close {
  top: 20px;
  right: 30px;
}

.prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  overflow-x:hidden;
  
}

/* =========================
   NAVBAR
========================= */

.navbar{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  padding:20px 0;
}

.navbar-container{
  max-width:1400px;
  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0 40px;
}

/* =========================
   LOGO
========================= */

.logo{
  width:130px;
  display:block;
}

/* =========================
   MENU BUTTON
========================= */

.menu-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
}

.menu-icon{
  width:32px;
  height:32px;
}

/* =========================
   NAV MENU
========================= */

.nav-menu{
  display:flex;
  align-items:center;
}

.nav-list{
  display:flex;
  align-items:center;
  gap:28px;

  list-style:none;

  padding:16px 30px;

  border:1px solid rgba(255,255,255,0.2);
  border-radius:50px;

  background:rgba(0,0,0,0.25);
  backdrop-filter:blur(10px);
}

.nav-list li a{
  text-decoration:none;
  color:#ffffff;
  font-size:15px;
  font-weight:500;
  transition:0.3s ease;
}

.nav-list li a:hover{
  color:#d1d5db;
}

/* =========================
   BANNER
========================= */

.banner{
  position:relative;
  width:100%;
  height:550px;
  overflow:hidden;
}

/* IMAGE */

.banner-img{
  width:100%;
  height:100%;
  object-fit:cover;

  position:absolute;
  top:0;
  left:0;
}

/* OVERLAY */

.banner-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* CONTENT */

.banner-content{
  position:relative;
  z-index:10;

  width:100%;
  height:100%;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;
  color:#ffffff;

  padding:0 20px;
}

.banner-content h1{
  font-size:64px;
  font-weight:700;
  line-height:1.2;
  max-width:900px;
}

.banner-content p{
  margin-top:20px;
  font-size:20px;
  line-height:1.7;
  max-width:700px;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

  .navbar-container{
    padding:0 25px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;

    width:100%;

    display:none;

    padding:20px;
  }

  .nav-menu.active{
    display:block;
  }

  .nav-list{
    flex-direction:column;
    align-items:flex-start;

    width:100%;

    gap:18px;

    border-radius:20px;

    background:rgba(0,0,0,0.92);
  }

  .banner-content h1{
    font-size:48px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .banner{
    height:480px;
  }

  .banner-content h1{
    font-size:36px;
  }

  .banner-content p{
    font-size:16px;
  }

  .logo{
    width:100px;
  }

}

@media(max-width:480px){

  .navbar-container{
    padding:0 18px;
  }

  .banner-content h1{
    font-size:30px;
  }

  .banner-content p{
    font-size:15px;
  }

}


/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  
  margin-bottom: 56px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== HEADING ===== */
.contact-heading {
  text-align: center;
  margin-bottom: 50px;
}

.contact-heading h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}

.contact-heading p {
  max-width: 700px;
  margin: auto;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #ffffff;
  padding: 20px 15px 20px 25px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 22px;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
 
}

.info-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== MAP ===== */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== FORM ===== */
.contact-form-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.contact-form-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group label {
  /* display: block; */
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

/* ===== BUTTON ===== */
.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #0f172a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #1e293b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-heading h2 {
    font-size: 30px;
  }

  .contact-form-box {
    padding: 25px;
  }
}


/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #0f172a;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   HERO SECTION
========================= */

.courses-hero {
  padding: 40px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-content p {
  margin-top: 16px;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

/* =========================
   FILTER BOX
========================= */

.filter-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-flex {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Search */

.search-box {
  position: relative;
  flex: 1;
}

.search-box input {
  width: 100%;
  padding: 14px 45px 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  outline: none;
  font-size: 15px;
}

.search-box input:focus {
  border-color: #0f172a;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

/* Select */

.select-box {
  position: relative;
  width: 250px;
}

.select-box select {
  width: 100%;
  appearance: none;
  padding: 14px 40px 14px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  outline: none;
  background: #fff;
  font-size: 15px;
}

.select-box select:focus {
  border-color: #0f172a;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  color: #475569;
}

/* =========================
   COURSE GRID
========================= */

.course-cards-section {
  padding-bottom: 80px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* =========================
   CARD
========================= */

.card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card-image {
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.4s ease;
}

.card-box:hover img {
  transform: scale(1.05);
}

/* Content */

.card-content {
  padding: 20px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.card-top h3 {
  font-size: 18px;
  font-weight: 600;
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #334155;
  font-weight: 500;
}

.clock-icon {
  width: 16px;
  height: 16px;
}

.card-description {
  margin-top: 14px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

/* Footer */

.card-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.level {
  font-size: 12px;
  color: #64748b;
}

.details-btn {
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.details-btn:hover {
  opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .course-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .filter-flex {
    flex-direction: column;
  }

  .select-box {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .course-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .courses-hero {
    padding: 30px 0 40px;
  }
}

/* =========================
   GLOBAL
========================= */

.container {
  max-width: 1150px;
  margin: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================
   HERO SECTION
========================= */

.course-hero {
  padding: 70px 0;
  color: #000000;
}

.course-hero-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 24px;

  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.course-hero-image {
  width: 100%;
  max-width: 300px;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.course-hero-content {
  flex: 1;
}

.course-hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.course-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #000000;
}

/* =========================
   TAGS
========================= */

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.course-tags span {
  background: rgba(0,0,0,0.08);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
}

/* =========================
   OVERVIEW
========================= */

.overview-section {
  padding: 60px 0;
}

.overview-section h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}

.overview-section p {
  color: #475569;
  line-height: 1.7;
  font-size: 17px;
  text-align: justify;
}

/* =========================
   MODULES
========================= */

.modules-section {
  padding: 60px 0;
}

.modules-section .container {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.modules-section h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.module-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
}

.module-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.module-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.module-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}
/* =========================
   COURSE FEATURES SECTION
========================= */

.course-features-section{
  padding: 80px 0;
}

.course-features-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Heading */

.course-features-heading{
  font-size: 25px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 40px;
}

/* Grid */

.course-features-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Feature Box */

.course-feature-box{
  padding: 25px;
  border-radius: 24px;

  background: linear-gradient(
    to right,
    #eef2ff,
    #f5f3ff
  );

  border: 1px solid #c7d2fe;

  box-shadow: 0 4px 12px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}

.course-feature-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Title */

.course-feature-title{
  font-size: 17px;
  font-weight: 700;
  color: #111827;

  margin-bottom: 14px;
}

/* Text */

.course-feature-text{
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px){

  .course-features-grid{
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width: 768px){

  .course-features-grid{
    grid-template-columns: 1fr;
  }

  .course-features-heading{
    font-size: 30px;
  }

}
.advantage-section{
  padding: 80px 20px;
  
}

.advantage-container{
  max-width: 1200px;
  margin: auto;
}

.advantage-heading{
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 50px;
}

.advantage-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.advantage-card{
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.advantage-card:hover{
  transform: translateY(-8px);
}

.advantage-title{
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.advantage-text{
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  text-align: justify;
}

/* =========================
   DURATION
========================= */

.duration-section {
  padding: 60px 0 90px;
  text-align: center;
}

.duration-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.duration-section p {
  font-size: 20px;
  color: #64748b;
  margin-bottom: 30px;
}

.duration-section p span {
  font-weight: 600;
  color: #1e293b;
}

.duration-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #000000;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.duration-btn:hover {
  background: #000000;
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 768px) {

  .course-hero-container {
    flex-direction: row;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {

  .course-hero-content h1 {
    font-size: 34px;
  }

  .overview-section h2,
  .modules-section h2,
  .features-section h2,
  .duration-section h2 {
    font-size: 28px;
  }

  .modules-section .container {
    padding: 35px 24px;
  }
}


/* =========================
   CAREER SECTION
========================= */

.career-section {
  padding: 70px 20px;
  background: #ffffff;
}

.career-header {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.career-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.career-header p {
  margin-top: 10px;
  color: #6b7280;
  font-size: 16px;
}

/* =========================
   ACCORDION
========================= */

.accordion-container {
  max-width: 850px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.accordion-item {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid #0e0d0dc9;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-icon.rotate {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 20px 24px;
}

.hidden {
  display: none;
}

/* =========================
   JOB ROW
========================= */

.job-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.border-bottom {
  border-bottom: 1px solid #e5e7eb;
}

.job-info {
  display: flex;
  align-items: center;
  gap: 24px;

  font-size: 14px;
  color: #6b7280;
}

.job-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.job-link:hover {
  text-decoration: underline;
}

/* =========================
   LIFE SECTION
========================= */

.career-image-section {
  padding: 70px 20px;
  background: #ffffff;
}

.career-image-container {
  max-width: 1200px;
  margin: auto;
}

.life-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: #111827;
  margin-bottom: 20px;
}

.life-text {
  max-width: 700px;
  margin: auto;
  text-align: center;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* =========================
   IMAGE GRID
========================= */

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.image-box {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.image-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

/* Tall Image */

.tall-image {
  grid-column: span 2;
}

.tall-image img {
  height: 540px;
}

/* =========================
   OVERLAY
========================= */

.overlay-image {
  position: relative;
}

.overlay-content {
  position: absolute;
  inset: 0;

  background: rgba(138, 136, 136, 0.8);

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 12px;
}

.overlay-content a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 768px) {

  .life-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tall-image {
    grid-row: span 2;
    grid-column: auto;
  }
}

@media (max-width: 768px) {

  .job-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .job-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .career-header h2,
  .life-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {

  .life-grid {
    grid-template-columns: 1fr;
  }

  .tall-image {
    grid-column: auto;
  }

  .tall-image img {
    height: 260px;
  }

  .accordion-btn {
    font-size: 17px;
    padding: 18px;
  }
}

/* ============================================
   BLOG SECTION 
   ============================================ */

/* ========== BLOG HEADER SECTION ========== */
.blog-header-section {
  padding: 4rem 0;
  color: #000000;
}

.blog-header-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.blog-main-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
  color: #4b5563;
}

/* ========== BLOG CARDS SECTION ========== */
.blog-cards-section {
  padding: 2.5rem 0 2.5rem 0;
  margin-bottom: 2.5rem;
}

.blog-cards-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

/* Blog Card Link */
.blog-card-link {
  text-decoration: none;
  display: block;
}

/* Blog Card */
.blog-card {
  width: 100%;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.blog-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Blog Card Image */
.blog-card-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}

/* Blog Card Content */
.blog-card-content {
  padding: 1.25rem;
}

/* Brand / Logo */
.blog-brand {
  margin-bottom: 0.5rem;
}

.blog-brand-name {
  font-weight: 700;
  font-size: 1.125rem;
  color: #000000;
}

.blog-brand-light {
  color: #4b5563;
  font-weight: 300;
}

/* Blog Title */
.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.375;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
  cursor: pointer;
}

.blog-card-title:hover {
  color: #16a34a;
}

/* Blog Card Footer */
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #475569;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Small devices (640px and up) */
@media (min-width: 640px) {
  .blog-main-title {
    font-size: 3rem;
  }
  
  .blog-subtitle {
    font-size: 1.25rem;
  }
  
  .blog-card {
    width: 300px;
  }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
  .blog-header-section {
    padding: 4rem 0;
  }
  
  .blog-main-title {
    font-size: 3.5rem;
  }
}

/* Large devices (1024px and up) */
@media (min-width: 1024px) {
  .blog-main-title {
    font-size: 3.75rem;
  }
}

/* Mobile devices (max 639px) */
@media (max-width: 639px) {
  .blog-header-section {
    padding: 3rem 0;
  }
  
  .blog-main-title {
    font-size: 2rem;
  }
  
  .blog-subtitle {
    font-size: 1rem;
  }
  
  .blog-cards-section {
    padding: 1.5rem 0;
  }
  
  .blog-card-content {
    padding: 1rem;
  }
  
  .blog-card-title {
    font-size: 1.125rem;
  }
  
  .blog-card-footer {
    font-size: 0.75rem;
  }
}

/* Extra small devices (max 480px) */
@media (max-width: 480px) {
  .blog-cards-grid {
    gap: 1rem;
  }
  
  .blog-card-image {
    height: 11rem;
  }
  
  .blog-brand-name {
    font-size: 1rem;
  }
  
  .blog-card-title {
    font-size: 1rem;
  }
}
/* =========================
   BLOG DETAILS SECTION
========================= */

.blog-details-section {
  padding: 80px 20px;
  margin-bottom: 40px;
  background: #ffffff;
}

/* =========================
   BLOG HEADER
========================= */

.blog-header {
  max-width: 900px;
  margin: 0 auto;
}

.blog-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* =========================
   BLOG META
========================= */

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 30px;
}

.blog-meta strong {
  color: #334155;
}

/* =========================
   BLOG IMAGE
========================= */

.blog-image {
 
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  
}

.blog-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  
}

/* =========================
   BLOG CONTENT
========================= */

.blog-content {
  max-width: 900px;
  margin: 0 auto;
  color: #475569;
  line-height: 1.9;
}

.blog-content p {
  margin-bottom: 24px;
  font-size: 17px;
}

.blog-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 40px;
  margin-bottom: 16px;
}

.blog-content blockquote {
  border-left: 4px solid #16a34a;
  padding-left: 18px;
  margin: 30px 0;
  font-style: italic;
  color: #64748b;
  font-size: 18px;
}

/* =========================
   TAGS
========================= */

.blog-tags {
  max-width: 900px;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-tags span {
  background: #dcfce7;
  color: #15803d;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .blog-details-section {
    padding: 60px 15px;
  }

  .blog-title {
    font-size: 32px;
  }

  .blog-meta {
    gap: 14px;
    font-size: 13px;
  }

  

  .blog-content h2 {
    font-size: 24px;
  }

  .blog-content p {
    font-size: 16px;
  }
}


/* =========================
     ABOUT US SECTION
     Images Left - Content Right
     Different Widths & Different Heights
========================= */

.about-page-section {
  background-color: #ffffff;
  padding-top: 64px;
  padding-bottom: 64px;
  margin-left: 80px;
  margin-right: 80px;
}

.about-wrapper {
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 16px;
}

/* Grid Layout - Images Left, Content Right */
.about-grid {
  display: block;
}

/* ===================== */
/* LEFT SIDE - Images Column */
/* ===================== */

.about-images-col {
  margin-bottom: 30px;
}

/* Rotating Image Grid - Different Widths & Different Heights */
.image-rotating-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: start;  /* Allows different heights */
  margin-left:60px ;
}

/* Different widths for images */
.image-item-1 {
  grid-column: span 4;  /* Width: 4 columns */
}

.image-item-2 {
  grid-column: span 3;  /* Width: 3 columns */
}

.image-item-3 {
  grid-column: span 5;  /* Width: 5 columns */
}

/* DIFFERENT HEIGHTS for each image */
.image-item-1 .rounded-image {
  height: 350px;  /* Tall image */
}

.image-item-2 .rounded-image {
  height: 220px;  /* Short image */
}

.image-item-3 .rounded-image {
  height: 290px;  /* Medium image */
}

.rounded-image {
  border-radius: 16px;
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rounded-image:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

/* ===================== */
/* RIGHT SIDE - Text Column */
/* ===================== */

.about-text-col {
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
}

.about-text-wrapper {
  width: 100%;
}

.about-text-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Typography */
.about-badge {
  font-size: 16px;
  color: #6b7280;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
  margin-left: 40px;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 16px;
  color: #0f172a;
}

.about-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 20px;
  text-align: justify;
  padding: 0 50px;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

/* ===================== */
/* Bottom Paragraphs */
/* ===================== */

.about-bottom-text {
  margin-top: 30px;
}

.about-paragraph-offset {
  margin-top: 20px;
}

/* ===================== */
/* Responsive Design */
/* ===================== */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .about-page-section {
    padding: 80px 0;
  }
  
  .about-grid {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: start;
  }
  
  .about-images-col {
    flex: 1;
    margin-bottom: 0;
  }
  
  .about-text-col {
    flex: 1;
    margin-top: 0;
  }
  
  .about-title {
    font-size: 38px;
  }
  
  .image-rotating-grid {
    gap: 16px;
  }
  
  /* Tablet different heights */
  .image-item-1 .rounded-image {
    height: 380px;
  }
  
  .image-item-2 .rounded-image {
    height: 240px;
  }
  
  .image-item-3 .rounded-image {
    height: 310px;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .about-page-section {
    margin-left: 80px;
    margin-right: 80px;
  }
  
  .about-grid {
    gap: 70px;
  }
  
  .about-wrapper {
    padding: 56px 32px;
  }
  
  .about-title {
    font-size: 42px;
  }
  
  .about-paragraph {
    font-size: 16px;
    line-height: 1.7;
  }
  
  .image-rotating-grid {
    gap: 20px;
  }
  
  /* Desktop different heights */
  .image-item-1 .rounded-image {
    height: 420px;
  }
  
  .image-item-2 .rounded-image {
    height: 260px;
  }
  
  .image-item-3 .rounded-image {
    height: 340px;
  }
  
  .about-paragraph-offset {
    margin-top: 30px;
  }
}

/* Large Desktop (1280px and up) */
@media (min-width: 1280px) {
  .about-grid {
    gap: 90px;
  }
  
  .about-title {
    font-size: 46px;
    margin-left: 50px;
  }
  
  .about-paragraph {
    font-size: 17px;
  }
  
  /* Large Desktop different heights */
  .image-item-1 .rounded-image {
    height: 450px;
  }
  
  .image-item-2 .rounded-image {
    height: 280px;
  }
  
  .image-item-3 .rounded-image {
    height: 360px;
  }
}

/* Mobile (640px and down) */
@media (max-width: 640px) {
  .about-page-section {
    margin-left: 0;
    margin-right: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .about-wrapper {
    padding: 20px 16px;
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .about-badge {
    font-size: 14px;
  }
  
  .about-paragraph {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .image-rotating-grid {
    gap: 10px;
  }
  
  /* Mobile different heights */
  .image-item-1 .rounded-image {
    height: 220px;
  }
  
  .image-item-2 .rounded-image {
    height: 140px;
  }
  
  .image-item-3 .rounded-image {
    height: 180px;
  }
}

/* Extra Small Mobile (480px and down) */
@media (max-width: 480px) {
  .image-item-1 .rounded-image {
    height: 180px;
  }
  
  .image-item-2 .rounded-image {
    height: 110px;
  }
  
  .image-item-3 .rounded-image {
    height: 150px;
  }
  
  .about-title {
    font-size: 24px;
  }
  
  .image-rotating-grid {
    gap: 8px;
  }
}

/* =========================
   COMPANY HISTORY
========================= */

.about-company {
  padding: 10px 0;
}

.company-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

.company-heading {
  max-width: 700px;
}

.company-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.company-heading p {
  margin-top: 16px;
  color: #64748b;
  line-height: 1.8;
  width:1250px;
}

/* History Cards */
.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.history-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.history-card span {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1px;
}

.history-card h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}

.history-card p {
  margin-top: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* =========================
   MISSION & VISION
========================= */

.mission-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.6);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
/* Gap after main heading */
.mission-section h2 {
  margin-bottom: 30px;  /* Adds gap after heading */
  font-size: 36px;
}


.mission-card
 {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.mission-card h3,
.values-card h3 {
  font-size: 22px;
  font-weight: 600;
}

.mission-card p,
.values-card p {
  margin-top: 12px;
  color: #64748b;
  line-height: 1.8;
}
.mission-title{
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.mission-list{
  padding-left: 22px;
}

.mission-item{
  font-size: 16px;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 12px;
}

/* Values */
.values-list {
  margin-top: 20px;
}
.values-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  margin-top: 120px;

}

.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #64748b;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.indigo { background: #6366f1; }
.purple { background: #a855f7; }
.pink { background: #ec4899; }
.green { background: #10b981; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background: #f8fafc;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
}

.stat-box small {
  display: block;
  color: #64748b;
  margin-bottom: 8px;
}

.stat-box h4 {
  font-size: 30px;
  font-weight: 700;
}

/* =========================
   TIMELINE
========================= */

/* =========================
     TIMELINE SECTION
========================= */

.timeline-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.timeline-heading {
  max-width: 600px;
  margin-bottom: 50px;
}

.timeline-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.timeline-heading p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* Timeline */
.timeline {
  position: relative;
  border-left: 2px dashed #cbd5e1;
  margin-top: 50px;
  padding-left: 40px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  position: absolute;
  left: -58px;
  top: 0;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #6366f1;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.timeline-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.timeline-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

/* Buttons */
.timeline-buttons {
  display: flex;
  gap: 16px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-block;
  background-color: #0f172a;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background-color: #1e293b;
}

.btn-light {
  display: inline-block;
  background-color: #ffffff;
  color: #0f172a;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-light:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

/* ===================== */
/* Different Year Colors (Optional) */
/* ===================== */

.timeline-item:nth-child(1) .timeline-year {
  border-color: #6366f1;
  color: #6366f1;
}

.timeline-item:nth-child(2) .timeline-year {
  border-color: #a855f7;
  color: #a855f7;
}

.timeline-item:nth-child(3) .timeline-year {
  border-color: #ec4899;
  color: #ec4899;
}

.timeline-item:nth-child(4) .timeline-year {
  border-color: #10b981;
  color: #10b981;
}

/* ===================== */
/* Responsive Design */
/* ===================== */

@media (max-width: 768px) {
  .timeline-section {
    padding: 50px 0;
  }
  
  .timeline-heading h2 {
    font-size: 28px;
  }
  
  .timeline-heading p {
    font-size: 14px;
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  .timeline-year {
    left: -48px;
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  
  .timeline-card {
    padding: 20px;
  }
  
  .timeline-card h3 {
    font-size: 18px;
  }
  
  .timeline-card p {
    font-size: 14px;
  }
  
  .timeline-buttons {
    margin-top: 40px;
  }
  
  .btn-dark, .btn-light {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .timeline-section {
    padding: 40px 0;
  }
  
  .timeline-heading h2 {
    font-size: 24px;
  }
  
  .timeline {
    margin-top: 30px;
    padding-left: 25px;
  }
  
  .timeline-year {
    left: -42px;
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  
  .timeline-card {
    padding: 16px;
  }
  
  .timeline-card h3 {
    font-size: 16px;
  }
  
  .timeline-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-dark, .btn-light {
    text-align: center;
    width: 100%;
  }
}
/* =========================
   TEAM SECTION
========================= */

.team-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.6);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.team-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 24px;
  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.team-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.team-image {
  overflow: hidden;
  border-radius: 20px;
  background: #f1f5f9;
}

.team-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  margin-top: 18px;
}

.team-content h3 {
  font-size: 20px;
  font-weight: 600;
}
.member-role{
  
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}
.team-role {
  color: #64748b;
  font-size: 14px;
  margin-top: 4px;
}
.team-member-name{
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.team-member-role{
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  background: #eff6ff;
  padding: 6px 14px;
  border-radius: 30px;
}

.team-member-info{
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.crew-title{
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.crew-text{
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
}

/* Team CTA */
.team-cta {
  margin-top: 50px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.team-cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* For mobile responsiveness */
}

.team-cta h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0; /* Remove default margin */
  color: #0f172a;
}

.team-cta p {
  color: #64748b;
  margin: 8px 0 0 0; /* Top margin only */
  font-size: 15px;
}

/* Button styling (add this if needed) */
.team-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.team-cta-button:hover {
  opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .team-cta {
    padding: 20px;
  }
  
  .team-cta-flex {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .team-cta h3 {
    font-size: 20px;
  }
  
  .team-cta-button {
    width: 100%;
  }
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .about-grid,
  .mission-grid,
  .team-grid,
  .history-grid {
    grid-template-columns: 1fr;
  }

  .about-page-about-us {
    margin: 0 20px;
  }

  .team-cta-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {

  .image-grid-about {
    grid-template-columns: 1fr;
  }

  .image-grid-about .img-1,
  .image-grid-about .img-2,
  .image-grid-about .img-3 {
    grid-column: span 12;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-content h2,
  .company-heading h2 {
    font-size: 32px;
   
  }
}

/* =========================
   home
========================= */

/* =========================
   RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  overflow-x:hidden;
}

/* =========================
   HEADER SECTION
========================= */



.header-section{
  width:100%;
  min-height:100vh;
  position:relative;
  overflow:hidden;
  color:#fff;
}
.home-title,
.home-subtitle{
  transition:0.5s ease;
}

/* =========================
   BANNER SLIDER
========================= */

.banner-slider{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:-2;
}

.banner-slide{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  animation:bannerSlider 15s infinite;
}

/* Delay */

.banner-slide:nth-child(1){
  animation-delay:0s;
}

.banner-slide:nth-child(2){
  animation-delay:5s;
}

.banner-slide:nth-child(3){
  animation-delay:10s;
}

/* Animation */

@keyframes bannerSlider{

  0%{
    opacity:0;
    transform:scale(1);
  }

  10%{
    opacity:1;
  }

  30%{
    opacity:1;
    transform:scale(1.1);
  }

  40%{
    opacity:0;
  }

  100%{
    opacity:0;
  }
}

/* Overlay */

.header-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:-1;
}

/* =========================
   NAVBAR
========================= */

.navbar{
  width:100%;
  padding:20px 60px;
  position:relative;
  z-index:10;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-img{
  width:180px;
}

/* Navigation */

.nav-list{
  display:flex;
  gap:25px;
  list-style:none;
  align-items:center;
}

.nav-link{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight:500;
  transition:0.3s;
}

.nav-link:hover{
  color:#00c3ff;
}

/* Button */

.enquire-btn{
  background:#fff;
  color:#000;
  padding:12px 25px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
}

/* =========================
   HOME CONTENT
========================= */

.home-content{
  width:100%;
  height:80vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  z-index:5;
  padding:20px;
}

.home-content-inner{
  max-width:850px;
}

.home-title{
  font-size:60px;
  font-weight:700;
  margin-bottom:20px;
  line-height:1.2;
}

.home-subtitle{
  font-size:20px;
  line-height:1.8;
  margin-bottom:30px;
}

/* .home-btn{
  padding:15px 35px;
  border:none;
  border-radius:50px;
  background:#00c3ff;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  transition:0.3s;
}

.home-btn:hover{
  background:#0099cc;
} */

/* =========================
   MOBILE
========================= */

.mobile-menu-btn{
  display:none;
}

@media(max-width:991px){

  .navbar{
    padding:20px;
  }

  .nav-list{
    display:none;
  }

  .mobile-menu-btn{
    display:block;
    background:none;
    border:none;
    color:#fff;
    cursor:pointer;
  }

  .menu-icon{
    width:30px;
  }

  .home-title{
    font-size:40px;
  }

  .home-subtitle{
    font-size:16px;
  }

}

/* =========================
   NAVBAR
========================= */

.navbar{
  width:105%;
  position:absolute;
  top:0;
  left:0;
  z-index:100;
 
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-img{
  width:160px;
}

/* Navigation */

.navigation-menu{
  display:flex;
}

.nav-list{
  display:flex;
  align-items:center;
  gap:35px;
  list-style:none;
  border:1px solid rgba(255,255,255,0.2);
  padding:18px 35px;
  border-radius:60px;
}

.nav-link{
  color:#fff;
  text-decoration:none;
  font-size:18px;
  font-weight:500;
  transition:0.3s;
}

.nav-link:hover{
  color:#d4d4d4;
}

/* Enquire Button */

.enquire-btn{
  background:#fff;
  color:#000;
  padding:12px 26px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.enquire-btn:hover{
  background:#e5e5e5;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-container{
  position:absolute;
  left:30px;
  top:50%;
  transform:translateY(-50%);
  z-index:20;
}

.social-icons{

  flex-direction:column;
  
  margin-top:25px;
}

.social-icon,
.toggle-btn{
  color:#fff;
  text-decoration:none;
  font-size:20px;
  transition:0.3s;
}

.social-icon:hover{
  transform:translateX(5px);
}

/* =========================
   LIGHT IMAGE
========================= */

.light-image{
  position:absolute;
  left:110px;
  z-index:1;
   
}

.light-image img{
 width:390px;
height:570px;
}

/* =========================
   PHONE NUMBER
========================= */

.phone-number{
  position:absolute;
  left:220px;
  bottom:60px;
  display:flex;
  align-items:center;
  gap:18px;
  z-index:5;
 
}

.phone-icon{
  font-size:30px;
  margin-top:-120px;
  margin-left: -10px;
}

.phone-label{
  font-size:14px;
  color:#ddd;
  margin-top:-90px;
  margin-left: -3px;
}

.phone-value{
  font-size:17px;
  font-weight:700;
  letter-spacing:2px;
  margin-top:3px;
}

/* =========================
   HOME CONTENT
========================= */

.home-content{
  width:102%;
  min-height:100vh;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  padding-right:110px;
  position:relative;
  z-index:10;
}

.home-content-inner{
  max-width:760px;
}

.home-title{
  font-size:78px;
  line-height:1.1;
  font-weight:900;
  margin-bottom:35px;
}

.home-subtitle{
  font-size:28px;
  line-height:1.7;
  color:#ddd;
  margin-bottom:40px;
}

/* Button */

.home-btn a {
  padding:18px 40px;
  border-radius:50px;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:15px;
  cursor:pointer;
  backdrop-filter:blur(10px);
  transition:0.3s;
  text-decoration:none;
}

.home-btn:hover a{
  background:rgba(255,255,255,0.2);
}


/* =========================
     ABOUT US SECTION
========================= */

.about-us-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #ffffff;
}

.about-us-container {
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 16px;
}

/* Grid Layout */
.about-us-grid {
  display: block;
}

/* Images Column */
.about-us-images-col {
  margin-bottom: 20px;
}

/* Rotating Image Grid */
.about-us-image-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  align-items: center;
}

/* Image Items - Different Widths */
.about-us-image-item-4 {
  grid-column: span 4;
}

.about-us-image-item-3 {
  grid-column: span 3;
}

.about-us-image-item-5 {
  grid-column: span 5;
}

/* Images */
.about-us-image {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}

/* Text Column */
.about-us-text-col {
  margin-top: 20px;
  margin-left: 16px;
  margin-right: 16px;
}

.about-us-text-wrapper {
  width: 100%;
}

.about-us-text-inner {
  display:flex;
  flex-direction:column;
  gap:24px;

  align-items:flex-start;   /* inline alignment */
  justify-content:flex-start;
}

/* Typography */
.about-us-badge {
  font-size: 18px;
  color: #6b7280;
  display: block;
}

.about-us-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 8px;
  color: #0f172a;
}

.about-us-paragraph {
  font-size: 17px;
  line-height: 1.6;
  color: #6b7280;
  text-align: justify;
  margin-bottom: 0;
  margin-right: 30px;
}

/* =========================
     RESPONSIVE DESIGN
========================= */

/* Small screens (640px and up) */
@media (min-width: 640px) {
  .about-us-container {
    padding: 40px 24px;
  }
  
  .about-us-text-col {
    margin-top: 40px;
  }
  
  .about-us-text-inner {
    gap: 32px;
  }
  
  .about-us-image-grid {
    gap: 24px;
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .about-us-text-col {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Large screens (1024px and up) */
@media (min-width: 1024px) {
  .about-us-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 64px;
    align-items: center;
  }
  
  .about-us-images-col {
    grid-column: span 7;
    margin-bottom: 0;
  }
  
  .about-us-text-col {
    grid-column: span 5;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  .about-us-image-grid {
    transform: translateX(-40px);
  }
  
  .about-us-container {
    padding: 56px 32px;
  }
  
  .about-us-title {
    font-size: 40px;
  }
}

/* Extra large screens (1280px and up) */
@media (min-width: 1280px) {
  .about-us-title {
    font-size: 42px;
  }
  
  .about-us-paragraph {
    font-size: 17px;
    line-height: 1.7;
  }
}

/* Mobile (640px and down) */
@media (max-width: 640px) {
  .about-us-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .about-us-container {
    padding: 20px 16px;
  }
  
  .about-us-title {
    font-size: 28px;
  }
  
  .about-us-badge {
    font-size: 16px;
  }
  
  .about-us-paragraph {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .about-us-image-grid {
    gap: 8px;
  }
}

/* Extra small (480px and down) */
@media (max-width: 480px) {
  .about-us-title {
    font-size: 24px;
  }
  
  .about-us-paragraph {
    font-size: 14px;
  }
}
/* =========================
     COURSES SECTION
========================= */
.courses-section {
  padding: 64px 0;
  background-color: #ffffff;
  margin-top: -100px;
}

.courses-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.courses-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.courses-badge {
  font-size: 18px;
  color: #6b7280;
}

.courses-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 8px;
}

.courses-description {
  max-width: 576px;
  color: #6b7280;
  margin-top: 16px;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.course-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  
}

.course-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  /* filter: grayscale(100%); */
}

.course-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.course-info {
  position: absolute;
  bottom: 0;
  padding: 16px;
  color: white;
}

.course-modules {
  font-size: 14px;
  color: #d1d5db;
}

.course-name {
  font-size: 18px;
  font-weight: 500;
}

.course-duration {
  font-size: 14px;
  color: #d1d5db;
}

/* =========================
     WHY CHOOSE US SECTION
========================= */
.why-choose-section {
  padding: 64px 0;
  background-color: #ffffff;
  margin: 0 20px;
}

.why-choose-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.why-choose-left {
  flex: 1;
}

.why-choose-badge {
  font-size: 18px;
  color: #6b7280;
}

.why-choose-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 8px;
}

.why-choose-desc {
  font-size: 17px;
  margin-top: 16px;
  color: #6b7280;
  text-align: justify;
  line-height: 1.7;
}

.features-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
  background-color: white;
  
}

.grayscale-icon {
  filter: grayscale(100%);
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
}

.feature-desc {
  font-size: 15px;
  color: #6b7280;
  text-align: justify;
  line-height: 1.4;
}

.why-choose-right {
  flex: 1;
  position: relative;
}

.why-choose-image {
  width: 550px;
  height: 600px;
  border-radius: 12px;
  object-fit: cover;
  filter: grayscale(100%);
  margin-left: auto;   /* move image to right */
  margin-right: -25px;
  display: block;
}

.help-box {
  position: absolute;
  left: 70%;
  margin-left: 35px;
  transform: translateX(-50%);
  background-color: #000000;
  color: white;
  padding: 24px;
  border-radius: 12px;
  max-width: 320px;
  text-align: center;
  bottom: -40px;
}

.help-box-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.help-box-desc {
  font-size: 14px;
  color: #d1d5db;
}

/* =========================
     TECHNOLOGIES SECTION
========================= */
.technologies-section {
  padding: 64px 0;
  background-color: #ffffff;
  margin: 0 20px;
}

.technologies-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.tech-badge {
  font-size: 18px;
  color: #6b7280;
}

.tech-title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 32px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tech-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  width: 100%;
}

.tech-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  /* filter: grayscale(100%); */
}

.tech-hover-box {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  transition: all 0.3s;
  padding: 16px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tech-card:hover .tech-hover-box {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.tech-name {
  font-weight: 700;
  color: #000000;
}

/* =========================
     CERTIFICATES SECTION
========================= */
.certificates-section {
  padding: 64px 0;
  background-color: #ffffff;
}

.certificates-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
  padding: 0 20px;
}

.certificates-badge {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #4b5563;
}

.certificates-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 32px;
}

.certificates-slider {
  overflow: hidden;
  width: 100%;
  background-color: #ffffff;
}

.logos-wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
}

.certificate-logo {
  height: 150px;
  filter: grayscale(100%);
}

/* =========================
     TESTIMONIALS SECTION
========================= */
/* --- Base Reset & Core Theme Variables --- */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }

    :root {
      --brand-primary: #3b82f6;
      --star-color: #f59e0b;
      --text-main: #0f172a;
      --text-sub: #64748b;
      --surface-white: #ffffff;
      --motion-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* --- Core Section Canvas --- */
    .app-review-wrapper {
      width: 100%;
      padding: 120px 20px;
      background: radial-gradient(circle at center, #f8fafc 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Abstract geometric dot matrices */
    .app-review-wrapper::before,
    .app-review-wrapper::after {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      opacity: 0.06;
      background-image: radial-gradient(#000 2px, transparent 2px);
      background-size: 14px 14px;
      pointer-events: none;
    }
    .app-review-wrapper::before { top: 10%; left: 6%; }
    .app-review-wrapper::after { bottom: 10%; right: 6%; }

    /* --- The Master Grid Array --- */
    .review-master-container {
      max-width: 1200px;
      width: 100%;
      position: relative;
      min-height: 550px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    /* --- Heading / Badge Architecture --- */
    .review-header-group {
      position: absolute;
      top: -50px;
      text-align: center;
      z-index: 10;
    }

    .review-mini-tag {
      font-size: 0.85rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #6b7280;
      margin-bottom: 6px;
    }

    .review-main-heading {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }

    /* --- Floating User Network Layer --- */
    .user-avatar-matrix {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
    }

    .matrix-node-holder {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .floating-profile-ring {
      position: absolute;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
      border: 4px solid var(--surface-white);
      transition: var(--motion-smooth);
    }

    /* Scattered positioning map coordinates */

.node-pos-1 {
  width: 68px;
  height: 68px;
  top: 12%;
  left: 8%;
  border-color: #93c5fd;
}

.node-pos-2 {
  width: 88px;
  height: 88px;
  top: 48%;
  left: 3%;
  border-color: #fca5a5;
}

.node-pos-3 {
  width: 72px;
  height: 72px;
  bottom: 8%;
  left: 14%;
  border-color: #6ee7b7;
}

.node-pos-4 {
  width: 68px;
  height: 68px;
  top: 12%;
  right: 8%;
  border-color: #f472b6;
}

.node-pos-5 {
  width: 88px;
  height: 88px;
  top: 48%;
  right: 3%;
  border-color: #fcd34d;
}

.node-pos-6 {
  width: 72px;
  height: 72px;
  bottom: 8%;
  right: 14%;
  border-color: #c084fc;
}

    /* Interactive state scaling */
    .floating-profile-ring.is-highlighted {
      transform: scale(1.18);
      box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
    }

    /* --- Central Content Engine Panel --- */
    .feedback-focus-deck {
      max-width: 650px;
      width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 5;
      padding: 20px;
    }

    .rating-stars-row {
      color: var(--star-color);
      font-size: 1.5rem;
      margin-bottom: 24px;
      letter-spacing: 3px;
    }

    .client-quote-text {
      font-size: 17px;
      line-height: 1.7;
      color: #6b7280;
      font-weight: 400;
      margin-bottom: 24px;
      transition: opacity 0.25s ease, transform 0.25s ease;
      font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }

    .client-title-name {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 32px;
      transition: opacity 0.25s ease;
    }

    /* --- Navigation Controls Framework --- */
    .deck-nav-arrows {
      position: absolute;
      width: 100%;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 30px;
      pointer-events: none;
      z-index: 6;
    }

    .deck-ctrl-btn {
      pointer-events: auto;
      background: var(--surface-white);
      border: 1px solid #e2e8f0;
      color: var(--text-sub);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
      transition: var(--motion-smooth);
    }

    .deck-ctrl-btn:hover {
      background-color: var(--text-main);
      color: var(--surface-white);
      border-color: var(--text-main);
      transform: scale(1.08);
    }

    /* --- Indicator Pagination System --- */
    .deck-slider-dots {
      display: flex;
      gap: 10px;
      margin-bottom: 45px;
    }

    .slider-pill {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background-color: #cbd5e1;
      transition: var(--motion-smooth);
    }

    .slider-pill.pill-active {
      background-color: var(--brand-primary);
      transform: scale(1.25);
    }

    /* --- Authority Badges Footer Layout --- */
    .trust-authority-footer {
      display: flex;
      gap: 70px;
      align-items: center;
      margin-top: 15px;
      border-top: 1px solid #f1f5f9;
      padding-top: 35px;
      width: 100%;
      justify-content: center;
    }

    .trust-badge-node {
      text-align: center;
    }

    .trust-brand-logo {
      height: 26px;
      object-fit: contain;
      margin-bottom: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .trust-stars-caption {
      color: var(--star-color);
      font-size: 0.85rem;
      font-weight: 500;
    }

    /* --- Fluid Scalability Media Queries --- */
    @media (max-width: 900px) {
      .floating-profile-ring {
        display: none; /* Safely strips background cloud graphics on smaller break windows */
      }
      .deck-nav-arrows {
        position: relative;
        transform: none;
        top: 0;
        width: auto;
        gap: 30px;
        margin-bottom: 25px;
        order: 2;
      }
      .feedback-focus-deck {
        order: 1;
      }
      .trust-authority-footer {
        flex-direction: column;
        gap: 35px;
      }
    }
/* =========================
     COMPANIES SECTION
========================= */
.companies-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.companies-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.companies-badge {
  color: #6b7280;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.companies-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

.companies-desc {
  color: #6b7280;
  font-size: 17px;
  margin-bottom: 32px;
  text-align: justify;
  line-height: 1.7;
}

.companies-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.company-logo-card {
  background-color: #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: all 0.1s ease-in-out;
}

.company-logo-card:hover {
  border-radius: 9999px;
}

.company-logo-card img {
  max-height: 100px;
}

/* =========================
     CONTACT SECTION
========================= */
.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 0 24px;
}

.contact-left {
  text-align: center;
}

.contact-title {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-desc {
  font-size: 17px;
  color: #6b7280;
  margin-bottom: 32px;
  text-align: justify;
  line-height: 1.7;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #000000;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: all 0.3s;
}

.contact-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.contact-right {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-slider {
  position: relative;
  width: 100%;
  max-width: 384px;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  filter: grayscale(100%);
}

.slide-img {
  position: absolute;
  top: 50%;
  right: 0;              /* align to right */
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  object-fit: contain;   /* full image visible */
  object-position: right center;
  opacity: 0;
  transition: opacity 1s;
  
}

.slide-img:first-child {
  opacity: 1;
}

/* =========================
     RESPONSIVE DESIGN
========================= */
@media (min-width: 640px) {
  .home-title {
    font-size: 48px;
  }
  
  .home-subtitle {
    font-size: 19px;
  }
  
  .courses-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .courses-description {
    margin-top: 0;
    text-align: justify;
    line-height: 1.6;
    font-size: 17px;
  }
  
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-container {
    flex-direction: row;
    text-align: left;
  }
  
  .companies-container {
    flex-direction: row;
  }
  
  .contact-container {
    flex-direction: row;
    text-align: left;
  }
  
  .contact-left {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .nav-container {
    margin: 0 80px;
  }
  
  .logo-img {
    width: auto;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .navigation-menu {
    display: flex;
  }
  
  .nav-list {
    flex-direction: row;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 7px 15px;
    margin-top: -30px;
  }
  
  .light-image {
    display: block;
    height: 250px;
  }
  
  .why-choose-container {
    flex-direction: row;
  }
  
  .help-box {
    bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .home-title {
    font-size: 45px;
  }
  
  .courses-title {
    font-size: 40px;
  }
  
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

    /* ================= HEADER ================= */

    .header__section{
      position:relative;
      min-height:100vh;
      background:#000;
      color:#fff;
      overflow:hidden;
    }

    nav{
      position:absolute;
      top:0;
      left:0;
      width:100%;
      z-index:100;
    }

    .nav-container{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:20px 80px;
    }

    .logo img{
      width:180px;
      margin-top:-20px;
      margin-left:-80px;

    }

    .navigation__menu ul{
      display:flex;
      align-items:center;
      gap:22px;
      border:1px solid rgba(255,255,255,0.2);
      border-radius:50px;
      padding:14px 28px;
      backdrop-filter:blur(10px);
      background:rgba(255,255,255,0.05);
    }

    .navigation__menu ul li a{
      color:#fff;
      font-size:15px;
      transition:0.3s;
    }

    .navigation__menu ul li a:hover{
      color:#ccc;
    }

    .enquire-btn{
      background:#fff;
      color:#000 !important;
      padding:10px 20px !important;
      border-radius:35px;
      font-weight:600;
    }

    .light__image{
      position:absolute;
      right:0;
      top:0;
      opacity:0.4;
    }

    .light__image img{
      width:500px;
    }

    .phone__number{
      display:flex;
      align-items:center;
      gap:15px;
      position:absolute;
      bottom:50px;
      left:80px;
      z-index:10;
    }

    .phone__number i{
      font-size:28px;
    }

    .phone__number p:first-child{
      font-size:13px;
    }

    .phone__number p:last-child{
      font-size:20px;
      font-weight:600;
      letter-spacing:2px;
    }

    .home_content{
      display:flex;
      align-items:center;
      min-height:100vh;
      padding:0 80px;
    }

    .home_content .content{
      max-width:700px;
    }

    .home_content h5{
      font-size:64px;
      line-height:1.2;
      margin-bottom:25px;
      font-weight:800;
    }

    .home_content p{
      color:#ccc;
      line-height:1.8;
      margin-bottom:30px;
      font-size:17px;
    }

    .callback-btn{
      display:inline-block;
      padding:14px 28px;
      border-radius:40px;
      border:1px solid rgba(255,255,255,0.3);
      backdrop-filter:blur(10px);
      background:rgba(255,255,255,0.08);
      color:#fff;
      transition:0.3s;
    }

    .callback-btn:hover{
      background:rgba(255,255,255,0.2);
    }

    /* ================= SOCIAL ================= */

    #social-container{
      position:absolute;
      left:25px;
      top:50%;
      transform:translateY(-50%);
      z-index:100;
    }

    #social-container a{
      display:block;
      margin:20px 0;
      color:#fff;
      font-size:20px;
      transition:0.3s;
    }

    #social-container a:hover{
      transform:translateX(5px);
    }

    /* ================= ABOUT ================= */

    .about__us{
      padding:100px 80px;
    }

    .about-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      align-items:center;
    }

    .image-grid{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:20px;
      align-items:center;
    }

    .image-grid .img1{
      grid-column:span 4;
    }

    .image-grid .img2{
      grid-column:span 3;
    }

    .image-grid .img3{
      grid-column:span 5;
    }

    .image-grid img{
      border-radius:20px;
      width:100%;
      object-fit:cover;
    }

    .section-subtitle{
      color:#777;
      font-size:18px;
      margin-bottom:10px;
      display:block;
    }

    .section-title{
      font-size:48px;
      line-height:1.2;
      margin-bottom:25px;
      font-weight:700;
    }

    .about-text p{
      color:#666;
      line-height:1.9;
      margin-bottom:20px;
      text-align:justify;
    }

    /* ================= COURSES ================= */

    .course__section{
      padding:100px 80px;
    }

    .course-header{
      display:flex;
      justify-content:space-between;
      align-items:end;
      margin-bottom:60px;
      gap:40px;
    }

    .course-header p{
      max-width:500px;
      color:#666;
      line-height:1.8;
    }

    .course-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:30px;
    }

    .course-card {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      background: #fff;
}

  

    .course-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    }

    .course-info{
      position:absolute;
      bottom:20px;
      left:20px;
      color:#fff;
    }

    .course-info p{
      color:#ddd;
      margin-bottom:6px;
    }

    .course-info h3{
      font-size:24px;
      margin-bottom:8px;
    }

    /* ============================================
   WHY CHOOSE US SECTION 
   
   ============================================ */

/* Section Container */
.why-choose-section {
  padding: 4rem 0;
  background-color: #ffffff;
  margin: 0 5rem;
}

.why-choose-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* Left Content */
.why-choose-left {
  flex: 1;
  width: 100%;
}

.section-badge {
  font-size: 1.125rem;
  color: #6b7280;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.5rem;
}

.section-description {
  margin-top: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Feature Item */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.feature-icon.grayscale {
  filter: grayscale(100%);
}

.feature-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.feature-text {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Right Content */
.why-choose-right {
  flex: 1;
  position: relative;
  width: 100%;
}

.right-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.75rem;
  filter: grayscale(100%);
}

/* Help Box */
.help-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2rem;
  background-color: #000000;
  color: white;
  padding: 1.6rem;
  border-radius: 0.75rem;
  text-align: center;
  max-width: 15rem;
  width: 90%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.help-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.help-text {
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.5;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet and up (640px) */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

/* Desktop (768px) */
@media (min-width: 768px) {
  .why-choose-container {
    flex-direction: row;
  }
  
  .why-choose-left {
    width: auto;
  }
}

/* Large Desktop (1024px) */
@media (min-width: 1024px) {
  .section-title {
    font-size: 2.75rem;
  }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
  .why-choose-section {
    margin: 0 1rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .help-box {
    position: relative;
    bottom: 0;
    margin-top: 1.5rem;
    transform: translateX(0);
    left: 0;
    width: 100%;
    max-width: 100%;
  }
  
  .why-choose-right {
    display: flex;
    flex-direction: column;
  }
}

/* For very large screens */
@media (min-width: 1280px) {
  .why-choose-container {
    padding: 0 2rem;
  }
}

    /* ================= TECHNOLOGIES ================= */

    .technologies__section{
      padding:100px 80px;
    }

    .technology-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:25px;
      margin-top:50px;
    }

    .tech-card{
      position:relative;
      overflow:hidden;
      border-radius:20px;
    }

    .tech-card img{
      width:100%;
      height:250px;
      object-fit:cover;
      /* filter:grayscale(100%); */
    }

    .tech-name{
      position:absolute;
      bottom:20px;
      left:50%;
      transform:translateX(-50%);
      background:#fff;
      padding:14px 40px;
      border-radius:12px;
      font-weight:700;
      opacity:0;
      transition:0.4s;
    }

    .tech-card:hover .tech-name{
      opacity:1;
      bottom:30px;
    }

    /* ================= CERTIFICATES ================= */

    .certificates__section{
      padding:100px 80px;
    }

    .certificates__section h2{
      font-size:40px;
      margin:10px 0 40px;
    }

    .certificates__loop__companies{
      overflow:hidden;
    }

    #logo-container{
      display:flex;
      align-items:center;
      gap:60px;
      animation:scroll 15s linear infinite;
    }

    #logo-container img{
      height:180px;
      filter:grayscale(100%);
    }

    @keyframes scroll{
      from{
        transform:translateX(0);
      }
      to{
        transform:translateX(-50%);
      }
    }

    /* ================= TESTIMONIAL ================= */

    /* ============================================
   TESTIMONIALS SECTION 
   ============================================ */

/* Section Container */
.testimonials-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

.testimonials-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 0 1rem;
}

/* Left Content */
.testimonials-left {
  text-align: left;
}

.testimonials-badge {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.testimonials-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #111827;
  margin-top: 0.25rem;
}

/* Testimonials Images Container */
.testimonials-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

#testimonial-images {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Testimonial Image Wrapper (created by JavaScript) */
.testimonial-img-wrapper {
  position: absolute;
  width: 16rem;
  height: 20rem;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Content */
.testimonials-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Arrow Buttons */
.testimonials-arrows {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.arrow-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #000000;
  background-color: transparent;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background-color: #000000;
  color: #ffffff;
  transform: scale(1.05);
}

/* Testimonial Text */
.testimonial-text {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 300px;
}

/* Testimonial Name */
.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet and up (640px) */
@media (min-width: 640px) {
  .testimonials-container {
    padding: 0 1.5rem;
  }
  
  .testimonials-title {
    font-size: 2rem;
  }
  
  .testimonial-text {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 300px;

  font-family: "Times New Roman", Times, serif;

  text-align: justify;
}
}

/* Desktop (768px) */
@media (min-width: 768px) {
  .testimonials-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .testimonials-images {
    min-height: 350px;
  }
  
  .testimonial-img-wrapper {
    width: 18rem;
    height: 22rem;
  }
}

/* Large Desktop (1024px) */
@media (min-width: 1024px) {
  .testimonials-container {
    padding: 0 2rem;
  }
  
  .testimonials-title {
    font-size: 2.25rem;
  }
  
  .testimonial-img-wrapper {
    width: 20rem;
    height: 24rem;
  }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .testimonials-container {
    gap: 1.5rem;
  }
  
  .testimonials-left {
    text-align: center;
  }
  
  .testimonials-right {
    align-items: center;
    text-align: center;
  }
  
  .testimonial-text {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .testimonial-img-wrapper {
    width: 14rem;
    height: 18rem;
  }
}

/* Very Small Devices (max 480px) */
@media (max-width: 480px) {
  .testimonial-img-wrapper {
    width: 12rem;
    height: 16rem;
  }
  
  .arrow-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
  
  .testimonials-badge {
    font-size: 0.75rem;
  }
  
  .testimonials-title {
    font-size: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 0.875rem;
  }
}
    /* ================= COMPANIES ================= */

    .companies__section{
      padding:100px 80px;
    }

    .companies-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      align-items:center;
    }

    .companies__left__title h2{
      font-size:70px;
      line-height:1.1;
      margin:20px 0;
    }

    .companies__left__title p{
      color:#666;
      line-height:1.8;
    }

    .companies__profile__images{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }

    .companies__profile__images div{
      background:#eee;
      border-radius:20px;
      padding:30px;
      display:flex;
      justify-content:center;
      align-items:center;
      transition:0.3s;
    }

    .companies__profile__images div:hover{
      border-radius:50%;
    }

    /* =========================
     CONTACT SECTION
     Alternative Class Names
========================= */

/* Section Container */
.get-in-touch {
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 56px;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.touch-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.section-header p {
  margin-top: 12px;
  color: #475569;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Two Column Layout */
.two-column-layout {
  display: grid;
  gap: 40px;
}

/* Details Panel (Left Side) */
.details-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Detail Blocks */
.detail-block {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-block:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.detail-icon {
  height: 48px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #0f172a;
  color: #ffffff;
  flex-shrink: 0;
}

.detail-block h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 4px 0;
}

.detail-block p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Map Box */
.map-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.map-box iframe {
  width: 100%;
  height: 200px;
  display: block;
}

/* Form Panel (Right Side) */
.form-panel {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  border: 1px solid #e2e8f0;
  padding: 32px;
}

.form-panel:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.form-panel h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 24px 0;
}

/* Message Form */
.message-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Input Groups */
.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 4px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  padding: 8px 16px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
  box-sizing: border-box;
  font-family: inherit;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #0f172a;
  ring: 2px solid #0f172a;
}

.input-group textarea {
  resize: vertical;
}

/* Send Button */
.send-button {
  width: 100%;
  border-radius: 8px;
  background-color: #0f172a;
  color: #ffffff;
  padding: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 14px;
}

.send-button:hover {
  background-color: #1e293b;
}

/* =========================
     RESPONSIVE DESIGN
========================= */

/* Small screens (640px and up) */
@media (min-width: 640px) {
  .touch-wrapper {
    padding: 0 24px;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .two-column-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .get-in-touch {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .map-box iframe {
    height: 200px;
  }
}

/* Large screens (1024px and up) */
@media (min-width: 1024px) {
  .touch-wrapper {
    padding: 0 32px;
  }
  
  .section-header h2 {
    font-size: 40px;
  }
  
  .section-header p {
    font-size: 18px;
  }
  
  .detail-block {
    padding: 18px;
  }
  
  .form-panel {
    padding: 40px;
  }
}

/* Mobile (640px and down) */
@media (max-width: 640px) {
  .get-in-touch {
    padding-top: 48px;
    padding-bottom: 48px;
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-header p {
    font-size: 14px;
    padding: 0 16px;
  }
  
  .detail-block {
    padding: 16px;
  }
  
  .detail-icon {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
  
  .detail-block h4 {
    font-size: 16px;
  }
  
  .detail-block p {
    font-size: 13px;
  }
  
  .form-panel {
    padding: 20px;
  }
  
  .form-panel h3 {
    font-size: 18px;
  }
  
  .send-button {
    padding: 10px;
  }
}

/* Extra small (480px and down) */
@media (max-width: 480px) {
  .detail-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .detail-icon {
    margin-bottom: 8px;
  }
}

/* =========================
   JOB DETAILS
========================= */

.job-title{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.job-location{
  color:#555;
  margin-bottom:24px;
}

.job-meta{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  font-size:14px;
  color:#666;
  margin-bottom:40px;
}

.job-block{
  margin-bottom:40px;
}

.job-block h3{
  font-size:22px;
  margin-bottom:14px;
  font-weight:600;
}

.job-block p{
  color:#333;
}

.job-block ul{
  padding-left:20px;
}

.job-block ul li{
  margin-bottom:10px;
  color:#444;
}

/* =========================
   APPLICATION FORM
========================= */

.application-section{
  border-top:1px solid #ddd;
  padding-bottom:80px;
}

.apply-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:30px;
}

.application-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.application-form input,
.application-form textarea{
  width:100%;
  padding:14px;
  border:1px solid #ccc;
  border-radius:8px;
  font-size:15px;
  outline:none;
}

.application-form input:focus,
.application-form textarea:focus{
  border-color:#000;
}

/* =========================
   CAPTCHA
========================= */

.captcha-box{
  display:grid;
  grid-template-columns:120px 60px 1fr;
  gap:12px;
  align-items:center;
}

.captcha-code{
  background:#e5e5e5;
  padding:14px;
  border-radius:8px;
  text-align:center;
  font-family:monospace;
  font-size:18px;
}

.refresh-btn{
  padding:14px;
  border:1px solid #ccc;
  border-radius:8px;
  background:#fff;
  cursor:pointer;
  transition:0.3s;
}

.refresh-btn:hover{
  background:#f5f5f5;
}

/* =========================
   SUBMIT BUTTON
========================= */

.submit-btn{
  width:100%;
  padding:16px;
  background:#000;
  color:#fff;
  border:none;
  border-radius:8px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.submit-btn:hover{
  background:#333;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .job-title{
    font-size:30px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .captcha-box{
    grid-template-columns:1fr;
  }

  .job-meta{
    flex-direction:column;
    gap:10px;
  }

}

/* ===== GLOBAL ===== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  color:#222;
  line-height:1.1;
  
}

/* ===== JOB DETAILS ===== */

.job-details-section{
  padding:60px 20px;
}

.job-details-container{
  max-width:1100px;
  margin:auto;
}

.job-title{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.job-location{
  color:#555;
  margin-bottom:25px;
}

.job-meta{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  color:#666;
  font-size:15px;
  margin-bottom:40px;
}

.job-block{
  margin-bottom:40px;
}

.job-block h3{
  font-size:22px;
  margin-bottom:15px;
}

.job-block p{
  color:#444;
}

.job-block ul{
  padding-left:20px;
}

.job-block ul li{
  margin-bottom:10px;
  color:#444;
}

/* ===== APPLICATION SECTION ===== */

.application-section{
  border-top:1px solid #ddd;
  padding:60px 20px;
}

.application-container{
  max-width:1100px;
  margin:auto;
}

.form-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:30px;
}

/* ===== FORM ===== */

.application-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.application-form input,
.application-form textarea{
  width:100%;
  padding:14px;
  border:1px solid #ccc;
  border-radius:8px;
  font-size:15px;
  outline:none;
}

.application-form input:focus,
.application-form textarea:focus{
  border-color:#000;
}

/* ===== CAPTCHA ===== */

.captcha-box{
  display:grid;
  grid-template-columns:120px 60px 1fr;
  gap:15px;
  align-items:center;
}

.captcha-code{
  background:#eee;
  padding:14px;
  text-align:center;
  border-radius:8px;
  font-family:monospace;
  font-weight:bold;
}

.refresh-btn{
  padding:14px;
  border:1px solid #ccc;
  background:#fff;
  border-radius:8px;
  cursor:pointer;
  transition:0.3s;
}

.refresh-btn:hover{
  background:#f3f3f3;
}

/* ===== SUBMIT BUTTON ===== */

.submit-btn{
  width:100%;
  background:#000;
  color:#fff;
  border:none;
  padding:16px;
  border-radius:8px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.submit-btn:hover{
  background:#333;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

  .job-title{
    font-size:32px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .captcha-box{
    grid-template-columns:1fr;
  }

}




