/* ================================
    HEADER & FOOTER PLACEHOLDERS
    (used in all pages)
    ================================ */
#header-placeholder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

#footer-placeholder {
    width: 100%;
}

/* ================================
    COLOR VARIABLES
    ================================ */
:root {
    --primary-navy: #0A2463; /* Deep navy blue */
    --secondary-teal: #3E92CC; /* Vibrant teal */
    --accent-gold: #FFD700; /* Soft gold */
    --text-dark: #212529;
    --text-medium: #495057;
    --text-light: #6c757d;
    --bg-light-gray: #f0f2f5;
    --bg-lighter-gray: #e6e9ed;
    --white: #ffffff;
}


/* ================================
    BASE STYLES (applies to all pages)
    ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-medium); /* Using new variable */
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar */
    background-color: var(--bg-light-gray); /* Using new variable */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   HEADER STYLES (all pages)
   ================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.55); /* semi transparent for glass */
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

/* === Logo === */
.logo {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--secondary-teal);
  letter-spacing: -0.5px;
}

.logo a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
  color: var(--primary-navy);
}

.logo img {
  height: 54px;
  border-radius: 50%;
  padding: 6px;
  background: radial-gradient(circle, #ffffff 40%, var(--secondary-teal) 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo img:hover {
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

/* === Navigation === */
.nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: rgba(30, 60, 90, 0.85); /* softer navy text */
  font-weight: 500;
  font-size: 0.98em;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.nav a:hover {
  color: var(--secondary-teal);
}

/* Underline effect */
.nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--secondary-teal), var(--accent-gold));
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
  border-radius: 2px;
}
.nav a:hover::after {
  width: 100%;
}

/* === Mobile Menu === */
.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  color: rgba(30, 60, 90, 0.85);
  transition: color 0.3s ease;
}
.menu-toggle:hover {
  color: var(--secondary-teal);
}

@media (max-width: 768px) {
  .header .container {
    padding: 12px 20px;
  }
  .nav ul {
    display: none;
    flex-direction: column;
    background: rgba(138, 208, 219, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 0;
  }
  .nav ul.active {
    display: flex;
  }
  .nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .nav ul li:last-child {
    border-bottom: none;
  }
  .nav a {
    display: block;
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .menu-toggle {
    display: block;
  }
}

/* ================================
    HOME PAGE: HERO SECTION
    (index.html)
    ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-teal) 100%); /* Using new variables */
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Particle effect for hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.15)"/></svg>') repeat; /* More visible particles */
    animation: floatParticles 25s linear infinite; /* Slower animation */
    pointer-events: none;
}

@keyframes floatParticles {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-150px) rotate(360deg); } /* Larger movement */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px); /* Further slide */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 4rem; /* Larger title */
    font-weight: 800; /* Bolder */
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 15px rgba(255,255,255,0.7); /* Stronger initial glow */
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255,255,255,0.7); }
    to { text-shadow: 0 0 35px rgba(255,255,255,0.9), 0 0 50px rgba(255,255,255,0.7); } /* More intense glow */
}

.hero-subtitle {
    font-size: 1.35rem; /* Larger subtitle */
    margin-bottom: 2.5rem; /* More space */
    opacity: 0.95; /* Less transparent */
    animation: fadeInUp 1s ease-out 0.4s both; /* Slightly delayed */
	color: white
}

.hero-buttons {
    display: flex;
    gap: 1.2rem; /* More space between buttons */
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both; /* Slightly delayed */
}

.btn {
    padding: 14px 35px; /* Larger padding */
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Initial shadow */
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); /* Brighter shimmer */
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary-teal), var(--accent-gold)); /* Using new variables */
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); } /* Higher bounce */
    60% { transform: translateY(-6px); }
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-navy), var(--secondary-teal)); /* Darker gradient on hover */
    transform: translateY(-3px) scale(1.05); /* More pronounced lift */
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.4); /* Stronger shadow */
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    animation: pulse 2s infinite 0.5s;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary-teal); /* Using new variable */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.3); /* White shadow */
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px); /* Further slide */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9rem; /* Larger icon */
    color: rgba(255, 255, 255, 0.25); /* Slightly more opaque */
    animation: float 6s ease-in-out infinite, rotate 20s linear infinite;
    text-shadow: 0 0 20px rgba(255,255,255,0.3); /* Subtle shadow for graphic */
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); } /* Higher float */
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ================================
    SECTION HEADERS (shared)
    ================================ */
.section-header {
    text-align: center;
    margin-bottom: 5rem; /* More space */
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 3rem; /* Larger heading */
    font-weight: 800; /* Bolder */
    margin-bottom: 1.2rem;
    color: var(--text-dark); /* Using new variable */
    position: relative;
    text-transform: uppercase; /* Uppercase for impact */
    letter-spacing: 1px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px; /* Lower */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px; /* Thicker underline */
    background: linear-gradient(90deg, var(--secondary-teal), var(--accent-gold)); /* Using new variables */
    animation: expandWidth 1s ease-out 0.5s forwards;
    border-radius: 2px;
}

@keyframes expandWidth {
    to { width: 120px; } /* Longer underline */
}

.section-header p {
    font-size: 1.25rem; /* Larger paragraph */
    color: var(--text-light); /* Using new variable */
    max-width: 700px; /* Wider paragraph */
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both; /* Slightly delayed */
}
.about {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 80px 20px;
  overflow: hidden;
}

