/* Basic Reset & Global Styles */
:root {
    --color-primary-teal: #00796B; /* Deep Teal */
    --color-secondary-gold: #FFC107; /* Warm Gold/Amber */
    --color-accent-grey: #424242; /* Soft Grey for text */
    --color-highlight-orange: #FF5722; /* Vibrant Orange */
    --color-light-grey: #F5F5F5;
    --color-white: #FFFFFF;
    --color-black: #212121;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;

    --padding-section: 40px 0; /* Corrected from '2    0px 0' */
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px; /* Standard base font size */
    line-height: 1.6;
    color: var(--color-accent-grey);
    background-color: var(--color-white);
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-black);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em; /* Adjusted from 3.5em */
    line-height: 1.2;
}

h2 {
    font-size: 2em; /* Adjusted from 2.5em */
    margin-bottom: 10px;
    text-align: center;
}

h3 {
    font-size: 1.5em; /* Adjusted from 1.8em */
}

a {
    text-decoration: none;
    color: var(--color-primary-teal);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-highlight-orange);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-highlight-orange);
    color: var(--color-white);
    border-color: var(--color-highlight-orange);
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: white;
    border-color:white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary-teal);
    border-color: var(--color-primary-teal);
}

.btn-secondary:hover {
    background-color: var(--color-primary-teal);
    color: var(--color-white);
    transform: translateY(-2px);
}

.section-padding {
    padding: var(--padding-section);
}


.bg-light {
    background-color: var(--color-light-grey);
}

.bg-primary-dark {
    background-color: var(--color-primary-teal);
}

.text-white {
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

/* === Global Hero Section Styles === */
.page-hero {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); /* adjustable opacity */
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* === Responsive Typography === */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 1.8rem;
    padding: 0 1rem;
  }

  .page-hero p {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.5rem;
  }

  .page-hero p {
    font-size: 0.9rem;
  }
}

/* Header */
/* Root variables assumed */
:root {
  --color-white: #fff;
  --color-accent-grey: #333;
  --color-primary-teal: #008080;
  --color-highlight-orange: #ff7043;
  --color-light-grey: #f9f9f9;
  --font-heading: 'Montserrat', sans-serif;
}

/* Header Base */
.main-header {
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content:space-between;
  align-items: center;
  padding: 5px 20px;
  max-width: 90%;
}


.logo a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-teal);
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  font-size: 1.3rem;
  display: none;
  cursor: pointer;
  color: var(--color-primary-teal);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;

}

.nav-list li {
  position: relative;
}

.nav-list a {
  color: var(--color-accent-grey);
  font-weight: 600;
  text-decoration: none;

  display: inline-block;
}

.nav-list a:hover {
  color: var(--color-primary-teal);
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--color-white);
  top: 100%;
  left: 0;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--color-highlight-orange);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  z-index: 10;
  animation: fadeIn 0.3s ease-in-out;
  margin:auto;
}

.dropdown-content a {
  padding: 12px 16px;
  color: var(--color-accent-grey);
  display: block;
}

