/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 55px;
  border-radius: 6px
}

.brand {
  font-size: 26px;
  font-weight: bold;
  /* Removed translateY to center it perfectly */
  display: inline-block;
}

.nav-links a {
  margin-left: 25px;
  color: #ddd;
  cursor: pointer;
  transition: .3s;
}

.nav-links a:hover {
  color: #9b00ff
}

/* MOBILE MENU */
.hamburger {
  display: none;
  /* Hide hamburger as requested for single row layout */
  color: white;
  font-size: 32px
}

.mobile-menu {
  display: none;
  /* Default hidden */
  background: rgba(0, 0, 0, 0.9);
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

/* MEDIA QUERIES FOR MOBILE LAYOUT */
@media (max-width: 768px) {

  /* FIX MISSION OVERLAP: Allow height to grow */
  .mission-section {
    height: auto !important;
    min-height: 100vh;
    padding-bottom: 80px;
    /* Ensure space before next section */
  }

  /* MOBILE MENU: Single Row Below Header */
  .navbar {
    flex-direction: column;
    padding: 15px 20px;
  }

  .logo-area {
    margin-bottom: 15px;
    /* Space between logo and links */
  }

  .nav-links {
    display: none;
    /* Hide desktop links */
  }

  .hamburger {
    display: none !important;
    /* Force hide hamburger */
  }

  .mobile-menu {
    display: flex !important;
    /* Force show */
    flex-direction: row;
    /* Horizontal row */
    justify-content: center;
    flex-wrap: wrap;
    /* Wrap if screen is too small */
    gap: 15px;
    position: static;
    /* Flow naturally */
    width: 100%;
  }

  .mobile-menu a {
    color: #ddd;
    font-size: 14px;
    /* Smaller font to fit */
    text-decoration: none;
    padding: 5px;
  }
}

/* HERO */
.hero {
  height: 100vh;
  background: url('hero-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* FIXED CENTER LEFT → RIGHT TEXT */
.hero-center {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 3;
  width: 90%;
}

.typing-line {
  font-size: 60px;
  font-weight: 900;
  text-align: left;
  color: white;
  text-shadow: 0 0 15px rgba(255, 255, 255, .7);
}

/* BUBBLES */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: .25;
  filter: blur(2px);
  animation: float 6s infinite ease-in-out;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-25px)
  }

  100% {
    transform: translateY(0)
  }
}

.bubble1 {
  width: 350px;
  height: 350px;
  background: #7a00ff;
  top: -60px;
  left: -120px
}

.bubble2 {
  width: 320px;
  height: 320px;
  background: #0044ff;
  right: -150px;
  top: 25%
}

.bubble3 {
  width: 260px;
  height: 260px;
  background: #00ffd0;
  right: 18%;
  bottom: -130px
}

/* EXPLORE BUTTON */
/* EXPLORE BUTTON */
.hero-bottom {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.cta-btn {
  padding: 16px 45px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  /* Dull / Glass Background */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background: #007bff;
  /* Requested Blue Hover */
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
  /* Blue Shadow */
  border-color: #007bff;
}

/* MISSION */
.mission-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 120px;
  /* Pushes the visual center down */
}

.mission-section::before {
  content: "";
  /* Layered: Spotlight Center + Dull Blue Surround */
  background:
    radial-gradient(circle at center, rgba(255, 220, 150, 0.2) 0%, transparent 50%),
    /* Warm Spotlight */
    radial-gradient(circle, rgba(80, 120, 180, 0.25) 0%, transparent 70%);
  /* Existing Blue */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* TORCHES */
.torch {
  position: absolute;
  height: 250px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  /* Below text */
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.6));
  pointer-events: none;
  /* Prevent clicking */
}

.torch-left {
  left: 0;
  /* Move to edge */
}

.torch-right {
  right: 0;
  /* Move to edge */
  transform: translateY(-50%) scaleX(-1);
  /* Flip horizontally */
}

/* GET IN TOUCH */
.get-touch-section {
  position: relative;
}