/* Gradient Overlay */
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary-navy, #0a2d5a), var(--secondary-teal, #008080));
  opacity: 0.7; 
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== Header ===== */
.about-header {
  margin-bottom: 40px;
  animation: fadeUp 1s ease forwards;
}

.about-header h2 {
  font-size: 2.8rem;
  font-weight: bold;
  background: linear-gradient(90deg, #4fc3f7, #81c784);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: textGlow 2.5s ease-in-out infinite alternate;
}

.about-header p {
  font-size: 1.2rem;
  color: #f0f4ff;
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.4s;
}

/* ===== Flex Layout ===== */
.about-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-info {
  flex: 1;
  max-width: 500px;
  text-align: center;
  animation: fadeLeft 1s ease forwards;
}

.about-info h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.about-info h3:hover {
  color: #4fc3f7;
  transform: scale(1.05);
}

.about-info p {
  color: #dbe4f5;
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.about-info p:nth-of-type(1) { animation-delay: 0.6s; }
.about-info p:nth-of-type(2) { animation-delay: 0.9s; }

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeRight 1s ease forwards 0.5s;
}

.about-image img {
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* ===== Stats ===== */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.about-stats li {
  list-style: none;
  flex: 1;
  min-width: 160px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  color: #fff;
  font-weight: 500;
  text-align: center;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.about-stats li:nth-child(1) { animation-delay: 1.2s; }
.about-stats li:nth-child(2) { animation-delay: 1.4s; }
.about-stats li:nth-child(3) { animation-delay: 1.6s; }

.about-stats li:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.about-stats strong {
  display: block;
  font-size: 2rem;
  color: #4fc3f7;
  margin-bottom: 5px;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes textGlow {
  from { text-shadow: 0 0 10px rgba(79,195,247,0.7); }
  to { text-shadow: 0 0 20px rgba(129,199,132,0.8); }
}




/* ================================
    ABOUT PAGE SECTION
    (About.html)
    ================================ */

.about {
    padding: 6rem 0; /* More padding */
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-teal)); 
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(62, 146, 204, 0.08) 0%, transparent 50%), /* Using new variable */
        radial-gradient(circle at 75% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 50%); /* Using new variable */
    pointer-events: none;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Mission & Vision Cards */
.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent glass */
    border-radius: 25px; /* More rounded corners */
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
    backdrop-filter: blur(12px); /* Glass blur effect */
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-teal), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.mission-card:hover::before, .vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff; /* Better contrast on glass */
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.mission-card .icon, 
.vision-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-teal), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(62, 146, 204, 0.4);
    transition: all 0.3s ease;
}

.mission-card:hover .icon, 
.vision-card:hover .icon {
    transform: rotate(10deg) scale(1.1);
}

.mission-card p, .vision-card p {
    color: rgba(255, 255, 255, 0.85); /* Slightly transparent text */
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ================================
    FOCUS SECTION - Interactive Design
================================ */

.focus-section {
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    border-radius: 25px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 5rem;
    color: #fff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Animated gradient overlay with your colors */
.focus-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, var(--primary-navy), var(--secondary-teal));
    background-size: 400% 400%;
    animation: gradientMove 25s ease infinite;
    z-index: 0;
    border-radius: 25px;
}

/* Floating particles */
.focus-section::after {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    top: -50%; left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 2px, transparent 2px) repeat;
    background-size: 50px 50px;
    animation: floatParticles 60s linear infinite;
    z-index: 0;
}

/* Hover effects */
.focus-section:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 200, 0.15);
    transform: translateY(-5px);
}

/* Heading */
.focus-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Heading underline */
.focus-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-teal), var(--accent-gold));
    border-radius: 2px;
}

/* Heading glow on hover */
.focus-section:hover h3 {
    text-shadow: 0 0 10px rgba(0,255,200,0.6), 0 0 20px rgba(255,215,0,0.4);
}

/* Paragraph */
.focus-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

/* Floating shapes (optional) */
.focus-section .floating-shape {
    position: absolute;
    width: 60px; height: 60px;
    background: rgba(0,255,200,0.1);
    border-radius: 50%;
    top: 20%; left: 10%;
    animation: floatShape 15s ease-in-out infinite;
    z-index: 0;
}

.focus-section .floating-shape:nth-child(2) {
    top: 60%; left: 70%;
    width: 80px; height: 80px;
    background: rgba(0, 128, 255, 0.1);
    animation-duration: 20s;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatParticles {
    0% { transform: translate(0,0); }
    100% { transform: translate(30px,30px); }
}

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}


/* Stats Section */
.stats-container {
    background: linear-gradient(135deg, #e0f2f7 0%, #cce7f0 100%); /* Light blue gradient background */
    border-radius: 20px;
    padding: 4rem; /* More padding */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(200, 200, 200, 0.8);
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem; /* More space */
}

.stats-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.stats-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 3rem; /* More space */
}

.stat {
    text-align: center;
    padding: 2.5rem 1.5rem; /* More padding */
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Softer shadow */
    border: 1px solid rgba(230, 230, 230, 0.8);
    transition: all 0.4s ease;
}

.stat:hover {
    transform: translateY(-8px) scale(1.03); /* Lift and slightly scale */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); /* Stronger shadow on hover */
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary-teal); /* solid color by default */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 5px 15px rgba(62, 146, 204, 0.3);
    transition: all 0.3s ease;
}

