/* ========== VVR Designs Academy - Global Styles ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #273578;
  --primary-dark: #1a2552;
  --primary-mid: #3d4a9f;
  --primary-light: #4d5bbf;
  --accent: #F68E1F;
  --accent-dark: #e07d0a;
  --accent-light: #ffa833;
  --white: #ffffff;
  --light-bg: #f8f9fe;
  --dark-bg: #273578;
  --text-dark: #1a1a2e;
  --text-mid: #3d3d6b;
  --text-light: #7a7aaa;
  --border: #e0e0f0;
  --gradient-primary: linear-gradient(135deg, #273578 0%, #3d4a9f 50%, #273578 100%);
  --gradient-accent: linear-gradient(135deg, #F68E1F 0%, #ffa833 100%);
  --gradient-dark: linear-gradient(135deg, #273578 0%, #1a2552 100%);
  --shadow-sm: 0 2px 12px rgba(39, 53, 120, 0.08);
  --shadow-md: 0 8px 32px rgba(39, 53, 120, 0.15);
  --shadow-lg: 0 20px 60px rgba(39, 53, 120, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.nav-logo-text span:last-child {
  font-size: 10px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(39, 53, 120, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(39, 53, 120, 0.4);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(246, 142, 31, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(246, 142, 31, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20b857;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 17px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 90px 5%;
}

.section-tag {
  display: inline-block;
  background: rgba(246, 142, 31, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(246, 142, 31, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-tag.white {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-heading span {
  color: #F68E1F ;
}

.section-heading.white {
  color: var(--primary);
}

.section-heading.white span {
  color: var(--accent-light);
}

.section-subtext {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.7;
}

.section-subtext.white {
  color: rgba(255, 255, 255, 0.8);
}

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

.section-header .section-subtext {
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 4px;
  margin: 16px 0 20px;
}

.divider.center {
  margin: 16px auto 20px;
}

/* ===== DIAGONAL CLIP ===== */
.clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.clip-top {
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

.clip-both {
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--border);
}

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

/* ===== GRID ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(246, 142, 31, 0.1);
  color: var(--accent-dark);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ICON BOX ===== */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F68E1F;
  font-size: 24px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.icon-box.accent {
  background: #F68E1F;
}

.icon-box.sm {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 18px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 70px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 64px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

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

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  animation: pulse-green 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 999;
  padding: 20px 5%;
  flex-direction: column;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
}

.mobile-menu a:hover {
  background: var(--light-bg);
  color: var(--primary);
}

.mobile-menu .btn {
  margin-top: 8px;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 5%;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 28px;
  }

  section {
    padding: 60px 4%;
  }
}

/* ===== PREMIUM CONTACT SECTION ===== */
.premium-contact {
  padding: 120px 5%;
  background: linear-gradient(135deg, #0b0f2a, #273578);
  color: white;
}

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

/* LEFT SIDE */
.contact-left h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-left p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  gap: 12px;
}

/* GLASS FORM */
.contact-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.contact-glass h3 {
  margin-bottom: 20px;
}

/* FORM */
.contact-glass input,
.contact-glass textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
}

.contact-glass input::placeholder,
.contact-glass textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.form-row {
  display: flex;
  gap: 10px;
}

textarea {
  height: 100px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-container {
    grid-template-columns: 1fr;
  }
}

.premium-contact {
  padding: 120px 5%;
  background: linear-gradient(135deg, #0b0f2a, #273578);
  color: white;
  min-height: 100vh;
}

.contact-glass input,
.contact-glass textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 14px;
}

.w-100 {
  width: 100%;
  justify-content: center;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
}

.contact-glass input,
.contact-glass textarea,
.contact-glass select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 14px;
}

.form-group {
  position: relative;
}