.get-touch-section::before {
  content: "";
  /* Dull Attractive Blue Gradient */
  background: radial-gradient(circle, rgba(80, 120, 180, 0.25) 0%, transparent 70%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.mission-title {
  font-size: 55px;
  font-weight: 900;
  color: white;
  /* Reverted to White */
  text-shadow: 0 0 20px rgba(255, 255, 255, .7);
  z-index: 3;
  margin-bottom: 30px;
  /* Space between title and text */
  margin-top: 50px;
  /* Pushes the title down as requested */
}

.mission-content {
  max-width: 850px;
  max-width: 800px;
  /* Changed from 850px */
  margin: 0 auto;
  /* Center the container itself */
  padding: 30px;
  /* Changed from 40px */

  /* Glassmorphism Effect */
  background: rgba(255, 255, 255, 0.1);
  /* Changed from 0.05 */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Changed from 0.1 */
  border-radius: 12px;
  /* Changed from 20px */

  font-size: 26px;
  font-weight: 300;
  /* Lighter font weight */
  line-height: 1.8;
  /* Changed from 1.5 in the other block, keeping 1.8 from original */
  text-shadow: 0 0 10px rgba(255, 255, 255, .4);
  z-index: 3;

  /* Flex Centering Internal Text */
  align-items: center;
  text-align: center;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  text-align: center
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  /* Increased space as requested */
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* CARDS */
/* CARDS */
/* CARDS */
/* CARDS */
.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 95%;
  /* Occupy almost entire screen width */
  max-width: 1400px;
  /* Cap at very wide */
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  /* NO GAP - Seamless */
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

.insight-card {
  min-height: 65vh;
  /* Occupy large screen area */
  justify-content: center;
  /* Center content vertically */
  align-items: center;
  /* Center content horizontally */
  text-align: center;
  /* Center text */
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.2);
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  /* Subtle backdrop */
  border-radius: 16px;
  border: 1px solid #333;
  transition: .4s;
  display: flex;
  /* Ensure flexbox is active for centering */
  flex-direction: column;
}

.service-card {
  min-height: 65vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Seamless: No border radius, no border */
  border-radius: 0;
  border: none;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  transition: .4s;
  display: flex;
  flex-direction: column;
}

/* Ensure Text Visibility over Images */
.service-card h3,
.insight-card h3 {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 2;
  font-size: 2rem;
  /* Make headings bigger */
}

.service-card p,
.insight-card p {
  color: #ffffff;
  /* White text for contrast on black */
  font-weight: 500;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.8);
  /* Black background as requested */
  padding: 8px 16px;
  border-radius: 20px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
  text-shadow: none;
}



.service-card:hover,
.insight-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  /* Slightly lighter on hover */
  border-color: #555;
}

.service-card h3,
.insight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  /* color: white; Removed to allow specific coloring */
}

.service-card p,
.insight-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* SERVICE CARDS STYLING ENHANCEMENT */
#service-seminar,
#service-abroad,
#service-college,
#service-parent {
  border-radius: 12px;
  /* Restore border radius */
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Add distinct gradients matching theme */
}

/* Seminars: Blue/Teal */
#service-seminar {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 0, 50, 0.8)), url('./seminar_real.png') center/cover no-repeat !important;
}

/* Abroad: Purple/Blue */
#service-abroad {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(25, 25, 112, 0.8)), url('./service_abroad.png') center/cover no-repeat !important;
}

/* College: Green/Blue */
#service-college {
  background: linear-gradient(135deg, rgba(0, 255, 127, 0.2), rgba(0, 50, 0, 0.8)), url('./service_college.jpg') center/cover no-repeat !important;
}

/* Parent: Warm/Orange */
#service-parent {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(139, 0, 0, 0.8)), url('./service_parent.png') center/cover no-repeat !important;
}

/* Ensure text pops on these new backgrounds */
/* Ensure text pops on these new backgrounds */
.service-card h3 {
  font-size: 2.8rem;
  /* Increased Size */
  font-weight: 800;
  /* Extra Bold */
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
  /* Stronger shadow */
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Specific Colors based on Backgrounds */
#service-seminar h3 {
  color: #e0f7fa;
}

