/*
Theme Name: Lakshya Child
Template: astra
Version: 1.0
Author: Your Name
Description: Child theme for Lakshya based on Astra
*/

/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Design tokens */
:root {
  --primary-green: #216733;
  --secondary-gold: #d4af37;
  --light-gray: #f8f9fa;
  --dark-gray: #333;
  --medium-gray: #777;
  --lakshya-orange: 246, 139, 31; /* RGB of Lakshya orange */
  --lakshya-blue: 90, 155, 213;   /* Skill Academy blue */
  --card-opacity: 0.85;
  --card-hover-opacity: 0.95;
}

/* === TOP BAR STYLING WITH LEFT-RIGHT DISTRIBUTION === */
.top-bar {
  background: rgb(246,139,31);
  color: #fff;
  font-size: 14px;
  padding: 8px 30px;
  overflow: hidden;
}

/* MAIN FLEX CONTAINER */
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* keep everything in one row */
  gap: 20px;
  white-space: nowrap; /* prevent wrapping */
}

/* LEFT SIDE — PHONE + EMAIL */
.top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  white-space: nowrap;
}

/* RIGHT SIDE — LINKS + SOCIAL ICONS */
.top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  flex-wrap: nowrap;
}

/* LINKS */
.top-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-links a {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.top-links a:hover {
  color: rgb(90,155,213) !important;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  color: #fff !important;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: rgb(90,155,213) !important;
  transform: scale(1.2);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 992px) {
  .top-bar .container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    white-space: normal;
    gap: 10px;
  }

  .top-left,
  .top-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* === FORCE WHITE COLORS === */
.top-bar a,
.top-bar a:visited,
.top-bar i {
  color: #fff !important;
  text-decoration: none !important;
}

/* === SOCIAL ICON HOVER EFFECT: LIFT + GLOW === */
.social-icons a {
  color: #fff !important;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  position: relative;
}

.social-icons a:hover {
  color: #fff !important;
  transform: translateY(-4px) scale(1.2);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Optional – subtle color glow for each platform */
.social-icons a:nth-child(1):hover { box-shadow: 0 0 10px #1877f2; } /* Facebook */
.social-icons a:nth-child(2):hover { box-shadow: 0 0 10px #e4405f; } /* Instagram */
.social-icons a:nth-child(3):hover { box-shadow: 0 0 10px #0077b5; } /* LinkedIn */
.social-icons a:nth-child(4):hover { box-shadow: 0 0 10px #ff0000; } /* YouTube */

/* ====================
   Header / Logo
==================== */
.header-main {
  background-color: #fff;
  padding: 10px 0 0 0;
  position: relative;
  z-index: 1;
}
.header-main .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Centered logo block */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  margin: 10px auto;              /* fixed unit */
}
/* Responsive logo image */
.logo-container img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  object-fit: contain;
}

.institute-info { text-align: center; flex-grow: 1; padding: 0 20px; }
.institute-info h1 { font-size: 28px; font-weight: 700; color: var(--primary-green); margin-bottom: 5px; text-transform: uppercase; }
.institute-info .tagline { font-size: 16px; font-weight: 500; color: var(--medium-gray); margin-bottom: 5px; }
.institute-info .msme-info { font-size: 14px; color: var(--medium-gray); font-weight: 300; }

/* Optional flex container if used */
.header-flex {
  display: flex;
  justify-content: space-between; /* logo left, menu right */
  align-items: center;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0;
}

.site-logo img { height: 130px; width: auto; max-width: 100%; object-fit: contain; display: block; }

/* ====================
   Navigation (Lakshya Orange Active + Hover)
==================== */
.main-navigation {
  max-width: 1300px;
  margin: 0 auto;
  padding: 8px 0;
  display: flex;
  justify-content: center; /* center the bar */
  text-align: center !important;
  flex-grow: 0 !important;
}

.main-navigation .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation .menu li {
  margin: 0;
}

.main-navigation .menu li a {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
  padding: 12px 18px;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover + active link color */
.main-navigation .menu li a:hover,
.main-navigation .menu li.current-menu-item a {
  color: rgb(var(--lakshya-orange)); /* orange text */
  font-weight: 700;
}

/* Base underline (hidden by default) */
.main-navigation .menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: rgb(var(--lakshya-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease, height 0.3s ease;
}

/* Hover underline effect */
.main-navigation .menu li a:hover::after {
  transform: scaleX(1);
}

/* Active (current page) underline - thicker */
.main-navigation .menu li.current-menu-item a::after {
  transform: scaleX(1);
  height: 3px; /* slightly thicker line */
}

/* Mobile menu unchanged */
@media (max-width: 768px) {
  .main-navigation {
    justify-content: flex-start;
  }
}

/* ====================
   Hero
==================== */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding: 80px 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(56,20,155,.65) 0%, rgba(26,58,26,.75));
}
.hero-section .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hero-content { text-align: center; margin: 0 auto; max-width: 950px; }
.hero-content h1 { font-size: clamp(28px, 5vw, 48px); line-height: 1.15; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.hero-content p { margin-top: 12px; font-size: clamp(16px, 2.4vw, 20px); opacity: .95; }

/* hero course cards */
.hero-courses { margin-top: 28px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.course-category {
  background: rgba(var(--lakshya-orange), var(--card-opacity)) !important;
  background-image: none !important;
  border: 1px solid rgba(var(--lakshya-orange), .95) !important;
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff !important;
  position: relative;
  z-index: 1;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.course-category::before,
.course-category::after { background: none !important; content: none !important; }
.course-category h3 { color: #fff !important; font-weight: 700; text-transform: uppercase; }
.course-category:hover { background: rgba(var(--lakshya-orange), .95) !important; box-shadow: 0 8px 20px rgba(0,0,0,.25); transform: translateY(-3px); }

/* Responsive tweaks */
@media (max-width: 900px) { .hero-courses { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hero-section { padding: 56px 0; min-height: 52vh; } .hero-courses { grid-template-columns: 1fr; } }

/* ====================
   Counter Section
==================== */
.counter-section { width: 100%; background: #F68B1F !important; padding: 60px 20px; color: #fff; }
.counter-section .counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.counter-section .counter-item { padding: 20px; }
.counter-section .count { font-size: 56px; font-weight: 800; color: #fff; display: block; }
.counter-section p { font-size: 18px; font-weight: 600; margin-top: 8px; color: #fff; text-transform: uppercase; }
@media (max-width: 768px) { .counter-section .counter-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 480px) { .counter-section .counter-grid { grid-template-columns: 1fr; } }

/* ====================
   Programs / Gallery / Contact
==================== */
.category-card .category-icon { background-color: #5A9BD5 !important; color: #fff !important; width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.category-card .category-icon i { font-size: 32px; color: #fff !important; }

.programs-section .view-all-btn {
  display: inline-block; background-color: #5A9BD5; color: #fff !important;
  padding: 12px 24px; font-size: 16px; font-weight: 600; border-radius: 6px;
  text-decoration: none; text-transform: uppercase; transition: all .3s ease; margin: 30px auto 0;
}
.programs-section .view-all-btn i { margin-left: 8px; }
.programs-section .view-all-btn:hover { background-color: #417CB8; color: #FFD580 !important; }

.section-title { color: #5A9BD5 !important; font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 40px; text-transform: uppercase; }
.course-content h3 { color: #5A9BD5 !important; font-size: 22px; font-weight: 700; margin-bottom: 10px; }

.testimonial-author h4 { color: #5A9BD5 !important; font-size: 18px; font-weight: 700; margin: 0; }

.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(246,139,31,.85); color: #fff; padding: 12px; text-align: center; transition: background .3s ease; }
.gallery-item:hover .gallery-overlay { background: rgba(246,139,31,.95); }
.gallery-overlay h3 { margin: 0; font-size: 18px; font-weight: 700; color: #fff; }

/* Contact */
.contact-section { background-color: #F68B1F !important; color: #fff !important; padding: 60px 20px; }
.contact-section::before, .contact-section::after { background: none !important; }
.contact-section h2, .contact-section h3, .contact-section h4, .contact-section p, .contact-section .contact-item i { color: #fff !important; }
.contact-section .contact-social a i { color: #fff !important; font-size: 18px; margin-right: 12px; transition: color .3s ease; }
.contact-section .contact-social a i:hover { color: #FFD580 !important; }
.contact-section .contact-form input, .contact-section .contact-form textarea { width: 100%; padding: 12px; border: none; border-radius: 4px; margin-bottom: 15px; background: #fff; color: #333; }
.contact-section .contact-form select {
  width: 100%; padding: 12px; border: none; border-radius: 4px; margin-bottom: 15px; background: #fff; color: #333;
  font-size: 15px; line-height: 1.5; appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px;
}
.contact-section .contact-form select:focus { outline: none; border: 2px solid #F68B1F; }
.contact-section .contact-form button {
  background-color: #fff; color: #F68B1F; border: none; padding: 12px 24px; border-radius: 4px; font-weight: 600; cursor: pointer; transition: all .3s ease;
}
.contact-section .contact-form button:hover { background-color: #FFD580; color: #333; }

/* ====================
   Footer (Balanced Layout)
==================== */
.custom-footer { 
  background:#fff; 
  color:#000; 
  padding:30px 10px; 
  font-size:14px; 
}

.footer-container { 
  display:grid; 
  grid-template-columns: 260px 1fr 100px; /* left logo | center text | right QR */
  align-items:center; 
  gap:30px;
  max-width:1200px; 
  margin:0 auto; 
}

/* Sections */
.footer-section { margin:10px; }

/* Left: Logo */
.footer-section.logo { text-align:left; }
.footer-section.logo img { 
  max-width:360px;   /* bigger */
  height:auto; 
  transition:transform .25s ease, box-shadow .25s ease;
  cursor:pointer;
}
.footer-section.logo img:hover { 
  transform:scale(1.08); 
  box-shadow:0 0 18px rgba(90,155,213,.5);
}

/* Center: text (only 2 lines allowed) */
.footer-section.text { text-align:center; }
.footer-section.text p {
  margin:4px auto;
  line-height:1.4;
  max-width:560px;

  /* clamp to 2 lines */
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* Right: QR */
.footer-section.qr { text-align:right; }
.footer-section.qr img {
  max-width:100px;   /* same as logo */
  height:auto;
  border-radius:6px;
  border:1px solid #fff;
  display:block;
  margin-left:auto;
  transition:transform .25s ease, box-shadow .25s ease;
  cursor:pointer;
}
.footer-section.qr img:hover {
  transform:scale(1.08);
  box-shadow:0 0 18px rgba(246,139,31,.5);
}

/* Mobile stacking */
@media (max-width:768px){
  .footer-container {
    grid-template-columns:1fr;
    text-align:center;
    gap:18px;
  }
  .footer-section.logo,
  .footer-section.qr { text-align:center; }
  .footer-section.logo img,
  .footer-section.qr img { max-width:140px; margin:0 auto; }
  .footer-section.text p { max-wid :90vw; }
}


/* ====================
   About Us Page Styles
==================== */

/* Container and layout */
.about-us-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
  color: #333;
}

.about-us-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease;
}

/* Main Title (Blue) */
.about-us-page .section-title {
  text-align: center;
  color: rgb(var(--lakshya-blue)); /* logo blue */
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  position: relative;
}

.about-us-page .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: rgb(var(--lakshya-orange)); /* accent orange */
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Subtitles (Orange) */
.about-us-page .section-subtitle,
.about-us-page h3 {
  color: rgb(var(--lakshya-orange));
  font-size: 22px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 15px;
}

/* Paragraph Text */
.about-us-page p {
  line-height: 1.85;
  font-size: 16.5px;
  margin-bottom: 18px;
  color: #333;
}

/* Lists */
.about-us-page ul {
  margin-left: 20px;
  list-style: disc;
}

.about-us-page li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.7;
}

/* Strong text */
.about-us-page strong {
  color: #000;
  font-weight: 600;
}

/* Animation (soft fade-in for content) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-us-page .container {
    padding: 30px 20px;
  }
  .about-us-page .section-title {
    font-size: 30px;
  }
  .about-us-page .section-subtitle,
  .about-us-page h3 {
    font-size: 20px;
  }
  .about-us-page p,
  .about-us-page li {
    font-size: 15.5px;
  }
}


/* ====================
   Mobile header fixes (must be at very end)
==================== */
html, body { overflow-x: hidden; }

/* unify logo rules for small screens */
.logo-container { margin: 0 auto; padding: 8px 0; }
.logo-container img { display: block; height: auto; width: 100%; max-width: 1200px; min-width: 0 !important; }

/* tablet */
@media (max-width: 992px) { .logo-container img { max-width: 720px; } }

/* phones */
@media (max-width: 768px) {
  .logo-container img { max-width: 92vw !important; }
  .top-bar { padding: 6px 0; font-size: 12px; }
  .top-bar .container { gap: 6px; }
  .main-navigation { padding: 6px 0; }
  .main-navigation .menu { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .main-navigation .menu li a { padding: 8px 10px; font-size: 13px; letter-spacing: .2px; }
}

/* very small phones */
@media (max-width: 420px) { .main-navigation .menu li a { font-size: 12px; padding: 7px 8px; } }

/* Hide Astra mobile menu button */
.ast-mobile-menu-buttons,
.menu-toggle { display: none !important; }

/* Keep the menu visible & tidy on phones */
@media (max-width: 768px){
  .main-navigation .menu{
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

/* ====================
   Courses Page (with Icons, Blue + Orange Theme)
==================== */
.courses-page {
  background: #f9fbfc;
  padding: 60px 20px;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.courses-page .intro-text {
  text-align: center;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #333;
}

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

.course-card {
  background: #fff;
  border: 2px solid rgba(var(--lakshya-blue), 0.25);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  border-color: rgb(var(--lakshya-orange));
}

.course-card h3 {
  color: rgb(var(--lakshya-blue));
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-card h3 i {
  color: rgb(var(--lakshya-orange));
  font-size: 18px;
}

.course-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.section-subtitle {
  color: var(--primary-green);
  font-size: 26px;
  margin: 50px 0 20px;
  text-transform: uppercase;
  font-weight: 800;
  border-left: 5px solid rgb(var(--lakshya-orange));
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-subtitle i {
  color: rgb(var(--lakshya-orange));
}

.section-title {
  color: rgb(var(--lakshya-blue));
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: rgb(var(--lakshya-orange));
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 22px;
  }
  .course-card h3 {
    font-size: 18px;
  }
}

/* ====================
   Accordion (Courses Page)
==================== */
.accordion {
  margin-top: 40px;
}

.accordion-item {
  border: 1px solid rgba(var(--lakshya-blue), 0.3);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Header styling (Lakshya Blue Default + Orange on hover/active) */
.accordion-header {
  width: 100%;
  background: linear-gradient(90deg, rgba(var(--lakshya-blue),0.12), rgba(246,139,31,0.08));
  border: none;
  color: rgb(var(--lakshya-blue));
  font-size: 20px;
  font-weight: 800;
  padding: 18px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.accordion-header i {
  color: rgb(var(--lakshya-blue));
  margin-right: 10px;
}

.accordion-header:hover {
  background: rgba(var(--lakshya-orange), 0.15);
  color: rgb(var(--lakshya-orange));
}

.accordion-header.active {
  background: rgba(var(--lakshya-orange), 0.12);
  color: rgb(var(--lakshya-orange));
}

.accordion-icon i {
  color: rgb(var(--lakshya-orange));
  transition: transform 0.3s ease;
}

/* Accordion content area */
.accordion-content {
  max-height: none; /* all open by default */
  overflow: hidden;
  background: #fff;
  padding: 0 24px 24px 24px;
  transition: max-height 0.4s ease;
}

.accordion-content .course-grid {
  padding-top: 20px;
}

/* Smooth transitions and mobile */
@media (max-width: 768px) {
  .accordion-header {
    font-size: 18px;
    padding: 16px 18px;
  }
  .accordion-content {
    padding: 0 16px 16px 16px;
  }
}

/* External link icon beside course titles */
.external-icon {
  font-size: 12px;
  margin-left: 6px;
  color: rgba(var(--lakshya-orange), 0.8);
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Make it glow slightly on hover */
.course-card:hover .external-icon {
  color: rgb(var(--lakshya-orange));
  transform: translateY(-1px);
}

/* Ensure the heading looks neat */
.course-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ==========================
   Modern Compact Contact Page
========================== */
.contact-page {
  position: relative;
  padding: 80px 20px;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-page .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  z-index: 0;
}

.contact-page .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  color: rgb(var(--lakshya-blue));
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 36px;
  text-shadow: 0 0 8px rgba(90,155,213,0.4);
}

.divider {
  width: 80px;
  height: 3px;
  background: rgb(var(--lakshya-orange));
  margin: 10px auto 40px;
  border-radius: 3px;
}

.intro-text {
  text-align: center;
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Two-column layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* =====================
   Modern Contact Info Card (Lakshya)
===================== */
.contact-info {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: block !important;
}

/* Each info item */
.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(90,155,213,0.15);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(246, 139, 31, 0.05);
  border-color: rgba(246, 139, 31, 0.4);
  transform: translateX(4px);
}

/* Icon circle */
.info-item i {
  width: 42px;
  height: 42px;
  background: rgba(246,139,31,0.15);
  color: rgb(var(--lakshya-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.info-item:hover i {
  background: rgb(var(--lakshya-orange));
  color: #fff;
}

/* Text styles */
.info-item h4 {
  margin: 0;
  color: rgb(var(--lakshya-blue));
  font-weight: 800;
  font-size: 16px;
}

.info-item p {
  margin: 3px 0 0;
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}

.info-item a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: rgb(var(--lakshya-orange));
}

/* Compact layout */
@media (max-width: 768px) {
  .contact-info {
    padding: 24px;
    gap: 18px;
  }
  .info-item {
    padding: 14px 16px;
  }
}


/* Form Panel */
.contact-form-modern {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 30px 30px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-modern h3 {
  text-align: center;
  color: rgb(var(--lakshya-blue));
  margin-bottom: 25px;
  font-weight: 700;
}

/* Form fields */
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(var(--lakshya-blue), 0.3);
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: rgb(var(--lakshya-blue));
  box-shadow: 0 0 6px rgba(var(--lakshya-blue), 0.3);
  outline: none;
}

.wpcf7-form input[type="submit"] {
  background: rgb(var(--lakshya-orange));
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin: 15px auto 0;
  transition: all 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
  background: rgb(var(--lakshya-blue));
  transform: translateY(-2px);
}

/* Map */
.contact-map iframe {
  width: 100%;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .contact-page {
    padding: 50px 15px;
  }
}

/* ====================
   Student Zone Styles
==================== */
.student-zone {
  background: url('<?php echo get_stylesheet_directory_uri(); ?>/images/student-bg.jpg') center/cover fixed no-repeat;
  padding: 70px 20px;
  position: relative;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.student-zone::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(5px);
  z-index: 0;
}

.student-zone .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.student-zone .section-title {
  text-align: center;
  color: rgb(90,155,213);
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.student-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.student-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(90,155,213,0.25);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.student-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(90,155,213,0.2);
}

.student-card h3 {
  color: rgb(90,155,213);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.student-card p {
  color: #555;
  margin-bottom: 20px;
}

.student-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.student-card input[type="text"],
.student-card input[type="email"],
.student-card input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(90,155,213,0.3);
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.student-card input:focus {
  border-color: rgb(90,155,213);
  box-shadow: 0 0 6px rgba(90,155,213,0.4);
}

.btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.verify-btn {
  background: rgb(90,155,213);
  color: #fff;
}
.verify-btn:hover {
  background: rgb(246,139,31);
}

.register-btn {
  background: rgb(246,139,31);
  color: #fff;
}
.register-btn:hover {
  background: rgb(90,155,213);
}

/* ====================
   Student Zone Page (Lakshya Theme)
==================== */
.student-zone {
  background: linear-gradient(
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
    url('<?php echo get_stylesheet_directory_uri(); ?>/images/student-bg.jpg')
      center/cover fixed no-repeat;
  padding: 80px 20px;
  position: relative;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.student-zone .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.student-zone .section-title {
  text-align: center;
  color: rgb(90, 155, 213);
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(90, 155, 213, 0.3);
  position: relative;
}

.student-zone .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: rgb(246, 139, 31);
  margin: 12px auto 0;
  border-radius: 3px;
}

.student-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.student-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 155, 213, 0.25);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.student-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(90, 155, 213, 0.25);
}

.student-card h3 {
  color: rgb(90, 155, 213);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.student-card h3 i {
  color: rgb(246, 139, 31);
  font-size: 22px;
}

.student-card p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.student-card input[type='text'],
.student-card input[type='email'],
.student-card input[type='file'] {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(90, 155, 213, 0.3);
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 15px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.student-card input:focus {
  border-color: rgb(90, 155, 213);
  box-shadow: 0 0 6px rgba(90, 155, 213, 0.4);
}

.wpcf7-submit {
  width: 100%;
  background: rgb(246, 139, 31);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 10px rgba(246, 139, 31, 0.3);
}

.wpcf7-submit:hover {
  background: rgb(90, 155, 213);
  box-shadow: 0 6px 14px rgba(90, 155, 213, 0.3);
  transform: translateY(-2px);
}

.wpcf7-response-output {
  border: 2px solid rgb(90, 155, 213) !important;
  color: rgb(90, 155, 213) !important;
  border-radius: 6px;
  padding: 10px;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 768px) {
  .student-zone {
    padding: 50px 15px;
  }
  .student-grid {
    grid-template-columns: 1fr;
  }
}
