* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}



/* Variables */
:root {
  --primary-color: #227A85;
  --primary-dark: #1b5e20;
  --primary-light: #227A85;
  --primary-lightest: #e8f5e9;
  --nav-bg: #ffffff;
  --text-color: #333333;
  --text-on-dark: #ffffff;
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
}



.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-left {
  display: flex;
  gap: 20px;
}

.top-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-left i {
  font-size: 14px;
}

.top-right {
  display: flex;
  gap: 15px;
}

.social-link {
  color: var(--text-on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  background-color: var(--nav-bg);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  padding: 10px 50px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.logo:hover img {
  opacity: 0.9;
}

/* Navigation */
.nav-container {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

/* Donate Button */
.donate-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  margin-left: 15px;
  transition: var(--transition);
}

.donate-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
  .nav-menu {
    gap: 5px;
  }
  
  .nav-menu li a {
    padding: 10px 12px;
    font-size: 15px;
  }
  
  .donate-button {
    padding: 8px 16px;
    margin-left: 10px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--nav-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    z-index: 1000;
  }
  
  .nav-container.active {
    right: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .nav-menu li a {
    padding: 15px 0;
  }
  
  .header-cta {
    width: 100%;
    margin-top: 20px;
  }
  
  .donate-button {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  
  /* Animated hamburger icon */
  .mobile-menu-toggle.active .hamburger-inner {
    background-color: transparent;
  }
  
  .mobile-menu-toggle.active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Top bar adjustments */
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
    padding: 8px 15px;
  }
  
  .top-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }
  
  .nav-container {
    width: 280px;
    padding: 20px 20px 20px;
    overflow-y: scroll;
  }
  
  .top-left span {
    font-size: 13px;
  }
  
  .social-link {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
}



/* Banner Styles */





/* About Section Styles */


.about-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-subtitle {
    display: block;
    color: #227A85;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #227A85, #227A85);
    margin-bottom: 30px;
}

.about-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #227A85;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-actions {
    display: flex;
    gap: 20px;
}

.about-section .btn-primary, .about-section .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-section .btn-primary {
    background-color: #227A85;
    color: white;
   
}

.about-section .btn-primary:hover {
    background-color: #1B5E20;
    transform: translateY(-3px);
   
}

.about-section .btn-secondary {
    background-color: transparent;
    color: #227A85;
    border: 2px solid #227A85;
}

.about-section .btn-secondary:hover {
    background-color: #227A85;
    color: white;
    transform: translateY(-3px);
}

.about-section .about-image {
    position: relative;
}

.about-section .image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-section .main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-section .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.3));
}

.about-section .image-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: #227A85;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-section .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section .about-content {
        order: 2;
        text-align: center;
    }
    
    .about-section .about-stats, .about-section .about-actions {
        justify-content: center;
    }
    
    .about-section .section-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .about-section .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-section .about-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-section .section-title {
        font-size: 2rem;
    }
}






/* style for our programs section */


.prgm-section {
  background-color: #f8f8f8;
  padding: 2rem 1rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.prgm-container {
  margin: 0 5%;
}

.prgm-section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: #222;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.prgm-section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.prgm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.prgm-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  overflow: hidden;
}

.prgm-card-img-container {
  height: 180px;
  overflow: hidden;
}

.prgm-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.prgm-card-content {
  padding: 1.5rem;
}

.prgm-card-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #222;
  font-weight: 600;
  position: relative;
  padding: 0.5rem;
}

.prgm-card-title::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #227A85;
}

.prgm-card-description {
  font-size: 1rem;
  padding: 0 0.5rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0.5rem;
}

.prgm-learn-more {
  display: inline-block;
  color: #227A85;
  font-weight: 500;
  text-decoration: none;
  padding: 0 0.5rem 0.5rem 0.5rem;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.prgm-learn-more:hover {
  color: #004d00;
  text-decoration: underline;
}

.prgm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.prgm-card:hover .prgm-card-img {
  transform: scale(1.05);
}

.prgm-cta-container {
  text-align: center;
  margin-top: 1rem;
}

.prgm-cta-button {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: #227A85;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.prgm-cta-button:hover {
  background-color: #004d00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .prgm-section {
    padding: 3rem 1rem;
  }

  .prgm-section-title {
    font-size: 1.8rem;
  }

  .prgm-section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .prgm-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prgm-card {
    padding: 0;
  }
  
  .prgm-card-content {
    padding: 1.5rem;
  }
}
/* Modern, clean styles for services section */
.servcs-section {
  background-color: #f5f9f5; /* Light green tint */
  padding: 4rem 1rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.servcs-container {
  margin: 0 5%;
  
}

/* Elegant heading with subtle underline */
.servcs-heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: #227A85;
  text-align: center;
  margin-bottom: 0.5rem;
}