/* Cyan Tint */
#service-abroad h3 {
  color: #f3e5f5;
}

/* Purple/Lavender Tint */
#service-college h3 {
  color: #e8f5e9;
}

/* Green/Mint Tint */
#service-parent h3 {
  color: #fff3e0;
}

/* Orange/Warm Tint */

.service-card p {
  background: rgba(0, 0, 0, 0.6);
  /* Slightly lighter backing */
  color: #eee;
  font-size: 1.1rem;
}

.mission-section::before {
  content: "";
  /* Fix: Removed invalid slash in shorthand */
  background: url('logo_new.png') center no-repeat;
  background-size: contain;
  /* Ensure it fits nicely or use specific pixel size */
  width: 600px;
  height: 600px;
  opacity: 0.2;
  /* Visible but subtle */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  /* Behind text */
}

.mission-title {
  font-size: 55px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 255, 255, .7);
  z-index: 3;
  margin-bottom: 30px;
}

.mission-content {
  max-width: 850px;
  font-size: 26px;
  margin-top: 20px;
  line-height: 1.5;
  text-shadow: 0 0 10px rgba(255, 255, 255, .4);
  z-index: 3;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  text-align: center
}



@media (max-width: 768px) {

  .service-grid,
  .insight-grid {
    grid-template-columns: 1fr;
    /* Stack on mobile */
  }

  /* Mobile Hero Styling to Prevent Overlap and Clipping */
  .typing-line {
    font-size: 28px;
    /* Balanced size */
    text-align: left;
    /* Align left as requested */
    word-break: keep-all;
    /* Strictly keep words together */
    overflow-wrap: break-word;
    /* Wrap only if necessary */
    line-height: 1.3;
    display: inline-block;
    /* Ensure proper box formatting */
    max-width: 100%;
  }

  .hero-center {
    left: 20px;
    /* Extreme left with small padding */
    top: 45%;
    transform: translateY(-50%);
    /* Only center vertically */
    width: calc(100% - 40px);
    /* Full width minus side padding */
    text-align: left;
    padding-right: 10px;
    /* specific buffer for cursor/rendering */
  }

  .hero-bottom {
    bottom: 60px;
    /* Ensure space from bottom */
  }
}



/* ================= WORLD MAP ================= */
.map-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background: #000;
  /* Black background */
  overflow: hidden;
  /* contain svg */
}

/* SVG STYLES */
#world-map {
  width: 100%;
  height: auto;
  display: block;
}

#world-map path {
  fill: #333;
  /* Dark Grey Land */
  stroke: #555;
  /* Subtle Outline */
  stroke-width: 0.5;
  transition: fill 0.4s ease;
  cursor: pointer;
}

/* COUNTRY COLORS */

/* Default: Dark Grey (Reverted to hover-only as requested) */
#us path,
#ru path,
#ca path,
#gb path,
#au path {
  fill: #333;
  transition: fill 0.3s ease;
}

/* Hover Effect: Fill Color when pointing at location or country */
#us:hover path,
#us.active path {
  fill: #4da6ff !important;
}

#ru:hover path,
#ru.active path {
  fill: #ff99cc !important;
}

#ca:hover path,
#ca.active path {
  fill: #ff4d4d !important;
}

#gb:hover path,
#gb.active path {
  fill: #ffaa00 !important;
}

#au:hover path,
#au.active path {
  fill: #8b4513 !important;
}

/* PINS */
.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.map-pin::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 2s infinite;
}

.map-pin:hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: #00ffd0;
  z-index: 20;
  /* Bring to front on hover */
}