.stat:hover .stat-icon {
    background: linear-gradient(135deg, var(--secondary-teal), var(--accent-gold)); /* gradient only on hover */
    transform: rotate(-10deg) scale(1.1);
}

.stat h4 {
    font-size: 2.8rem; /* Larger number */
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-teal)); /* Using new variables */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem; /* More space */
}

.stat p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em; /* More letter spacing */
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
    .about .container {
        padding: 0 1rem;
    }
    .section-header h2 {
        font-size: 2.5rem;
    }
    .section-header p {
        font-size: 1.1rem;
    }
    .mission-card, .vision-card {
        padding: 2.5rem;
    }
    .mission-card h3, .vision-card h3 {
        font-size: 1.6rem;
    }
    .mission-card .icon, .vision-card .icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .mission-card p, .vision-card p {
        font-size: 1rem;
    }
    .focus-section {
        padding: 3rem;
    }
    .focus-section h3 {
        font-size: 2rem;
    }
    .focus-section p {
        font-size: 1rem;
    }
    .stats-container {
        padding: 3rem;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .stat {
        padding: 2rem 1rem;
    }
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .stat h4 {
        font-size: 2.5rem;
    }
    .stat p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .section-header p {
        font-size: 0.95rem;
    }
    .mission-card, .vision-card {
        padding: 2rem;
    }
    .mission-card h3, .vision-card h3 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    .mission-card .icon, .vision-card .icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    .focus-section {
        padding: 2.5rem;
    }
    .focus-section h3 {
        font-size: 1.8rem;
    }
    .stats-container {
        padding: 2.5rem;
    }
    .stat h4 {
        font-size: 2.2rem;
    }
}

/* Smooth animations for About page elements */
.mission-card, .vision-card, .focus-section, .stat {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.mission-card { animation-delay: 0.2s; }
.vision-card { animation-delay: 0.4s; }
.focus-section { animation-delay: 0.6s; }
.stats-container .stat:nth-child(1) { animation-delay: 0.8s; }
.stats-container .stat:nth-child(2) { animation-delay: 1s; }
.stats-container .stat:nth-child(3) { animation-delay: 1.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
    SERVICES PAGE SECTION
    (services.html)
    ================================ */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light-gray) 0%, var(--bg-lighter-gray) 100%); /* Using new variables */
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(62, 146, 204, 0.1) 0%, transparent 50%), /* Using new variable */
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%); /* Using new variable */
    animation: float 18s ease-in-out infinite; /* Slower float */
}

.services-showcase {
    position: relative;
    z-index: 2;
}

/* Hero Service Section (services.html specific hero) */
.services-hero.clean-hero {
    min-height: 50vh; /* Shorter hero for internal pages */
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-teal) 100%); /* Consistent vibrant gradient */
    padding: 100px 0; /* Adjust padding */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-hero.clean-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.15)"/></svg>') repeat;
    opacity: 0.8; /* More visible pattern */
    animation: floatParticles 25s linear infinite;
}

.services-hero .hero-content {
    z-index: 2;
    position: relative;
}

.services-hero .hero-title {
    font-size: 3.8rem; /* Larger title */
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.services-hero .hero-subtitle {
    font-size: 1.3rem; /* Larger subtitle */
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Detail Section (services.html content) */
.services-detail {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-teal) 100%); /* Consistent vibrant gradient */
    position: relative;
}

.services-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(62,146,204,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>'); /* Vibrant blue dots */
    opacity: 0.6; /* More visible dots */
}

.services-grid-detail {
    display: grid;
    /* MODIFIED: Two cards per line on larger screens */
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); 
    gap: 2.5rem; /* More space */
    position: relative;
    z-index: 2;
}

.service-card-detail {
    background: rgba(255, 255, 255, 0.98); /* Almost opaque white */
    border-radius: 20px;
    padding: 3rem; /* More padding */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); /* Stronger shadow */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 220, 220, 0.8);
}

.service-card-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px; /* Thicker top border */
    background: linear-gradient(90deg, var(--secondary-teal), var(--accent-gold)); /* Vibrant gradient */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-detail:hover::before {
    transform: scaleX(1);
}

.service-card-detail:hover {
    transform: translateY(-12px) scale(1.03); /* Higher lift and scale */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18); /* More intense shadow */
}

/* Specific hover shadows for service cards */
.service-card-detail[data-service="executive"]:hover { box-shadow: 0 25px 60px rgba(62, 146, 204, 0.35); } /* Using new variable */
.service-card-detail[data-service="group"]:hover { box-shadow: 0 25px 60px rgba(255, 215, 0, 0.35); } /* Using new variable */
.service-card-detail[data-service="individual"]:hover { box-shadow: 0 25px 60px rgba(255, 99, 71, 0.35); } /* Tomato */
.service-card-detail[data-service="workshops"]:hover { box-shadow: 0 25px 60px rgba(255, 165, 0, 0.35); } /* Orange */
.service-card-detail[data-service="consulting"]:hover { box-shadow: 0 25px 60px rgba(60, 179, 113, 0.35); } /* Medium Sea Green */
.service-card-detail[data-service="training"]:hover { box-shadow: 0 25px 60px rgba(147, 112, 219, 0.35); } /* Medium Purple */

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem; /* More space */
}

.service-icon > div {
    width: 90px; /* Larger icon container */
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem; /* Larger icon */
    background: linear-gradient(135deg, var(--secondary-teal), #3c6382); /* Vibrant gradient */
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(10, 61, 98, 0.3); /* Using new variable */
}

.service-icon > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); /* Brighter shimmer */
    transition: left 0.6s ease;
}