.servcs-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #4a6b4a;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grid layout for services */
.servcs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Service cards with image and content */
.servcs-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 4rem;
}

.servcs-img-container {
  height: 200px;
  overflow: hidden;
}

.servcs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.servcs-content {
  padding: 1.5rem;
}

.servcs-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #227A85;
  margin-bottom: 0.75rem;
}

.servcs-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
}

.servcs-learn-more {
  display: inline-block;
  color: #227A85;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.servcs-learn-more:hover {
  color: #1b5e20;
  text-decoration: underline;
  transform: translateX(3px);
}

/* Hover effects */
.servcs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.servcs-card:hover .servcs-img {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .servcs-section {
    padding: 3rem 1rem;
  }

  .servcs-heading {
    font-size: 1.8rem;
  }

  .servcs-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .servcs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .servcs-container {
    padding: 0 1rem;
  }
  
  .servcs-img-container {
    height: 160px;
  }
}

/* style for gallery section */

/* Gallery Section Styles */
.glry-section {
  background-color: #fafafa;
  padding: 4rem 1rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.glry-container {
  margin: 0 5%;
}

.glry-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #227A85;
  margin-bottom: 2rem;
}

.glry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.glry-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
}

.glry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.glry-item:hover .glry-img {
  transform: scale(1.03);
}

.glry-cta {
  text-align: center;
}

.glry-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #227A85;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.glry-button:hover {
  background-color: #227A85;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .glry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .glry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 400px) {
  .glry-grid {
    grid-template-columns: 1fr;
  }

  .glry-heading {
    font-size: 1.8rem;
  }
}

/* executive board members */

/* Leadership Section Styles */
.bdmbr-section {
  background-color: #f9f9f9;
  padding: 1rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.bdmbr-container {
  margin: 0 5%;
}

.bdmbr-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 2rem;
}

.bdmbr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.bdmbr-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.bdmbr-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.5rem;
  display: block;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bdmbr-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.bdmbr-role {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 1rem;
}

.bdmbr-cta {
  text-align: center;
}

.bdmbr-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #227A85;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bdmbr-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .bdmbr-heading {
    font-size: 1.8rem;
  }
}

/* style for executive board members */
/* Info Center Section Styles */
.info-section {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.info-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #227A85;
  margin-bottom: 0.5rem;
}

.info-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #4a6b4a;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  display: block;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.info-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.info-card:hover .info-image {
  transform: scale(1.05);
}

.info-content {
  padding: 1.5rem;
}

.info-date {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.info-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #227A85;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.info-card:hover .info-title {
  color: #227A85;
}

.info-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1rem;
}

.info-read-more {
  display: inline-block;
  color: #227A85;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.info-card:hover .info-read-more {
  color: #1b5e20;
  transform: translateX(3px);
}

.info-cta {
  text-align: center;
  margin-top: 1rem;
}

.info-button {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: #227A85;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.info-button:hover {
  background-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .info-section {
    padding: 3rem 1rem;
  }

  .info-heading {
    font-size: 1.8rem;
  }

  .info-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .info-container {
    padding: 0 1rem;
  }
  
  .info-image {
    height: 160px;
  }
}
/* CTA Section Styles */

.atc-section {
  padding: 5rem 1rem;
  text-align: center;
  align-content: center;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.atc-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.atc-heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: #f4f2f2;
  margin-bottom: 2rem;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.atc-button-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.atc-button {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.atc-button-primary {
  background-color: #227A85;
  color: white;
  border: 1px solid #227A85;
}

.atc-button-primary:hover {
  background-color: #004d00;
  border-color: #004d00;
}

.atc-button-secondary {
  background-color: #fff;
  color: #227A85;
  border: 1px solid #227A85;
}

.atc-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .atc-section {
    padding: 3.5rem 1rem;
    background-attachment: scroll;
  }

  .atc-heading {
    font-size: 1.8rem;
  }

  .atc-button-group {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .atc-button {
    width: 200px;
  }
}

/* style for conatct section */

/* Modern Contact Section */
.cntct-section {
  background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
  padding: 2rem 1rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.cntct-container {
  margin: 0 11%;
}

.cntct-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  color: #227A85;
  margin-bottom: 3.5rem;
  position: relative;
}

.cntct-heading:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #227A85;
}

.cntct-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cntct-details {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.cntct-info {
  margin-bottom: 0.78rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #e0e0e0;
}

.cntct-info:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cntct-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #227A85;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
}

.cntct-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
  padding-left: 1.8rem;
}

