.elementor-9 .elementor-element.elementor-element-d2a74ea{--display:flex;}.elementor-9 .elementor-element.elementor-element-7975e20{--display:flex;}/* Start custom CSS for html, class: .elementor-element-92db978 */:root {
    --primary: #7db885;
    --dark: #1a1a2e;
    --green: #387676;
    --light-bg: #f8f9ff;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
}

#biogyan-home {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.bg-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 20px;
}

/* Hero Styles */
.bg-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(circle at top right, #eef2ff, #ffffff);
    border-radius: 20px;
}

.bg-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.highlight { color: var(--primary); }

.bg-btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.bg-btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.bg-btn.primary { background: var(--primary); color: white; box-shadow: 0 10px 20px rgba(71, 71, 215, 0.2); }
.bg-btn.secondary { border: 2px solid #ddd; color: var(--dark); }
.bg-btn:hover { transform: translateY(-3px); }

/* Stats Bar */
.bg-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    max-width: 900px;
    margin: -40px auto 60px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item strong { display: block; font-size: 2rem; color: var(--primary); }
.stat-item span { font-size: 0.9rem; color: #666; }

/* Program Cards */
.bg-programs { padding: 80px 0; background: var(--light-bg); border-radius: 20px; }
.bg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.program-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Container for the image to keep spacing consistent */
/* 1. Expand the image wrapper for a modern "Feature Card" look */
.card-image-wrapper {
    width: 100%; /* Make image full width of the padding */
    height: 180px; /* Increased height for visibility */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8faff; /* Subtle background to make PNGs pop */
    border-radius: 15px;
    overflow: hidden;
}

/* 2. Style the image to be crisp and clear */
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This fills the area like your screenshot */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 3. Enhance the hover effect */
.program-card:hover .card-img {
    transform: scale(1.08); /* Sophisticated zoom instead of rotate */
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(71, 71, 215, 0.1);
}

/* 4. Fix typography spacing */
.program-card h3 {
    margin: 15px 0 10px;
    font-size: 1.5rem;
    color: var(--dark);
}

.program-card .icon { font-size: 2.5rem; margin-bottom: 15px; }

/* Newsletter */
.bg-newsletter {
    background: var(--green);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 30px;
    margin: 40px 20px;
}

.bg-newsletter h3 {
    color: white;
}
.bg-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
    gap: 10px;
}

.bg-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 120px;
    border: none;
   
}

.bg-form button {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .bg-hero h1 { font-size: 2.5rem; }
    .bg-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .bg-form { flex-direction: column; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f8fdf67 */:root {
    --primary-teal: #2A9597;
    --accent-green: #74BD5F;
    --dark-blue: #1D70A2;
    --navy-blue: #0f3d56; /* Deepened for better contrast */
    --bg-light: #f4f8fa;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 20px 40px rgba(0,0,0,0.05);
    --shadow-hover: 0 30px 60px rgba(42, 149, 151, 0.15);
  }

  body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #334155;
    background-color: var(--bg-light);
    line-height: 1.7;
  }

  /* Smooth Scrolling */
  html { scroll-behavior: smooth; }

  /* Hero Section Refinement */
  .bg-hero-modern {
    padding: 120px 20px;
    background: radial-gradient(circle at 80% 20%, rgba(116, 189, 95, 0.15) 0%, transparent 40%),
                linear-gradient(135deg, var(--dark-blue) 0%, var(--navy-blue) 100%);
    clip-path: ellipse(150% 100% at 50% 0%); /* Modern curved bottom */
    text-align: center;
    color: white;
  }

  h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive typography */
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }

  /* Button Overhaul */
  .btn {
    padding: 16px 40px;
    border-radius: 100px; /* Pill shape */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--dark-blue));
    color: white;
    box-shadow: 0 10px 25px rgba(42, 149, 151, 0.3);
  }

  .btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
  }

  /* Modern Glass Cards */
  .card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 10px; /* Internal spacing */
    transition: all 0.3s ease;
  }

  .card-header {
    border-radius: 18px 18px 0 0;
    padding: 25px !important;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .card-body {
    padding: 30px !important;
    font-size: 1rem;
    background: white;
    border-radius: 0 0 18px 18px;
  }

  /* Vision Items - Floating Style */
  .vision-item {
    background: white;
    border: none !important;
    border-top: 5px solid var(--accent-green) !important;
    box-shadow: var(--shadow-soft);
    padding: 35px !important;
    border-radius: 20px;
    transition: 0.3s ease;
  }

  .vision-item:hover {
    background: var(--accent-green);
    color: white;
  }

  .vision-item:hover h4, .vision-item:hover p { color: white; }

  /* Testimonial Section Overhaul */
  .quote-container {
    background: var(--navy-blue);
    padding: 100px 20px;
    border-radius: 60px;
    margin: 40px 20px;
    position: relative;
    overflow: hidden;
  }

  .quote-container::before {
    content: '🧬';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    right: -20px;
    bottom: -20px;
  }

  .quote {
    border-left: 4px solid var(--accent-green);
    padding-left: 30px !important;
    font-weight: 500;
  }

  /* Section Spacing */
  .section { padding: 100px 20px; }

  h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }

  h2::after {
    height: 6px;
    width: 60px;
    border-radius: 10px;
  }/* End custom CSS */