.service-card-detail:hover .service-icon > div::before {
    left: 100%;
}

.service-card-detail:hover .service-icon > div {
    transform: scale(1.15) rotate(8deg); /* More pronounced rotate and scale */
    box-shadow: 0 15px 35px rgba(62, 146, 204, 0.45); /* Stronger shadow on hover */
}

.service-content h3 {
    font-size: 2rem; /* Larger heading */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem; /* More space */
    text-align: center;
    position: relative;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Lower */
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Longer underline */
    height: 4px; /* Thicker underline */
    background: linear-gradient(135deg, var(--secondary-teal), #3c6382);
    border-radius: 2px;
}

.service-content p {
    color: var(--text-medium); /* Darker text */
    line-height: 1.8; /* More line height */
    margin-bottom: 1.8rem; /* More space */
    text-align: justify;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem; /* More space between tags */
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, var(--secondary-teal), #3c6382); /* Vibrant gradient */
    color: white;
    padding: 0.6rem 1.2rem; /* More padding */
    border-radius: 30px; /* More rounded */
    font-size: 0.9rem; /* Slightly larger font */
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(62, 146, 204, 0.2); /* Subtle shadow */
}

.feature-tag:hover {
    background: linear-gradient(135deg, var(--secondary-teal), #3c6382); /* Gradient only on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(62, 146, 204, 0.4);
}

.testimonial {
    background: linear-gradient(135deg, #e0f2f7, #cce7f0); /* Light blue gradient */
    padding: 2rem; /* More padding */
    border-radius: 15px;
    margin-top: 2rem; /* More space */
    border-left: 5px solid var(--secondary-teal); /* Vibrant blue border */
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.testimonial::before {
    content: '“'; /* Proper quote character */
    position: absolute;
    top: 10px; /* Adjusted position */
    left: 20px;
    font-size: 4rem; /* Larger quote */
    color: rgba(62, 146, 204, 0.3); /* Transparent vibrant blue */
    font-family: serif;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    color: var(--text-medium); /* Darker text */
    margin-bottom: 0.8rem; /* More space */
    font-size: 1rem; /* Slightly larger font */
    padding-left: 20px; /* Indent for quote */
}

.testimonial cite {
    color: var(--secondary-teal); /* Vibrant blue */
    font-weight: 600;
    font-size: 0.95rem; /* Slightly larger font */
    display: block;
    text-align: right; /* Align cite to right */
}

/* Responsive Design for Services Page */
@media (max-width: 992px) {
    .services-hero .hero-title {
        font-size: 3rem;
    }
    .services-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    /* MODIFIED: Ensure single column on smaller screens */
    .services-grid-detail {
        grid-template-columns: 1fr;
    }
    .service-card-detail {
        padding: 2.5rem;
    }
    .service-content h3 {
        font-size: 1.8rem;
    }
    .service-icon > div {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero .hero-title {
        font-size: 2.5rem;
    }
    .services-hero .hero-subtitle {
        font-size: 1rem;
    }
    .service-card-detail {
        padding: 2rem;
    }
    .service-content h3 {
        font-size: 1.6rem;
    }
    .service-icon > div {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    .feature-tag {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    .testimonial {
        padding: 1.5rem;
    }
    .testimonial p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-hero .hero-title {
        font-size: 2rem;
    }
    .services-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    .service-card-detail {
        padding: 1.5rem;
    }
    .service-content h3 {
        font-size: 1.4rem;
    }
    .service-icon > div {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animation for service cards */
.service-card-detail {
    opacity: 0;
    transform: translateY(40px); /* Deeper initial position */
    animation: fadeInUp 0.8s ease-out forwards; /* Slower animation */
}

.service-card-detail:nth-child(1) { animation-delay: 0.2s; }
.service-card-detail:nth-child(2) { animation-delay: 0.4s; }
.service-card-detail:nth-child(3) { animation-delay: 0.6s; }
.service-card-detail:nth-child(4) { animation-delay: 0.8s; }
.service-card-detail:nth-child(5) { animation-delay: 1s; }
.service-card-detail:nth-child(6) { animation-delay: 1.2s; }

/* Active navigation link */
.nav a.active {
    color: var(--secondary-teal);
    font-weight: 600;
}

.nav a.active::after {
    width: 100%;
    background: linear-gradient(90deg, var(--secondary-teal), var(--accent-gold));
}

/* ================================
    SERVICES OVERVIEW (index.html)
    ================================ */
.services-overview {
    padding: 4rem 0; /* More padding */
}

.services-intro {
    text-align: center;
    max-width: 900px; /* Wider intro text */
    margin: 0 auto;
}

.services-intro h3 {
    font-size: 2.8rem; /* Larger heading */
    font-weight: 800;
    color: var(--text-dark); /* Darker text */
    margin-bottom: 1.8rem; /* More space */
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-teal)); /* Vibrant gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-intro p {
    font-size: 1.2rem; /* Larger paragraph */
    color: var(--text-medium); /* Darker text */
    line-height: 1.8; /* More line height */
    margin-bottom: 4rem; /* More space */
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 2.5rem; /* More space */
    margin-bottom: 4rem;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.98); /* Almost opaque white */
    border-radius: 20px; /* More rounded */
    padding: 2.5rem; /* More padding */
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 220, 220, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Softer shadow */
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px; /* Thicker top border */
    background: linear-gradient(90deg, var(--secondary-teal), var(--accent-gold)); /* Vibrant gradient */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-item:hover {
    transform: translateY(-10px); /* Higher lift */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.highlight-icon {
    font-size: 3.5rem; /* Larger icon */
    margin-bottom: 1.5rem; /* More space */
    display: block;
    transition: all 0.4s ease;
    color: var(--secondary-teal); /* Vibrant blue icon */
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.15) rotate(10deg); /* More pronounced rotate and scale */
    color: var(--accent-gold); /* Change color on hover */
}

.highlight-item h4 {
    font-size: 1.5rem; /* Larger heading */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem; /* More space */
}

.highlight-item p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 3rem; /* More space */
}

.services-cta .btn {
    font-size: 1.2rem; /* Larger button */
    padding: 1.1rem 2.8rem; /* More padding */
    background: linear-gradient(135deg, var(--secondary-teal), var(--accent-gold)); /* Vibrant gradient */
    border: none;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(62, 146, 204, 0.3);
}

.services-cta .btn:hover {
    transform: translateY(-4px); /* Higher lift */
    box-shadow: 0 18px 45px rgba(62, 146, 204, 0.45); /* Stronger shadow */
}

.services-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); /* Brighter shimmer */
    transition: left 0.6s ease;
}

.services-cta .btn:hover::before {
    left: 100%;
}

/* Responsive Design for Services Overview */
@media (max-width: 992px) {
    .services-intro h3 {
        font-size: 2.5rem;
    }
    .services-intro p {
        font-size: 1.1rem;
    }
    .service-highlights {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .highlight-item {
        padding: 2rem;
    }
    .highlight-icon {
        font-size: 3rem;
    }
    .highlight-item h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .services-intro h3 {
        font-size: 2.2rem;
    }
    .services-intro p {
        font-size: 1rem;
    }
    .service-highlights {
        grid-template-columns: 1fr;
    }
    .highlight-item {
        padding: 1.8rem;
    }
    .highlight-icon {
        font-size: 2.8rem;
    }
    .highlight-item h4 {
        font-size: 1.2rem;
    }
    .services-cta .btn {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-intro h3 {
        font-size: 2rem;
    }
    .services-intro p {
        font-size: 0.95rem;
    }
    .highlight-item {
        padding: 1.5rem;
    }
    .highlight-icon {
        font-size: 2.5rem;
    }
    .highlight-item h4 {
        font-size: 1.1rem;
    }
    .services-cta .btn {
        font-size: 1rem;
        padding: 0.9rem 2.2rem;
    }
}

/* ================================
    DROPDOWN & SUBMENU STYLES
    (Navigation menu)
    ================================ */
/* Dropdown container */
.dropdown { /* Dropdown parent */
    position: relative;
    display: inline-block;
}

.dropdown-menu { /* Dropdown menu (first level) */
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* Stronger shadow */
    border-radius: 10px; /* More rounded */
    min-width: 220px; /* Wider */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); /* Deeper initial position */
    transition: all 0.3s ease; /* Slower transition */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Darker border */
    z-index: 1001;
    display: flex;
    flex-wrap: wrap;
    padding: 0 !important;
    gap: 0 !important;
    max-width: 600px; /* Wider */
}

.dropdown:hover .dropdown-menu { /* Show dropdown on hover */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li { /* Dropdown menu list items */
    list-style: none;
    flex: 1 0 100px;
    margin: 0;
    position: relative;
}

.dropdown-menu a { /* Dropdown menu links */
    display: block;
    padding: 14px 22px; /* More padding */
    color: var(--text-medium); /* Darker text */
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
    white-space: nowrap;
    font-size: 0.9em; /* Slightly larger font */
    line-height: 1.2; /* More line height */
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Darker border */
}

.dropdown-menu a:hover { /* Dropdown menu link hover */
    background: rgba(62, 146, 204, 0.1); /* Vibrant blue background */
    color: var(--secondary-teal); /* Vibrant blue text */
}

.dropdown-menu .submenu { /* Submenu container (second level) */
    min-width: 200px; /* Wider */
    padding: 0.3rem; /* More padding */
}

.dropdown-menu .submenu a { /* Submenu links */
    padding: 10px 15px; /* More padding */
}

/* ================================
    MOBILE RESPONSIVE ADJUSTMENTS
    ================================ */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: block;
        padding: 0;
        gap: 0;
        background: rgba(62, 146, 204, 0.08); /* Vibrant blue background */
        margin-left: 0.5rem; /* More margin */
    }
    
    .dropdown-menu li {
        flex: 1 0 auto;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem; /* Adjusted padding */
        font-size: 0.9em; /* Slightly larger font */
        border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Darker border */
    }
    
    .dropdown-menu .submenu {
        min-width: auto;
        margin-left: 0.5rem; /* More margin */
    }
}

/* ================================
    NESTED SUBMENU (e.g. Services → Training)
    ================================ */
.dropdown-menu .submenu {
    position: absolute;
    top: 0;
    left: 100%; /* Position to the right of parent */
    min-width: 240px; /* Wider */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-15px); /* Deeper initial position */
    transition: all 0.3s ease;
    z-index: 1002;
    display: block;
}

/* Show nested submenu on hover */
.dropdown-menu .has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Submenu list items */
.dropdown-menu .submenu li {
    width: 100%;
    position: relative;
}

.dropdown-menu .submenu a {
    display: block;
    padding: 14px 22px; /* More padding */
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px; /* Rounded corners for submenu items */
    margin: 0.3rem 0.2rem; /* Adjusted margin */
    white-space: nowrap;
}

.dropdown-menu .submenu a:hover {
    background: rgba(62, 146, 204, 0.1);
    color: var(--secondary-teal);
}

/* Arrow indicator for items with submenus */
.dropdown-menu .has-submenu > a::after {
    content: "→";
    float: right;
    margin-left: 12px; /* More space */
    transition: transform 0.3s ease;
    font-weight: bold; /* Bolder arrow */
    color: var(--secondary-teal); /* Vibrant blue arrow */
}

.dropdown-menu .has-submenu:hover > a::after {
    transform: translateX(5px); /* More pronounced movement */
}

/* Mobile responsive adjustments for nested menus */
@media (max-width: 768px) {
    .dropdown-menu .submenu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(62, 146, 204, 0.08);
        margin-left: 1rem; /* More margin */
        border-radius: 0;
        box-shadow: none;
        border: none;
        padding: 0;
        left: auto;
    }
    
    .dropdown-menu .submenu li {
        min-width: auto;
    }
    
    .dropdown-menu .submenu a {
        padding: 0.6rem 2.2rem; /* Adjusted padding */
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0;
    }
    
    .dropdown-menu .has-submenu > a::after {
        content: "↓"; /* Changed to downward arrow on mobile */
    }
}

/* ================================
    TRAINING CONTENT PAGE SECTION
    (training-content.html)
    ================================ */
/* Training Content Section - Interactive Design */
.training-content {
  padding: 6rem 0;
  background: linear-gradient(135deg, #78a0c8, #295189); /* soft gradient */
  position: relative;
  overflow: hidden;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

/* Floating glass effect with gradient border */
.training-card {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 25px;
  padding: 3rem 2rem;
  backdrop-filter: blur(12px);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  text-align: center;
  overflow: hidden;
}

.training-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--secondary-teal), var(--accent-gold));

  /* Mask setup */
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}


/* Alternative Method - More Browser Compatible */
.training-card-alt {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 25px;
  padding: 3rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  text-align: center;
  overflow: hidden;
}

.training-card-alt::before {
  content: "";
  position: absolute;
  inset: -2px; /* Negative inset for border effect */
  border-radius: inherit;
  background: linear-gradient(135deg, var(--secondary-teal), var(--accent-gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.training-card-alt:hover::before {
  opacity: 1;
}

/* Most Compatible Method - Using Box Shadow */
.training-card-compatible {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 25px;
  padding: 3rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  text-align: center;
  overflow: hidden;
  
  /* Gradient border using box-shadow */
  border: 2px solid transparent;
  background-clip: padding-box;
}

.training-card-compatible::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--secondary-teal), var(--accent-gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  margin: -2px; /* Offset for border effect */
}

.training-card-compatible:hover::before {
  opacity: 1;
}

/* Icon bubble */
.training-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--secondary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  box-shadow: 0 10px 25px rgba(62, 146, 204, 0.3);
  transition: all 0.4s ease;
}

.training-card:hover .training-icon {
  background: var(--accent-gold);
  transform: rotate(12deg) scale(1.2);
  box-shadow: 0 15px 35px rgba(214, 163, 18, 0.4);
}

.training-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.training-card p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Duration & Format pill styles */
.training-details {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.duration, .format {
  padding: 0.6rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(62, 146, 204, 0.15);
  color: var(--secondary-teal);
  transition: all 0.3s ease;
}

.duration:hover, .format:hover {
  background: var(--secondary-teal);
  color: #fff;
  transform: translateY(-3px);
}

/* Entry Animation */
.training-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.training-card:nth-child(1) { animation-delay: 0.2s; }
.training-card:nth-child(2) { animation-delay: 0.4s; }
.training-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.training-section {
  position: relative;
  background: url('images/training.jpeg') center/cover no-repeat; 
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 60px 20px;
}

.training-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 45, 90, 0.7); /* dark blue overlay */
  backdrop-filter: blur(2px); /* kasi effect kaca */
}

.training-section .content {
  position: relative;
  max-width: 800px;
  z-index: 2;
  animation: fadeUp 1.2s ease-in-out;
}

.training-section .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: rgba(10, 45, 90, 0.7);
}