.cntct-form {
  background: #ffffff;
  padding: 1.6rem;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.cntct-form-group {
  margin-bottom: 0.5rem;
}

.cntct-form-group label {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.cntct-form-group input,
.cntct-form-group textarea {
  width: 100%;
  padding: 7px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.cntct-form-group input:focus,
.cntct-form-group textarea:focus {
  border-color: #227A85;
  outline: none;
}

.cntct-form-group textarea {
  height: 78px;
  resize: vertical;
}

.cntct-button {
  background-color: #227A85;
  color: white;
  border: none;
  padding: 0.6rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.cntct-button:hover {
  background-color: #227A85;
}

/* Responsive Design */
@media (max-width: 900px) {
  .cntct-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cntct-heading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .cntct-section {
    padding: 3.5rem 1rem;
  }

  .cntct-heading {
    font-size: 1.8rem;
  }

  .cntct-details,
  .cntct-form {
    padding: 1.5rem;
  }
}

/* style for footer section */





.ftr-main {
  background-color: #dffbff;
  color: #333;
  padding: 0px 0 0px;
  font-size: 14px;
  border-top: 1px solid #e1e1e1;
}

.ftr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.ftr-brand,
.ftr-links,
.ftr-social {
  flex: 1 1 280px;
}

.ftr-brand img {
  max-width: 90px;
}

.ftr-about {
  margin-top: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 300px;
  font-size: 14px;
  font-weight: 500;
}

.ftr-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ftr-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.ftr-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftr-links li {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.ftr-links a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.ftr-links a:hover {
  color: #000;
  transform: translateX(3px);
}

.ftr-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.ftr-social-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000;
}

.ftr-social-icons a:hover {
  color: #fff;
  background-color: #222;
  transform: translateY(-3px);
}

.ftr-contact p {
  margin: 20px 0;
  color: #555;
  font-size: 14px;
}

.ftr-contact i {
  margin-right: 8px;
  color: #227A85;
}

.ftr-bottom {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  /*margin-top: 30px;*/
  border-top: 1px solid #e1e1e1;
  color: #777;
  font-size: 15px;
  width: 100%;
  background: #227A85;
}

.ftr-bottom a {
  color: #fff;
  text-decoration: none;
}

.ftr-bottom a:hover {
  color: #000;
}

.ftr-bottom p{
    color: #fff;
}


@media (max-width: 768px) {
  .ftr-container {
    flex-direction: column;
    text-align: center;
  }

  .ftr-brand img {
    margin: 0 auto;
  }

  .ftr-about {
    margin: 15px auto 20px;
    max-width: 100%;
  }

  .ftr-links-grid {
    grid-template-columns: 1fr;
  }

  .ftr-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }

  .ftr-social-icons {
    justify-content: center;
  }

  .ftr-contact p {
    text-align: center;
  }
}















/* style for breadcrumb */

.brdcmb-hero {
  font-family: "Segoe UI", "Lora", Georgia, serif;
  height: 35vh; /* Adjust between 30-45vh as needed */
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.brdcmb-container {
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.brdcmb-list {
  list-style: none;
  padding: 12px 25px;
  margin: 0 auto;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(3px);
  border-radius: 28px;
  max-width: 90%;
}

.brdcmb-item {
  display: inline-block;
  margin: 0 10px;
}

.brdcmb-item:not(:last-child)::after {
  content: "›";
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.brdcmb-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 2px 0;
}

.brdcmb-link:hover {
  color: white;
  text-decoration: underline;
}

.brdcmb-active {
  color: white;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .brdcmb-hero {
    height: 30vh;
  }

  .brdcmb-list {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .brdcmb-hero {
    height: 28vh;
    min-height: 200px;
  }

  .brdcmb-list {
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
  }

  .brdcmb-item {
    margin: 0 6px;
  }

  .brdcmb-item:not(:last-child)::after {
    margin-left: 8px;
  }
}