/* PERMANENT PIN LABEL */
.pin-label {
  position: absolute;
  bottom: 12px;
  /* Position above the pin */
  left: 50%;
  transform: translateX(-50%);
  background: none;
  /* No background as requested? Or maybe subtle */
  color: white;
  font-weight: bold;
  font-size: 14px;
  /* Increased Size */
  white-space: nowrap;
  text-shadow: 0 2px 4px black;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

/* SPECIFIC PIN POSITIONS (Adjusted UK) */
.pin-us {
  left: 21%;
  top: 38%;
}

.pin-ca {
  left: 24%;
  top: 20%;
}

.pin-gb {
  left: 48%;
  /* Moved slightly right */
  top: 25%;
  /* Moved down significantly */
}

/* Adjusted UK to be more accurate */
.pin-ru {
  left: 70%;
  top: 18%;
}

.pin-au {
  left: 86%;
  top: 78%;
}

/* Australia is lower right */

/* TOOLTIP ON HOVER */
.map-pin::after {
  content: attr(data-label);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.map-pin:hover::after {
  opacity: 1;
  bottom: 25px;
}

/* CONTACT FORM */
.contact-box {
  max-width: 500px;
  margin: auto;
  background: rgba(255, 255, 255, .08);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid #444;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid #555;
  border-radius: 8px;
  margin-bottom: 15px;
  color: white;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  color: #888
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  font-size: 30px;
  padding: 12px;
  background: #25d366;
  border-radius: 50%;
}

/* SUCCESS POPUP */
.success-popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  /* Green */
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  font-weight: bold;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, top 0.5s;
}

.success-popup.show {
  opacity: 1;
  visibility: visible;
  top: 40px;
  /* Slide down effect */
}

/* FADE EFFECT */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 1.2s
}

/* Get in Touch Section (Reusing Mission Style) */
.get-touch-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 80px 20px;
  /* Standard section padding */
  /* Uses same background/centering logic as mission but no full height constraint */
}

.fade.visible {
  opacity: 1;
  transform: translateY(0)
}

/* Section Title Colors */
#services .section-title,
#insights .section-title {
  color: #0056b3;
  /* Dark Blue */
  text-shadow: 0 0 10px rgba(0, 86, 179, 0.4);
}

.service-card h3,
.insight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
  /* Headings start white */
  transition: color 0.3s ease;
}

.service-card:hover h3,
.insight-card:hover h3 {
  color: #2b9aff;
  /* Premium Blue on Hover */
}

/* INSIGHT CARDS WITH IMAGES */
/* INSIGHT CARDS WITH IMAGES */
#insight-career {
  /* Career: Teal/Blue/Orange Mix */
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 0, 139, 0.8)), url('./career.png') center/130% no-repeat !important;
}

#insight-global {
  /* Global: Light Blue + Dark Purple Overlay (As requested) */
  background: linear-gradient(135deg, rgba(135, 206, 250, 0.3), rgba(48, 25, 52, 0.8)), url('./global.png') center/150% no-repeat !important;
}

#insight-tips {
  /* Tips: Green/Emerald Mix */
  background: linear-gradient(135deg, rgba(144, 238, 144, 0.2), rgba(0, 100, 0, 0.8)), url('./tips.png') center/130% no-repeat !important;
}

#insight-abroad {
  /* Abroad: Sky Blue/Royal Blue Mix */
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(65, 105, 225, 0.8)), url('./abroad.png') center/130% no-repeat !important;
}

/* Make Insight Cards Bigger & Presentable */
.insight-card {
  min-height: 65vh;
  /* Occupy large screen area */
  justify-content: center;
  /* Center content vertically */
  align-items: center;
  /* Center content horizontally */
  text-align: center;
  /* Center text */
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.2);
  padding: 30px;
}

/* Ensure Text Visibility over Images */
.insight-card h3 {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 2;
  font-size: 2rem;
  /* Make headings bigger */
}

.insight-card p {
  color: #4b3621;
  /* Dark Brown */
  font-weight: 900;
  /* Extra bold */
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.6);
  /* Semi-transparent backing */
  padding: 5px 15px;
  border-radius: 20px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
  text-shadow: none;
  /* Clear shadow for brown text */
}