.training-section .desc {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* animation effect */
@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* Responsive Design for Training Content Page */
@media (max-width: 992px) {
    .training-content .focus-section {
        padding: 3rem;
    }
    .training-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .training-card {
        padding: 2.5rem;
    }
    .training-icon {
        font-size: 3rem;
    }
    .training-card h3 {
        font-size: 1.6rem;
    }
    .training-highlight-container {
        padding: 2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .training-content {
        padding: 4rem 0;
    }
    .training-content .focus-section {
        padding: 2.5rem;
    }
    .training-content .focus-section p {
        font-size: 1.05rem;
    }
    .training-grid {
        grid-template-columns: 1fr;
    }
    .training-card {
        padding: 2rem;
    }
    .training-icon {
        font-size: 2.8rem;
    }
    .training-card h3 {
        font-size: 1.4rem;
    }
    .duration, .format {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    .training-highlight-container {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .training-content .focus-section {
        padding: 2rem;
    }
    .training-content .focus-section p {
        font-size: 0.95rem;
    }
    .training-card {
        padding: 1.5rem;
    }
    .training-icon {
        font-size: 2.5rem;
    }
    .training-card h3 {
        font-size: 1.2rem;
    }
    .training-highlight-container {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Animation for training cards */
.training-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.training-card:nth-child(1) { animation-delay: 0.2s; }
.training-card:nth-child(2) { animation-delay: 0.4s; }
.training-card:nth-child(3) { animation-delay: 0.6s; }
.training-card:nth-child(4) { animation-delay: 0.8s; }
.training-card:nth-child(5) { animation-delay: 1s; }
.training-card:nth-child(6) { animation-delay: 1.2s; }

/* ================================
    CONTACT SECTION (shared or contact page)
    ================================ */
.contact {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-teal)); /* Vibrant gradient */
    padding: 6rem 0;
}

.contact .container {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1); /* Very light overlay, almost transparent */
    backdrop-filter: blur(15px); /* Stronger blur for glass effect */
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle glass border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 4rem;
    color: #fff; /* Ensure text inside remains visible */
}

.section-header.contact-header h2,
.section-header.contact-header p {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Slightly wider form column */
    gap: 4rem; /* More space */
    align-items: flex-start;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem; /* More space */
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* More space */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem; /* More space */
    background: linear-gradient(135deg, #e0f2f7, #cce7f0); /* Light blue gradient background */
    border-radius: 15px; /* More rounded */
    padding: 2rem; /* More padding */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Softer shadow */
    border: 1px solid rgba(220, 220, 220, 0.8);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px); /* Lift on hover */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); /* Stronger shadow */
}

.contact-icon {
    font-size: 2.5rem; /* Larger icon */
    color: var(--secondary-teal); /* Vibrant blue icon */
    margin-top: 4px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg); /* Scale and rotate icon on hover */
    color: var(--accent-gold); /* Change color on hover */
}

.contact-item h4 {
    margin: 0 0 0.5rem 0; /* More space below heading */
    font-size: 1.3rem; /* Larger heading */
    color: var(--text-dark); /* Darker text */
}

.contact-item p {
    margin: 0;
    color: var(--text-medium); /* Darker text */
    font-size: 1.05rem; /* Slightly larger font */
}

/* Contact Form - MODIFIED */
.contact-form {
    background: linear-gradient(135deg, #e0f2f7, #cce7f0); 
    border-radius: 15px; /* More rounded */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Softer shadow */
    padding: 3.5rem; /* More padding */
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* More space between form groups */
}

.contact-form .form-group {
    margin-bottom: 1rem; /* Space between form groups */
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px; /* Increased padding */
    border: 1px solid #ced4da; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white); /* White background for inputs */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06); /* Subtle inner shadow */
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-teal); /* Teal border on focus */
    box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.2); /* Teal glow on focus */
    outline: none;
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 120px; /* Minimum height for textarea */
}