.form-group::after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 42px;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
  font-size: 12px;
}
.contact-glass select option {
  color: black;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

/* ===== ABOUT SECTION ===== */

 .page-header {
      padding: 70px 5% 30px;
      background: var(--gradient-primary);
      color: var(--white);
      text-align: center;
    }

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

    .about-text p {
      font-size: 18px;
      color: var(--text-mid);
      margin-bottom: 24px;
      line-height: 1.8;
    }

    .about-image {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .vision-mission {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 60px;
    }

    .vm-card {
      background: var(--light-bg);
      padding: 40px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      text-align: center;
    }

    .vm-card .icon-box {
      margin: 0 auto 24px;
    }

    .vm-card h3 {
      font-size: 28px;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .vm-card p {
      font-size: 18px;
      color: var(--text-mid);
    }

    .founder-section {
      background: var(--dark-bg);
      color: var(--white);
      padding: 100px 5%;
    }

    .founder-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 60px;
      align-items: center;
    }

    .founder-img-wrapper {
      position: relative;
    }

    .founder-img-wrapper::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      right: 20px;
      bottom: 20px;
      border: 2px solid var(--accent);
      border-radius: var(--radius);
      z-index: 0;
    }

    .founder-img-wrapper img {
      position: relative;
      z-index: 1;
      border-radius: var(--radius);
      width: 100%;
      box-shadow: var(--shadow-lg);
    }

    .founder-content h2 {
      font-size: 42px;
      margin-bottom: 16px;
    }

    .founder-content p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 24px;
      line-height: 1.8;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .team-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 30px;
      text-align: center;
      transition: all 0.3s;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }

    .team-icon {
      width: 80px;
      height: 80px;
      background: var(--light-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: var(--primary);
      margin: 0 auto 20px;
    }

    .team-card h4 {
      font-size: 20px;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .team-card p {
      color: var(--accent-dark);
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    @media (max-width: 768px) {

      .about-content,
      .vision-mission,
      .founder-grid {
        grid-template-columns: 1fr;
      }

      .founder-img-wrapper::before {
        display: none;
      }
    }

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 30px;
  fill: white;
}

.call-float {
  position: fixed;
  bottom: 90px; /* above whatsapp */
  right: 20px;
  width: 60px;
  height: 60px;
  background: #ff9800;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.call-float:hover {
  transform: scale(1.1);
}

/* ===== GOOGLE MAP SECTION ===== */
.map-section {
  padding: 80px 5%;
  background: #f9f9fb;
  text-align: center;
}

.map-container {
  max-width: 1100px;
  margin: auto;
}

.map-section h2 {
  font-size: 32px;
  color: #273578;
  margin-bottom: 10px;
}

.map-section p {
  color: #555;
  margin-bottom: 30px;
}

.map-container iframe {
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.map-container iframe {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

html {
  scroll-behavior: smooth;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: none;
  padding: 10px 0;
  z-index: 1000;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #273578;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #F68E1F;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-left h2 {
    font-size: 28px;
  }

  .contact-glass {
    padding: 20px;
  }

}

@media (max-width: 768px) {

  .hero {
    padding: 120px 5% 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

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

}

@media (max-width: 768px) {

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    box-shadow: none;
    background: #f9f9fb;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

}

@media (max-width: 768px) {

  .premium-contact {
    padding: 100px 5% 50px;
  }

  .contact-left {
    text-align: center;
  }

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

}
body {
  padding-top: 76px;
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.popup-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  margin: 100px auto;
  text-align: center;
  position: relative;
}

.popup-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
}

.popup-box button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  font-size: 22px;
}

/* ===== COURSE CARD BACKGROUND IMAGES ===== */

.course-card {
  position: relative;
  overflow: hidden;
  color: white;
  border: none;
}

/* Overlay */
.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 80, 0.75); /* dark overlay */
  z-index: 1;
}

/* Content above overlay */
.course-card * {
  position: relative;
  z-index: 2;
}

/* DIGITAL MARKETING BACKGROUND */
.course-card.dm-card {
  background: url('assets/digital-marketing.jpg') center/cover no-repeat;
}

/* VIDEO EDITING BACKGROUND */
.course-card.ve-card {
  background: url('assets/video-editing.jpg') center/cover no-repeat;
}