/* SERVICE CARDS WITH IMAGES */
#service-seminar {
  position: relative;
  overflow: hidden;
  background: none;
  /* Remove default background to let pseudo-element show */
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#service-seminar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./seminar_real.png') center/cover no-repeat !important;
  filter: blur(3px);
  /* "Little bit blur" */
  opacity: 0.6;
  /* Ensure text is readable */
  z-index: 0;
  transition: transform 0.5s;
}

#service-seminar:hover::before {
  transform: scale(1.1);
  /* Zoom effect on hover */
  opacity: 0.8;
}

#service-seminar h3,
#service-seminar p {
  position: relative;
  z-index: 2;
  /* Text on top */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

#service-abroad {
  position: relative;
  overflow: hidden;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#service-abroad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./service_abroad.png') center/cover no-repeat !important;
  filter: blur(3px);
  opacity: 0.6;
  z-index: 0;
  transition: transform 0.5s;
}

#service-abroad:hover::before {
  transform: scale(1.1);
  opacity: 0.8;
}

#service-abroad h3,
#service-abroad p {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

#service-college {
  position: relative;
  overflow: hidden;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#service-college::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./service_college.jpg') center/cover no-repeat !important;
  filter: blur(3px);
  opacity: 0.6;
  z-index: 0;
  transition: transform 0.5s;
}

#service-college:hover::before {
  transform: scale(1.1);
  opacity: 0.8;
}

#service-college h3,
#service-college p {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

#service-parent {
  position: relative;
  overflow: hidden;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#service-parent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./service_parent.png') center/cover no-repeat !important;
  filter: blur(3px);
  opacity: 0.6;
  z-index: 0;
  transition: transform 0.5s;
}

#service-parent:hover::before {
  transform: scale(1.1);
  opacity: 0.8;
}

#service-parent h3,
#service-parent p {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* CONTACT SECTION REDESIGN */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  /* Form narrower, Info wider */
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.contact-form-col {
  /* No background, just fields */
  padding: 10px;
}

.contact-info-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2x2 Grid for cards */
  gap: 20px;
}

.contact-info-col h3 {
  grid-column: 1 / -1;
  /* Header spans full width */
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Info Cards (The 2x2 Grid Items) */
.contact-info-card {
  background: rgba(30, 30, 30, 0.6);
  /* Dark Glass */
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-card h4 {
  font-size: 1.5rem;
  /* Increased from 1.1rem */
  margin-bottom: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

/* Form Styling */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ddd;
  font-size: 0.9rem;
}

.contact-form-col input,
.contact-form-col textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #444;
  background: rgba(20, 20, 20, 0.8);
  /* Very Dark Input */
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.contact-form-col input:focus,
.contact-form-col textarea:focus {
  border-color: #007bff;
  /* Blue focus like image potentially? or generic focus */
  background: rgba(0, 0, 0, 0.9);
}

.contact-form-col textarea {
  height: 120px;
  resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    grid-template-columns: 1fr;
    /* Stack cards on mobile */
  }
}

/* RICH FOOTER */
.rich-footer {
  background: #0a0a0a;
  color: #ccc;
  padding: 60px 20px 20px;
  border-top: 1px solid #333;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: left;
  padding-bottom: 40px;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col p {
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Hover Effects - BLUE */
.footer-col p:hover,
.footer-col a:hover {
  color: #007bff;
  /* Requested Blue Hover */
  cursor: pointer;
  transition: 0.3s;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #007bff;
  /* Requested Blue Hover */
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #666;
}

/* ROTATING SLASHES TITLE */
.rotating-slash-title {
  display: inline-block;
  position: relative;
}

.rotating-slash-title::before,
.rotating-slash-title::after {
  content: "/";
  display: inline-block;
  color: #007bff;
  /* Blue color */
  font-weight: 900;
  margin: 0 15px;
  animation: rotateSlash 2s linear infinite;
  font-size: 1.2em;
}

@keyframes rotateSlash {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* BLUE TITLE VARIANT */
.blue-title {
  color: #007bff !important;
  /* Force Blue Color */
}