.contact-form button[type="submit"] {
    background: linear-gradient(45deg, var(--secondary-teal), var(--accent-gold)); /* Vibrant gradient */
    color: var(--white);
    border: none;
    border-radius: 50px; /* More rounded */
    padding: 1rem 0; /* More padding */
    font-size: 1.2rem; /* Larger font */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem; /* More space */
    box-shadow: 0 8px 20px rgba(62, 146, 204, 0.3); /* Initial shadow */
}

.contact-form button[type="submit"]:hover {
    background: linear-gradient(45deg, var(--primary-navy), var(--secondary-teal)); /* Darker gradient on hover */
    transform: translateY(-3px); /* Lift on hover */
    box-shadow: 0 15px 35px rgba(62, 146, 204, 0.45); /* Stronger shadow */
}

/* ================================
    FOOTER STYLES (all pages)
    ================================ */
.footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #343a40 100%); /* Darker, more sophisticated gradient */
    color: white;
    padding: 5rem 0 2.5rem; /* More padding */
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%); /* More subtle shimmer */
    animation: shimmer 6s ease-in-out infinite; /* Slower shimmer */
}

.footer-content {
    display: grid;
    /* MODIFIED: Adjust grid for single line contact info */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 2.5rem; /* More space */
    margin-bottom: 3rem; /* More space */
    position: relative;
    z-index: 2;
}