.page-header {
      padding: 30px 5% 30px;
      background: var(--gradient-primary);
      color: var(--white);
      text-align: center;
    }

    .course-details-section {
      padding: 100px 5%;
    }

    .course-details-section.bg-light {
      background: var(--light-bg);
    }

    .course-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .course-info h2 {
      font-size: 42px;
      color: var(--primary);
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .course-info p {
      font-size: 18px;
      color: var(--text-mid);
      margin-bottom: 24px;
      line-height: 1.8;
    }

    .info-list {
      list-style: none;
      margin-top: 30px;
    }

    .info-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 20px;
      background: var(--white);
      padding: 20px;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-sm);
      border-left: 4px solid var(--accent);
    }

    .info-list.primary-border li {
      border-left-color: var(--primary);
    }

    .info-list li i {
      font-size: 24px;
      color: var(--primary);
      margin-top: 2px;
    }

    .info-list li h4 {
      font-size: 18px;
      margin-bottom: 6px;
      color: var(--text-dark);
    }

    .info-list li p {
      margin-bottom: 0;
      font-size: 15px;
      color: var(--text-mid);
    }

    .modules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .module-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 20px;
      border-radius: var(--radius-sm);
      text-align: center;
      transition: all 0.3s;
    }

    .module-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-sm);
      transform: translateY(-3px);
    }

    .module-card i {
      font-size: 32px;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .module-card h4 {
      font-size: 16px;
      color: var(--text-dark);
    }

    .software-logos {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .software-tag {
      background: rgba(26, 26, 110, 0.05);
      color: var(--primary);
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      border: 1px solid rgba(26, 26, 110, 0.1);
    }

    .contact-section {
      background: var(--dark-bg);
      color: var(--white);
      padding: 100px 5%;
    }

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

    .contact-info h2 {
      font-size: 42px;
      margin-bottom: 24px;
    }

    .contact-details {
      margin-top: 40px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
    }

    .contact-icon {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--accent);
    }

    .contact-item h4 {
      font-size: 18px;
      margin-bottom: 4px;
    }

    .contact-item p {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-form {
      background: var(--white);
      padding: 40px;
      border-radius: var(--radius);
      color: var(--text-dark);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--text-mid);
    }

    .form-control {
      width: 100%;
      padding: 14px 20px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: inherit;
      font-size: 16px;
      transition: all 0.3s;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(26, 26, 110, 0.1);
    }

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

    @media (max-width: 992px) {

      .course-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

        /* Home Specific Styles */
    .hero {
      padding: 160px 5% 100px;
      background: var(--dark-bg);
      position: relative;
      overflow: hidden;
      color: var(--white);
    }

    .hero::before {
  content: '';
  position: absolute;
  inset: 0;

  /* IMAGE + OVERLAY COMBO */
  background: 
    linear-gradient(rgba(20,10,60,0.7), rgba(20,10,60,0.9)),
    url('assets/background image.jpeg') center/cover no-repeat;

  z-index: 0;
}

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      text-align: center;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: clamp(40px, 5vw, 64px);
      margin-bottom: 24px;
      font-weight: 900;
    }

    .hero p {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 40px;
    }

    .trust-section {
      background: var(--primary);
      padding: 60px 5%;
      color: var(--white);
      text-align: center;
    }

    .trust-stats {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .stat-item h3 {
      font-size: 48px;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

.course-card {
  padding: 40px;
  border-radius: var(--radius);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  color: white;
  border: none;
  background: none; /* ✅ remove white background */
}

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

    .course-card h3 {
      font-size: 28px;
      color: #F68E1F ;
      margin-bottom: 20px;
    }

    .course-features {
      list-style: none;
      margin-bottom: 30px;
    }

    .course-features li {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .course-features li i {
      color: var(--accent);
    }

    .highlights {
      background: var(--light-bg);
    }

    .highlights-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .highlight-item {
      display: flex;
      align-items: center;
      gap: 16px;
      background: var(--white);
      padding: 20px;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-sm);
    }

    .highlight-item i {
      font-size: 24px;
      color: var(--primary);
    }

    .process-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 50px;
    }

    .process-step {
      background: var(--white);
      padding: 20px 30px;
      border-radius: 50px;
      box-shadow: var(--shadow-sm);
      font-weight: 600;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .step-num {
      background: var(--accent);
      color: var(--primary-dark);
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-weight: 800;
    }

    .dark-section {
      background: var(--primary-dark);
      color: var(--white);
    }

  

    .brands-img {
      max-width: 800px;
      margin: 40px auto 0;
      display: block;
    }

    .benefit-box{
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.benefit-content{
  flex: 1;
}

.benefit-box h3{
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 24px;
}

.benefit-image{
  flex: 1;
}

.benefit-image img{
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

@media(max-width:768px){

  .benefit-box{
    flex-direction: column;
  }

  .benefit-image img{
    margin-top: 20px;
  }

}

.learn-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:30px;
  width:100%;
}

.learn-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  padding:32px 24px;
  text-align:center;
  transition:0.3s ease;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.learn-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(0,0,0,0.08);
}

.learn-card i{
  font-size:42px;
  color:#f59e0b;
  margin-bottom:18px;
}

.learn-card h4{
  font-size:18px;
  line-height: 1.4;
  color:var(--primary);
  margin-bottom:14px;
}

.learn-card p{
  font-size:14px;
  line-height:1.8;
  color:#555;
}

@media(max-width:1200px){
  .learn-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:991px){
  .learn-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .learn-grid{
    grid-template-columns:1fr;
  }
}

.course-info{
  width:100%;
}

.learn-card{
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.top-course-layout{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:start;
}

.learn-section-full{
  width:100%;
  margin-top:60px;
}

.learn-title{
  font-size:32px;
  margin-bottom:30px;
  color:var(--primary);
}

.learn-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  width:100%;
}

.learn-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  padding:30px 22px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  min-height:280px;

  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:center;
}

.learn-card i{
  font-size:40px;
  color:#f59e0b;
  margin-bottom:18px;
}

.learn-card h4{
  font-size:24px;
  line-height:1.4;
  color:var(--primary);
  margin-bottom:14px;
}

.learn-card p{
  font-size:15px;
  line-height:1.8;
  color:#555;
}

@media(max-width:1200px){
  .learn-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:991px){

  .top-course-layout{
    grid-template-columns:1fr;
  }

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

@media(max-width:768px){

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

/* ===== TESTIMONIALS GRID ===== */

.testimonials-grid{
  display:grid;

  grid-template-columns:repeat(3, 1fr);

  gap:30px;

  margin-top:50px;

  align-items:stretch;
}

.testimonial-card{
  width:100%;

  background:#fff;

  border-radius:22px;

  overflow:hidden;

  box-shadow:0 10px 30px rgba(0,0,0,0.06);

  transition:0.3s ease;
}

.testimonial-card:hover{
  transform:translateY(-8px);

  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.testimonial-card img{
  width:100%;

  display:block;

  border-radius:22px;
}

/* TABLET */

@media(max-width:992px){

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

}

/* MOBILE */

@media(max-width:768px){

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

}