.dropdown-content a:hover {
  background-color: var(--color-light-grey);
  color: var(--color-primary-teal);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display:inline;
  }

  .main-nav {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--color-white);
    
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav.open {
    max-height: 600px;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-list a {
    padding: 14px 20px;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border-top: none;
    animation: none;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  /* .dropdown-toggle::after {
    content: " ▾";
  } */

  .dropdown-toggle.active + .dropdown-content {
    display: block;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
    background-image: url('./assests/WhyIsSkyBlueCaptions1.jpg');
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Show entire video without cropping */
    transform: translate(-50%, -50%);
    z-index: -1;
    background-color: black; /* Optional: fill space around video */
    pointer-events: none;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 3.3em;
    margin-bottom: 20px;
    color: var(--color-white);
    animation: fadeInDown 1s ease-out; /* Example animation */
}

.hero-overlay p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-actions .btn {
    margin: 0 10px;
    font-size: 1em;
    padding: 10px 10px;
}

.testimonial-ticker {
    position: absolute;
    bottom: 20px;
    width: 100%;
    background: rgba(0,0,0,0.5);
    padding: 10px 0;
    font-size: 0.9em;
    white-space: nowrap;
    overflow: hidden;
    animation: ticker 15s linear infinite;
}

.testimonial-ticker span {
    display: inline-block;
    padding-left: 100%; /* Start off-screen */
    animation: ticker-content 15s linear infinite;
}


/* Mission Section */
.mission-section p {
    max-width:100%;
    margin: 0 auto;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.2em;
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.impact-item {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 3.5em;
    color: var(--color-highlight-orange);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.impact-item p {
    font-size: 0.9em;
    font-weight: bold;
    color: var(--color-accent-grey);
}

  
/* === CAROUSEL SECTION === */
.carousel-wrapper {
  margin-top: 60px;
  max-width: 100vw;
  padding: 50px 20px;
  background: rgba(87, 138, 138, 0.973);
  border-radius: 0px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.company-logos-carousel {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: scroll 15s linear infinite;
  width: max-content;
}

.company-logos-carousel img {
  width: 170px;
  height: 100px;
  object-fit: contain;
  background-color: white;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
  filter: grayscale(0%);
}

.company-logos-carousel img:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* === Responsive Tweak === */
@media (max-width: 768px) {
  .company-logos-carousel img {
    width: 80px;
    height: 80px;
  }
}

/* How We Do It Section */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.model-item {
    text-align: center;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.model-item .icon-large {
    font-size: 3em;
    color: var(--color-primary-teal);
    margin-bottom: 20px;
}

.model-item h3 {
    color: var(--color-black);
    margin-bottom: 15px;
}

/* Testimonials Section */
.video-testimonials-carousel {
    display: flex;
    overflow-x: auto; /* For horizontal scrolling if many videos */
    gap: 30px;
    padding-bottom: 20px; /* For scrollbar */
    justify-content: center; /* Center if few videos */
}

.testimonial-video-card {
    position: relative;
    min-width: 300px; /* Fixed width for cards */
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.testimonial-video-card:hover img {
    filter: brightness(0.5);
}

.testimonial-video-card .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: var(--color-white);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.testimonial-video-card:hover .play-button {
    opacity: 1;
}

.testimonial-video-card .quote-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: var(--color-white);
    padding: 20px;
    font-size: 0.9em;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-video-card:hover .quote-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.btn-cta-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-cta-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--color-secondary-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-cta-card i {
    font-size: 3em;
    color: var(--color-secondary-gold);
    margin-bottom: 15px;
}

.btn-cta-card h3 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.btn-cta-card p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.main-footer {
    background-color: var(--color-black);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0;
    font-size: 0.9em;
}

.main-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5em;
    font-weight: bold;
    color: var(--color-primary-teal);
    display: block;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.1em;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--color-primary-teal);
}

.social-icons a {
    font-size: 1.5em;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons a:hover {
    color: var(--color-primary-teal);
}

/* Animations (Basic Examples) */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* For the ticker, you'd typically use JavaScript or more complex CSS */
/* This is a very basic example and might need adjustment for smooth looping */
@keyframes ticker {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

@keyframes ticker-content {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


/* JavaScript for dynamic elements (script.js) */
/* This would handle things like the number counter, carousels, etc. */
/* Page Hero Section */
.page-hero {
    padding: 70px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-image: url(../assests/home-img.jpg);
    position: relative;
    overflow: hidden;
    color: white; /* Ensure text remains bright */
}

/* Add a dark overlay on top of the background */
.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust 0.5 for more/less darkness */
    z-index: 1;
}

/* Raise content above the overlay */
.page-hero .container {
    position: relative;
    z-index: 2;
}


.page-hero h1 {
    font-size: 2.4em;
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Story Content */
.story-section {
    margin-bottom: 60px;
}

.story-section h2 {
    text-align: left;
    margin-bottom: 25px;
    color: var(--color-primary-teal);
    border-bottom: 2px solid var(--color-secondary-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.story-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.image-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.03);
}

/* our model*/
.checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}

.checklist li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--color-accent-grey);
}

.checklist li i {
    color: var(--color-primary-teal);
    margin-right: 10px;
}

.program-details-grid {
    display: grid;

    gap: 30px;
    margin-top: 30px;
}

.program-item {
    background-color: var(--color-light-grey);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.program-item h3 {
    color: var(--color-highlight-orange);
    margin-bottom: 15px;
    display: flex;
    font-size: 16px;
    align-items: center;
}

.program-item h3 i {
    margin-right: 10px;
    font-size: 1em;
}

.program-item ul {
    list-style: disc;

    margin-bottom: 15px;
}

.program-item ul li {
    margin-bottom: 10px;
}

.program-item .note {
    font-size: 0.9em;
    color: var(--color-accent-grey);
    font-style: italic;
}

.image-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    margin-top: 40px;
    border-radius: 8px;
    background-color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.image-carousel img {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.image-carousel img:hover {
    transform: scale(1.05);
}

.partnership-section {
    text-align: center;
    margin-top: 60px;
}

.partner-logo {
    max-height: 100px;
    margin: 0 20px;
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Student Profile */
.profile-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.profile-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.profile-list li i {
    color: var(--color-primary-teal);
    margin-right: 15px;
    font-size: 1.3em;
    flex-shrink: 0;
    padding-top: 3px; /* Align icon with text */
}

.summary-text {
    font-size: 1.2em;
    font-style: italic;
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--color-light-grey);
    border-left: 5px solid var(--color-highlight-orange);
    border-radius: 5px;
}

.profile-visuals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  
}

.profile-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
}

/* Placements */
.placements-content {
  background-color: #f9f9f9;
  padding: 30px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.placement-section {
  margin-bottom: 50px;
}

.placement-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004d40;
  padding-left: 15px;
}

.advantages-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.advantages-list li {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-left: 4px solid var(--color-primary-teal);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.advantages-list li i {
  color: var(--color-primary-teal);
  margin-right: 15px;
  font-size: 1.5em;
  flex-shrink: 0;
  padding-top: 4px;
}

.company-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

.company-logos-grid img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}
/* 
.company-logos-grid img:hover {
  filter: grayscale(0%);
} */

.employer-testimonials-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin-top: 30px;
  padding-bottom: 10px;
}

.testimonial-video-card {
  position: relative;
  min-width: 240px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
}

.testimonial-video-card img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2em;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 50%;
}

.quote-overlay {
  padding: 10px;
  font-style: italic;
  background: #f1f1f1;
}

.highlight-number {
  font-weight: bold;
  color: var(--color-primary-teal);
  font-size: 1.2em;
}

.cta-placement {
  margin-top: 40px;
}

.cta-placement p {
  font-size: 1.25em;
  margin-bottom: 15px;
}

.btn-primary {
  background-color: var(--color-highlight-orange);
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #00796b;
}


.highlight-number {
    font-family: var(--font-heading);
    font-size: 1.5em;
    color: var(--color-highlight-orange);
    font-weight: bold;
}

.company-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    justify-items: center;
    align-items: center;
}

.company-logos-grid img {
    max-width: 100%;
    max-height: 80px;
    /* filter: grayscale(100%); */
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.company-logos-grid img:hover {
    /* filter: grayscale(0%); */
    opacity: 1;
    transform: scale(1.05);
}

.cta-placement {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--color-light-grey);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cta-placement p {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: var(--color-black);
}

/* Our Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member-card {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-member-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-member-card:hover img {
    filter: grayscale(0%);
}

.team-member-card h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    color: var(--color-primary-teal);
}

.team-member-card .role {
    font-style: italic;
    color: var(--color-highlight-orange);
    margin-bottom: 15px;
}

.team-member-card .bio {
    font-size: 0.95em;
    padding: 0 20px;
    margin-bottom: 20px;
}

.team-member-card .social-links a {
    font-size: 1.5em;
    margin: 0 10px;
    color: var(--color-accent-grey);
}

.team-member-card .social-links a:hover {
    color: var(--color-primary-teal);
}

/* Support Us */
.support-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-option-card {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.support-option-card .icon-large {
    font-size: 3.5em;
    color: var(--color-highlight-orange);
    margin-bottom: 25px;
}

.support-option-card h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--color-primary-teal);
}

.support-option-card p {
    margin-bottom: 30px;
}

.donor-testimonials {
    margin-top: 80px;
}

/* Contact Us */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container, .contact-info-container {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2, .contact-info-container h2 {
    text-align: left;
    margin-bottom: 30px;
    color: var(--color-primary-teal);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--color-accent-grey);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-teal);
    box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.8em;
    color: var(--color-highlight-orange);
    margin-right: 15px;
    flex-shrink: 0;
}

.info-item p {
    font-size: 1.1em;
    margin: 0;
}

.info-item a {
    color: var(--color-accent-grey);
}

.info-item a:hover {
    color: var(--color-primary-teal);
}

.social-media-contact {
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-media-contact h3 {
    margin-bottom: 15px;
    color: var(--color-black);
}

.social-media-contact a {
    font-size: 2em;
    margin-right: 20px;
    color: var(--color-accent-grey);
}

.social-media-contact a:hover {
    color: var(--color-primary-teal);
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block; /* Remove extra space below iframe */
}

/* Responsive Adjustments (Add to the end of style.css) */
@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    .hero-overlay h1 { font-size: 3em; }
    .hero-overlay p { font-size:1em; }

    .main-header .container {
    
        text-align: center;
    }
    .main-nav ul {
      
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }
    .main-nav ul li {
        margin: 0 10px 10px 10px;
    }
    .main-header .btn {
        margin-top: 15px;
    }

    .impact-grid, .model-grid, .program-details-grid, .company-logos-grid, .team-grid, .support-options-grid {

    }

    .testimonial-video-card {
        min-width: 90%; /* Adjust for smaller screens */
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }
    .hero-overlay h1 { font-size: 1.5em;
    line-height: 1.5; }
    .hero-overlay p { font-size: 0.9em; }
.hero-overlay{
    height:100vh;
    position:static;    
}
    .hero-actions .btn {
        font-size: 0.8em;
        padding: 8px 8px;
        margin:7px;
        display: none;
    }
    .container{
        max-width: 90%;
    
    }

    .testimonial-ticker {
        font-size: 0.8em;
    }

    .section-padding {
        padding: 20px 0;
    }

    .main-nav .dropdown-content {
        position: static; /* Make dropdowns expand inline on mobile */
        box-shadow: none;
        border-top: none;
    }
    .company-logos-carousel img{
        width:150px;
        height: 120px;
    }
.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin:auto;
 }
 .image-gallery{
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    justify-items: center;
 }
  .model-item{
        height: 250px;
        width:280px;
        margin: auto;
    }
    .btn-cta-card{
            height: 250px;
        width:250px;
        margin: auto;
    }

.story-section{
    max-width: 85%;
    margin:auto;
    
}
.story-section h2{
    text-align: center;
}
.story-intro{
        max-width: 85%;
    margin:auto;
}
.container h2{
    font-size: 24px;
}
.impact-section p{
    max-width: 85%;
    margin:auto;
}
.impact-item{
    width:250px;
    height:200px;
    margin:auto;
}
.testimonial-video-card{
    width:200px;
    height:200px;
    margin:auto;
}


.model-section{
    list-style: none;
    margin: 0;
    padding: 0;
}
.program-item h3 i{
    display:none;
}

.model-section li{
    list-style: none;
}
.program-item h3{
    align-items: center;
}
}