/* MODIFIED: Specific styling for contact info in footer */
.footer-section.footer-contact-info {
    grid-column: span 2; /* Span 2 columns on larger screens */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section.footer-contact-info .contact-item {
    background: none;
    border: none; 
    box-shadow: none; 
    padding: 0; 
    align-items: center; 
    gap: 1rem;
    transition: none; 
}

.footer-section.footer-contact-info .contact-item:hover {
    transform: none; 
    box-shadow: none; /
}

.footer-section.footer-contact-info .contact-icon {
    font-size: 1.5rem; /* Smaller icon for footer */
    color: var(--accent-gold); /* Gold icon for visibility */
    margin-top: 0;
}

.footer-section.footer-contact-info .contact-item h4 {
    font-size: 1rem; /* Smaller heading */
    color: var(--white); /* White heading */
    margin-bottom: 0;
}

.footer-section.footer-contact-info .contact-item p {
    font-size: 1rem; /* Smaller paragraph */
    color: #ced4da; /* Lighter text */
}

.footer-section.footer-contact-info .contact-item a {
    font-size: 1rem;
    color: #ced4da; /* Same as other contact text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section.footer-contact-info .contact-item a:hover {
    color: var(--accent-gold); /* Gold on hover */
}

.footer-section {
    animation: fadeInUp 0.8s ease-out; /* Slower animation */
}

.footer-section h3 {
    font-size: 1.8rem; /* Larger heading */
    font-weight: 700;
    margin-bottom: 1.2rem; /* More space */
    color: var(--secondary-teal); /* Lighter blue for headings */
}

.footer-section p {
    color: #adb5bd; /* Lighter gray text */
    line-height: 1.7; /* More line height */
    margin-bottom: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem; /* More space */
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(8px); /* More pronounced slide */
}

.footer-section ul li a {
    color: #ced4da; /* Lighter gray links */
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold); /* Vibrant blue on hover */
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.5); /* Stronger shadow */
}

