*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans Pro', sans-serif; color: #000; background: #fff; line-height: 1.6; overflow-x: hidden; font-size: 17px; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { flex: 1; padding: 0 15px; }
.text-center { text-align: center; }

/* Top Bar */
.top-bar { background: #005A40; color: #fff; padding: 8px 0; font-size: 15px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.top-bar a { color: #fff; margin: 0 10px; }
.top-bar a:hover { opacity: 0.8; }
.top-bar .contact-info { margin-right: auto; }
.top-bar .contact-info { display: flex; align-items: center; gap: 20px; }
.top-bar .contact-info i { margin-right: 5px; }
.top-bar .social-icons { display: flex; align-items: center; gap: 5px; }
.top-bar .social-icons a { display: inline-block; width: 28px; height: 28px; line-height: 28px; text-align: center; border-radius: 50%; background: rgba(255,255,255,0.15); font-size: 13px; }
.top-bar .social-icons a:hover { background: rgba(255,255,255,0.3); }
.top-bar .btn-consult { background: rgba(255,255,255,0.2); padding: 4px 15px; border-radius: 3px; font-size: 13px; }

/* Header */
.header { background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; }
.header .logo img { height: 70px; width: auto; }
.header-phone { display: flex; align-items: center; gap: 10px; color: #005A40; font-size: 24px; font-weight: 700; letter-spacing: 1px; white-space: nowrap; }
.header-phone i { font-size: 22px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: linear-gradient(90deg, #005A40, #0c0c0c); color: #fff; border-radius: 50%; }
.header-phone:hover { color: #0c0c0c; }

/* Navigation */
.nav { display: flex; align-items: center; }
.nav > ul { display: flex; gap: 3px; }
.nav > ul > li { position: relative; }
.nav > ul > li > a { display: block; padding: 10px 14px; font-weight: 600; font-size: 15px; color: #333; border-radius: 3px; white-space: nowrap; }
.nav > ul > li > a:hover, .nav > ul > li.current-menu-item > a { color: #005A40; background: rgba(0,90,64,0.05); }
.nav > ul > li.menu-item-has-children > a::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-left: 6px; font-size: 12px; }
.nav .sub-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 240px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); border-radius: 5px; padding: 10px 0; z-index: 100; }
.nav > ul > li:hover > .sub-menu { display: block; }
.nav .sub-menu .sub-menu { left: 100%; top: 0; }
.nav .sub-menu li { position: relative; }
.nav .sub-menu li a { display: block; padding: 8px 20px; font-size: 15px; color: #555; }
.nav .sub-menu li a:hover { color: #005A40; background: rgba(0,90,64,0.04); padding-left: 25px; }
.nav .sub-menu li.menu-item-has-children > a::after { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; float: right; }
.nav .sub-menu li:hover > .sub-menu { display: block; left: 100%; top: 0; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; background: none; border: none; font-size: 24px; color: #333; cursor: pointer; padding: 5px; }

/* Hero / Slider */
.hero { position: relative; background: linear-gradient(135deg, #005A40, #0c0c0c); min-height: 340px; display: flex; align-items: center; overflow: hidden; }
.hero .video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: none; }
.hero .video-overlay { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,90,64,0.55), rgba(12,12,12,0.65)); z-index: 1; border-radius: 10px; }
.hero.has-video .video-bg { display: block; }
.hero .container { position: relative; z-index: 2; text-align: center; color: #fff; padding: 40px 20px; }
.hero h1 { font-size: 40px; font-weight: 700; margin-bottom: 12px; letter-spacing: 1px; }
.hero p { font-size: 19px; opacity: 0.9; margin-bottom: 22px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero .btn-hero { display: inline-block; padding: 14px 40px; background: #fff; color: #005A40; font-weight: 700; font-size: 16px; border-radius: 5px; border: 2px solid #fff; }
.hero .btn-hero:hover { background: transparent; color: #fff; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: #f8f9fa; }
.section-title { text-align: center; margin-bottom: 35px; }
.section-title h2 { font-size: 38px; font-weight: 700; color: #005A40; position: relative; display: inline-block; padding-bottom: 15px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: #005A40; border-radius: 2px; }
.section-title p { color: #666; font-size: 17px; margin-top: 15px; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-content h3 { font-size: 30px; font-weight: 700; color: #005A40; margin-bottom: 20px; }
.about-content p { color: #555; line-height: 1.8; margin-bottom: 15px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.about-values li { padding: 6px 12px; background: rgba(0,90,64,0.05); border-radius: 5px; font-weight: 600; font-size: 15px; color: #333; display: flex; align-items: center; gap: 8px; }
.about-values li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #005A40; }
.about-image img { border-radius: 5px; box-shadow: 0 10px 60px rgba(0,0,0,0.15); }

/* Alternative layout for vizyon */
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

/* Service Boxes */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-box { text-align: center; padding: 30px; background: #fff; border-radius: 5px; box-shadow: 0 10px 60px rgba(0,0,0,0.08); transition: transform 0.3s ease; }
.service-box:hover { transform: translateY(-5px); }
.service-box .icon { width: 96px; height: 96px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.service-box .icon img { width: 100%; height: 100%; object-fit: cover; }
.service-box h3 { font-size: 22px; font-weight: 700; color: #005A40; margin-bottom: 12px; }
.service-box p { color: #666; font-size: 16px; line-height: 1.7; }

/* Vision & Mission Cards */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.vm-card { padding: 25px 30px; background: #fff; border-radius: 5px; box-shadow: 0 10px 60px rgba(0,0,0,0.12); }
.vm-card h3 { font-size: 22px; font-weight: 700; color: #005A40; margin-bottom: 12px; }
.vm-card p { color: #555; line-height: 1.6; font-size: 16px; }

/* News Grid */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.news-card { background: #fff; border-radius: 5px; overflow: hidden; box-shadow: 0 10px 60px rgba(0,0,0,0.08); transition: transform 0.3s ease; }
.news-card:hover { transform: translateY(-5px); }
.news-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.news-card .content { padding: 20px; }
.news-card .content h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.news-card .content h3 a { color: #333; }
.news-card .content h3 a:hover { color: #005A40; }
.news-card .content .date { font-size: 14px; color: #999; }

/* Counter / Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item .number { font-size: 70px; font-weight: 200; color: #fff; line-height: 1; }
.stat-item .number span { font-size: 24px; font-weight: 700; color: #005A40; display: inline-block; }
.stat-item .label { color: rgba(255,255,255,0.8); font-size: 16px; margin-top: 10px; }
.stats-bg { background: linear-gradient(135deg, #005A40, #0c0c0c); padding: 60px 0; }

/* Contact Section */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-box { background: #fff; padding: 40px; border-radius: 5px; box-shadow: 0 10px 60px rgba(0,0,0,0.1); }
.contact-info-box h3 { font-size: 24px; font-weight: 700; color: #005A40; margin-bottom: 30px; }
.contact-item { display: flex; gap: 15px; margin-bottom: 25px; }
.contact-item .icon { width: 50px; height: 50px; min-width: 50px; background: linear-gradient(90deg, #005A40, #0c0c0c); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }
.contact-item .text h4 { font-size: 15px; font-weight: 300; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.contact-item .text p { font-size: 17px; font-weight: 600; }

.contact-form-box { background: #fff; padding: 40px; border-radius: 5px; box-shadow: 0 10px 60px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 15px; color: #333; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; font-size: 15px; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #005A40; }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit { background: linear-gradient(90deg, #005A40, #0c0c0c); color: #fff; border: none; padding: 14px 40px; border-radius: 5px; font-size: 16px; font-weight: 700; cursor: pointer; transition: opacity 0.3s; }
.btn-submit:hover { opacity: 0.9; }
.btn-outline { display: inline-block; padding: 8px 25px; border: 2px solid #005A40; color: #005A40; border-radius: 5px; font-weight: 700; font-size: 15px; }
.btn-outline:hover { background: #005A40; color: #fff; }
.btn-white { display: inline-block; padding: 14px 40px; background: #fff; color: #005A40; border-radius: 5px; font-weight: 700; font-size: 16px; }
.btn-white:hover { background: transparent; color: #fff; border: 2px solid #fff; line-height: 1; }

/* Footer */
.footer { background: linear-gradient(90deg, #005A40, #0c0c0c); color: #fff; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-size: 19px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: rgba(255,255,255,0.4); }
.footer-col p { opacity: 0.8; font-size: 15px; line-height: 1.7; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { opacity: 0.8; font-size: 15px; }
.footer-col ul li a:hover { opacity: 1; padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; font-size: 14px; opacity: 0.8; }

/* Page Header */
.page-header { background: linear-gradient(135deg, #005A40, #0c0c0c); padding: 60px 0; text-align: center; color: #fff; }
.page-header h1 { font-size: 38px; font-weight: 700; margin-bottom: 10px; }
.page-header p { opacity: 0.9; font-size: 17px; }
.breadcrumb { margin-top: 10px; font-size: 15px; opacity: 0.7; }

/* Page Content */
.page-content { padding: 60px 0; }
.page-content h2 { color: #005A40; font-size: 30px; font-weight: 700; margin-bottom: 20px; margin-top: 40px; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { color: #333; font-size: 24px; font-weight: 600; margin-bottom: 15px; margin-top: 30px; }
.page-content p { color: #555; line-height: 1.8; margin-bottom: 15px; }
.page-content ul, .page-content ol { margin-bottom: 20px; padding-left: 20px; }
.page-content ul li, .page-content ol li { color: #555; line-height: 1.8; margin-bottom: 8px; }
.page-content ul li::marker { color: #005A40; }

/* Pricing / Donate */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pricing-card { background: #fff; border-radius: 5px; overflow: hidden; box-shadow: 0 10px 60px rgba(0,0,0,0.08); }
.pricing-card.featured { background: linear-gradient(90deg, #005A40, #0c0c0c); color: #fff; }
.pricing-card.featured .price { color: #fff; }
.pricing-card.featured ul li { color: #ededed; border-color: rgba(255,255,255,0.1); }
.pricing-card .card-header { padding: 20px; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.1); }
.pricing-card.featured .card-header { border-color: rgba(255,255,255,0.3); }
.pricing-card .card-header h3 { font-size: 20px; font-weight: 700; }
.pricing-card .price { font-size: 48px; font-weight: 700; color: #005A40; padding: 20px; text-align: center; }
.pricing-card .price small { font-size: 16px; font-weight: 400; color: #888; }
.pricing-card.featured .price small { color: rgba(255,255,255,0.7); }
.pricing-card ul { padding: 0 20px 20px; }
.pricing-card ul li { padding: 10px 0; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.1); color: #005A40; }
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card.featured ul li { color: #ededed; }
.pricing-card ul li.striked { color: rgba(25,103,48,0.6); text-decoration: line-through; }
.pricing-card .card-footer { padding: 20px; text-align: center; }
.pricing-card .card-footer .btn-pricing { display: inline-block; padding: 12px 35px; background: linear-gradient(90deg, #005A40, #0c0c0c); color: #fff; border-radius: 5px; font-weight: 700; }
.pricing-card.featured .card-footer .btn-pricing { background: #fff; color: #005A40; }

/* Team / Members Grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.team-card { background: #fff; border-radius: 5px; box-shadow: 0 10px 60px rgba(0,0,0,0.08); overflow: hidden; }
.team-card img { width: 100%; height: 280px; object-fit: cover; }
.team-card .info { padding: 20px; }
.team-card .info h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.team-card .info p { color: #888; font-size: 14px; }

/* Gallery Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-grid a { display: block; border-radius: 5px; overflow: hidden; }
.gallery-grid a img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; }
.gallery-grid a:hover img { transform: scale(1.1); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.testimonial-card { background: rgba(67,154,13,0.05); border-radius: 5px; padding: 30px; position: relative; }
.testimonial-card img.quote { width: 40px; margin-bottom: 15px; }
.testimonial-card p { color: #555; font-style: italic; line-height: 1.7; }
.testimonial-card .author { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.testimonial-card .author img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #005A40; padding: 2px; }
.testimonial-card .author .name { font-weight: 700; font-size: 16px; }
.testimonial-card .author .role { font-size: 13px; color: #888; }

/* Client Logos */
.client-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; align-items: center; }
.client-grid img { opacity: 0.7; transition: opacity 0.3s; max-width: 150px; margin: 0 auto; }
.client-grid a:hover img { opacity: 1; }

/* Button to top */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: linear-gradient(90deg, #005A40, #0c0c0c); color: #fff; border: none; border-radius: 5px; font-size: 18px; cursor: pointer; z-index: 999; display: none; }
.back-to-top.show { display: block; }

/* News Slider */
.news-slider-section { background: #f8f9fa; padding: 0 0 60px; }
.news-slider-section .section-title { margin-bottom: 20  npx; }
.news-slider-wrap { position: relative; overflow: hidden; margin-top: 20px; }
.news-slider-track { display: flex; transition: transform 0.5s ease; gap: 0; }
.news-slider-track .news-slide { min-width: 33.333%; padding: 0 12px; box-sizing: border-box; }
.news-slider-track .news-slide-inner { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s; height: 100%; }
.news-slider-track .news-slide-inner:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.news-slider-track .news-slide img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.news-slider-track .news-slide .slide-content { padding: 20px; }
.news-slider-track .news-slide .slide-content h3 { font-size: 15px; color: #005A40; margin-bottom: 8px; line-height: 1.4; }
.news-slider-track .news-slide .slide-content h3 a { color: #005A40; }
.news-slider-track .news-slide .slide-content h3 a:hover { color: #0c0c0c; }
.news-slider-track .news-slide .slide-content .slide-date { font-size: 13px; color: #888; margin-bottom: 10px; display: block; }
.news-slider-track .news-slide .slide-content p { font-size: 13px; color: #555; line-height: 1.6; }
.news-slider-loading { text-align: center; padding: 60px; color: #888; font-size: 17px; width: 100%; }
.news-slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: #fff; border: none; border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,0.15); cursor: pointer; font-size: 18px; color: #005A40; z-index: 10; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.news-slider-arrow:hover { background: #005A40; color: #fff; }
.news-slider-prev { left: 10px; }
.news-slider-next { right: 10px; }
.news-slider-dots { text-align: center; margin-top: 20px; display: flex; justify-content: center; gap: 8px; }
.news-slider-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; border: none; cursor: pointer; transition: all 0.3s; }
.news-slider-dots .dot.active { background: #005A40; transform: scale(1.3); }

@media (max-width: 992px) {
  .news-slider-track .news-slide { min-width: 50%; }
}
@media (max-width: 576px) {
  .news-slider-track .news-slide { min-width: 100%; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .header-phone { font-size: 18px; gap: 6px; }
  .header-phone i { width: 34px; height: 34px; font-size: 16px; }
  .nav > ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; box-shadow: 0 10px 40px rgba(0,0,0,0.1); padding: 15px; }
  .nav > ul.active { display: flex; }
  .nav .sub-menu { position: static; box-shadow: none; padding-left: 20px; display: none; }
  .nav .sub-menu.active { display: block; }
  .nav > ul > li > a { padding: 10px; }
  .nav .sub-menu .sub-menu { left: 0; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .hero .video-bg { display: none !important; }
  .hero.has-video { background: linear-gradient(135deg, #005A40, #0c0c0c); }
  .about-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item .number { font-size: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .top-bar .contact-info { flex-direction: column; gap: 5px; }
  .top-bar .container { flex-direction: column; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .nav > ul { gap: 1px; }
  .nav > ul > li > a { padding: 10px 9px; font-size: 13px; }
  .header-phone { font-size: 18px; }
  .header-phone i { width: 36px; height: 36px; font-size: 18px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 24px; }
  .hero { min-height: 300px; }
  .section-title h2 { font-size: 28px; }
  .news-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 25px; }
  .contact-info-box, .contact-form-box { padding: 25px; }
}