.social-links {
    display: flex;
    gap: 1.2rem; /* More space */
    margin-top: 1.5rem; /* More space */
}

.social-links a {
    width: 45px; /* Larger icons */
    height: 45px;
    background: rgba(62, 146, 204, 0.2); /* Transparent vibrant blue background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem; /* Larger icon */
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    box-shadow: 0 3px 8px rgba(62, 146, 204, 0.2); /* Subtle shadow */
}

.social-links a:hover {
    background: var(--secondary-teal); /* Vibrant blue on hover */
    transform: translateY(-6px) scale(1.15); /* Higher lift and scale */
    box-shadow: 0 12px 25px rgba(62, 146, 204, 0.4); /* Stronger shadow */
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem; /* More padding */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Lighter border */
    color: #adb5bd; /* Lighter gray text */
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem; /* More space */
}

.footer-bottom p {
    margin: 0;
    color: #adb5bd;
    font-size: 0.95rem; /* Slightly larger font */
}

.footer-links {
    display: flex;
    gap: 1.8rem; /* More space */
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-teal);
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    /* MODIFIED: Adjust contact info span on medium screens */
    .footer-section.footer-contact-info {
        grid-column: span 1; 
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-section h3 {
        font-size: 1.6rem;
    }
    .footer-section ul {
        padding-left: 0;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    /* MODIFIED: Ensure contact info is full width on small screens */
    .footer-section.footer-contact-info {
        grid-column: span 1; 
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 1.4rem;
    }
    .footer-section p {
        font-size: 0.9rem;
    }
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .footer-bottom p, .footer-links a {
        font-size: 0.85rem;
    }
}

/* Global Animations (Enhanced) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px); /* Deeper initial position */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    from { text-shadow: 0 0 15px rgba(255,255,255,0.7); }
    to { text-shadow: 0 0 30px rgba(255,255,255,0.9), 0 0 45px rgba(255,255,255,0.7); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

/* Loading animation for better UX */
.loading {
    opacity: 0;
    transform: translateY(30px); /* Deeper initial position */
    transition: all 0.8s ease; /* Slower transition */
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.service-card:hover .service-icon {
    animation: bounce 0.6s ease;
}

.contact-item:hover .contact-icon {
    animation: shake 0.6s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); } /* More pronounced shake */
    75% { transform: translateX(8px); }
}

/* Floating elements */
.floating {
    animation: float 3.5s ease-in-out infinite; /* Slower float */
}

/* Glow effects */
.glow {
    animation: glow 2.5s ease-in-out infinite alternate; /* Slower glow */
}

/* Slide animations */
.slide-in-left {
    animation: slideInLeft 1.2s ease-out; /* Slower slide */
}

.slide-in-right {
    animation: slideInRight 1.2s ease-out; /* Slower slide */
}

/* Scale animations */
.scale-in {
    animation: scaleIn 0.8s ease-out; /* Slower scale */
}

/* Rotate animations */
.rotate-in {
    animation: rotateIn 1s ease-out; /* Slower rotate */
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg) scale(0.4); /* More rotation and smaller initial scale */
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Add top padding to body to account for fixed header */
body {
    padding-top: 80px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* NEW: About Us Section for Index Page */
.about-us-index {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-teal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-us-index .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-us-content {
    animation: slideInLeft 1s ease-out;
}

.about-us-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.about-us-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.about-us-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-us-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.about-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-us-image img:hover {
    transform: scale(1.03);
}

/* Responsive for About Us Index */
@media (max-width: 992px) {
    .about-us-index .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-us-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-us-index {
        padding: 4rem 0;
    }
    .about-us-content h2 {
        font-size: 2.5rem;
    }
    .about-us-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-us-content h2 {
        font-size: 2rem;
    }
    .about-us-content p {
        font-size: 0.9rem;
    }
}
/* General Page Styling */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9fafb;
    color: #333;
}

/* Page Container */
body > h1, 
body > h2, 
body > p {
    max-width: 900px;
    margin: auto;
    padding: 10px 20px;
}

/* Main Heading */
h1 {
    font-size: 2rem;
    text-align: center;
    margin: 40px 0 30px;
    color: #1a202c;
}

/* FAQ Question Styling */
h2 {
    font-size: 1.25rem;
    margin-top: 25px;
    padding: 12px 16px;
    background-color: #77b3ee;
    border-left: 4px solid #3182ce;
    border-radius: 6px;
    cursor: pointer;
}

h2:hover {
    background-color: #e2e8f0;
}

/* FAQ Answer Styling */
p {
    margin: 10px 0 20px 0;
    padding-left: 20px;
    color: #4a5568;
}

