/* =================================
   GOOGLE FONT
================================= */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* =================================
   GENERAL
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* =================================
   HEADER
================================= */

header {
  width: 100%;
  background: #ffffff;
  position: relative;
  z-index: 100;
}

.navbar {
  width: 92%;
  max-width: 1400px;
  min-height: 90px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

/* =================================
   LOGO
================================= */

.logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: milky;
}

.logo-box img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: auto;
}
/* h2 
.logo-box h2 {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #17458f;
}
     h2 */
/* =================================
   NAVIGATION
================================= */

.nav-menu ul {
  display: flex;
  align-items: center;

  gap: 35px;

  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #111111;
  text-decoration: none;

  font-size: 15px;
  font-weight: 500;

  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: #777777;
}

/* =================================
   RIGHT SECTION
================================= */

.right-section {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  min-width: 0;
}

/* =================================
   HAMBURGER
================================= */

.menu-btn {
  display: none;

  border: none;
  background: transparent;

  font-size: 30px;

  cursor: pointer;

  color: #111111;
}

/* =================================
   SLIDER
================================= */

.slider-container {
  position: relative;

  width: 100%;
  height: 750px;

  overflow: hidden;

  background: #000000;
}

/* =================================
   SLIDES
================================= */

.slides {
  display: flex;

  width: 100%;
  height: 100%;

  transition: transform 1s ease-in-out;
}

/* =================================
   INDIVIDUAL SLIDE
================================= */

.slide {
  position: relative;

  flex: 0 0 100%;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  background-color: #000000;
}

/* =================================
   SLIDE IMAGES
================================= */

.slide:nth-child(1) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./asset/endpolio.jpeg");
}

.slide:nth-child(2) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./asset/maternal.jpeg");
}

.slide:nth-child(3) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./asset/library.jpeg");
}

.slide:nth-child(4) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./asset/fellowship.jpeg");
}

.slide:nth-child(5) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./asset/assesment.jpg");
}

/* =================================
   SLIDE CONTENT
================================= */

.slide-content {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  padding: 0 50px;

  color: #ffffff;

  position: relative;
  z-index: 5;
}

.slide-content h3 {
  font-size: 18px;
  font-weight: 400;

  margin-bottom: 10px;
}

.slide-content h1 {
  font-size: 55px;
  font-weight: 700;

  text-transform: uppercase;

  margin-bottom: 20px;

  line-height: 1.2;
}

.slide-content p {
  max-width: 500px;

  font-size: 18px;
  line-height: 1.7;

  margin-bottom: 30px;
}

/* =================================
   SLIDE BUTTON
================================= */

.slide-button {
  display: inline-block;

  padding: 14px 30px;

  color: #ffffff;

  border: 2px solid #ffffff;

  text-decoration: none;

  text-transform: uppercase;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 1px;

  transition: 0.3s ease;
}

.slide-button:hover {
  background: #ffffff;
  color: #000000;
}

/* =================================
   SLIDER BUTTONS
================================= */

.slider-btn {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 20;

  width: 50px;
  height: 50px;

  border: 1px solid rgba(255, 255, 255, 0.7);

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.25);

  color: #ffffff;

  font-size: 25px;

  cursor: pointer;

  transition: 0.3s ease;
}

.slider-btn:hover {
  background: #ffffff;
  color: #000000;
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

/* =================================
   PAGINATION
================================= */

.slider-controls {
  position: absolute;

  left: 50%;
  bottom: 25px;

  transform: translateX(-50%);

  width: 90%;
  max-width: 1200px;

  z-index: 30;
}

.slide-pagination {
  display: flex;

  justify-content: space-between;
  align-items: center;

  width: 100%;

  list-style: none;

  margin: 0;
  padding: 0;
}

.slide-tab {
  position: relative;

  flex: 1;

  padding: 15px 20px;

  color: #ffffff;

  text-align: center;

  cursor: pointer;

  opacity: 0.5;

  transition: 0.3s ease;
}

.slide-tab:hover,
.slide-tab.active {
  opacity: 1;
}

.slide-tab::after {
  content: "";

  position: absolute;

  left: 10%;
  bottom: 0;

  width: 80%;
  height: 2px;

  background: rgba(255, 255, 255, 0.5);
}

.slide-tab.active::after {
  height: 4px;
  background: #ffffff;
}

.slide-tab span {
  display: block;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 5px;
}

.slide-tab p {
  margin: 0;

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* =========================================
   WHO WE ARE SECTION
========================================= */

.who-we-are {
  width: 100%;

  padding: 90px 20px;

  background: #f7f9fc;
}

.who-container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
}

/* =========================================
   WHO HEADER
========================================= */

.who-header {
  text-align: center;

  max-width: 800px;

  margin: 0 auto 55px;
}

.section-tag {
  display: inline-block;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 2px;

  color: #17458f;

  margin-bottom: 12px;
}

.who-header h2 {
  font-size: 42px;
  font-weight: 800;

  color: #222222;

  margin-bottom: 15px;

  line-height: 1.2;
}

.who-header .intro {
  font-size: 18px;

  color: #666666;

  line-height: 1.7;
}

/* =========================================
   WHO CONTENT
========================================= */

.who-content {
  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 50px;

  align-items: start;
}

.who-description {
  background: #ffffff;

  padding: 35px;

  border-radius: 12px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.who-description p {
  font-size: 16px;

  line-height: 1.9;

  color: #555555;

  margin-bottom: 20px;
}

.who-description p:last-child {
  margin-bottom: 0;
}

.who-description strong {
  color: #17458f;
}

/* =========================================
   WHO CARDS
========================================= */

.who-cards {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.who-card {
  background: #ffffff;

  padding: 28px;

  border-radius: 12px;

  border-left: 5px solid #17458f;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

  transition: 0.3s ease;
}

.who-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.who-icon {
  font-size: 30px;

  margin-bottom: 12px;
}

.who-card h3 {
  font-size: 22px;

  color: #222222;

  margin-bottom: 10px;
}

.who-card p {
  font-size: 15px;

  line-height: 1.8;

  color: #666666;
}

/* =========================================
   ABOUT US HERO
========================================= */

.about-hero {
  position: relative;

  width: 100%;

  height: 620px;

  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}

/* =========================================
   ABOUT HERO OVERLAY
========================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.68) 20%,
    rgba(0, 0, 0, 0.35) 42%,
    rgba(0, 0, 0, 0.08) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* =========================================
   ABOUT HERO CONTENT
========================================= */

.hero-content {
  position: absolute;

  left: 7%;
  top: 50%;

  transform: translateY(-50%);

  max-width: 650px;

  color: #ffffff;

  z-index: 2;
}

.hero-small {
  margin-bottom: 18px;

  color: #f7a81b;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 2px;
}

.hero-content h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(48px, 6vw, 82px);

  line-height: 1.02;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: -2px;
}

.hero-line {
  width: 85px;
  height: 5px;

  margin: 25px 0 15px;

  background: #f7a81b;
}

.hero-motto {
  color: #ffffff;

  font-size: 19px;
  font-weight: 500;

  letter-spacing: 2px;
}

/* =========================================
   WHO FOOTER MESSAGE
========================================= */

.who-footer {
  text-align: center;

  margin-top: 60px;

  padding: 35px 20px;

  background: #17458f;

  border-radius: 12px;

  color: #ffffff;
}

.who-footer h3 {
  font-size: 28px;

  margin-bottom: 10px;
}

.who-footer p {
  font-size: 16px;

  margin: 0;

  line-height: 1.7;
}

/* =================================
   CIRCULAR PERCENTAGE
================================= */

.progress-section {
  width: 100%;
  max-width: 1000px;

  padding: 40px 20px;

  margin: 0 auto;
}

.progress-section h2 {
  text-align: center;

  margin-bottom: 40px;

  font-size: 32px;

  line-height: 1.3;
}

.progress-wrapper {
  width: 100%;

  display: flex;

  justify-content: center;
  align-items: center;

  gap: 40px;

  flex-wrap: wrap;
}

.progress-box {
  flex: 0 1 280px;

  min-width: 220px;

  text-align: center;
}

.progress-circle {
  position: relative;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  margin: 0 auto 20px;

  display: flex;

  justify-content: center;
  align-items: center;

  background: conic-gradient(#00a8ff 0deg, #00a8ff 270deg, #9631f5 270deg);
}

.progress-circle::before {
  content: "";

  position: absolute;

  width: 140px;
  height: 140px;

  background: #ffffff;

  border-radius: 50%;
}

.percentage {
  position: relative;

  z-index: 2;

  font-size: 32px;

  font-weight: 700;
}

.progress-box h3 {
  font-size: 20px;

  line-height: 1.4;

  text-align: center;
}

.container {
  width: 90%;
  max-width: 1100px;

  margin: 50px auto;

  padding: 40px 50px;

  box-sizing: border-box;

  background: #ffffff;

  border-radius: 12px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* =========================================
   CONTAINER HEADING
========================================= */

.container h1 {
  width: 100%;

  margin: 0 0 30px;

  text-align: center;

  font-size: 40px;

  line-height: 1.2;

  font-weight: 800;

  color: #17458f;
}

/* =========================================
   CONTAINER PARAGRAPHS
========================================= */

.container p {
  width: 100%;

  margin: 0 auto 22px;

  font-size: 16px;

  line-height: 1.9;

  color: #555555;

  text-align: left;
}

.container p:last-child {
  margin-bottom: 0;
}

/* =========================================
   BOLD TEXT
========================================= */

.container b {
  font-weight: 700;

  color: #222222;
}

/* =========================================
   CONTAINER LINKS
========================================= */

.container a {
  display: inline-block;

  margin-top: 15px;

  color: #17458f;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;

  transition: 0.3s ease;
}

.container a:hover {
  color: #f7a81b;

  text-decoration: underline;
}
/* =========================================
   CHILDREN'S PLAYGROUND PROJECT
========================================= */

.playground-project {
  width: 100%;
  padding: 80px 20px;
  background: #f7f7f7;
  box-sizing: border-box;
}

.playground-container {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;

  align-items: center;
}
.events {
  padding: 80px 20px;
  background: #f7f7f7;
  box-sizing: border-box;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  font-size: 16px;
  line-height: 1.9;
}

/* =========================================
   PROJECT IMAGE
========================================= */

.playground-image {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.playground-image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.playground-image:hover img {
  transform: scale(1.04);
}

/* =========================================
   PROJECT CONTENT
========================================= */

.playground-content {
  width: 100%;
}

.project-label {
  display: inline-block;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: #e67e22;
  margin-bottom: 12px;
}

.playground-content h2 {
  margin: 0 0 20px;

  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  line-height: 1.2;

  color: #222;
}

.playground-content p {
  margin: 0 0 16px;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.8;

  color: #555;
}

/* =========================================
   PROJECT HIGHLIGHT
========================================= */

.playground-highlight {
  margin-top: 25px;
  padding: 20px 25px;

  background: #ffffff;
  border-left: 5px solid #e67e22;

  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.playground-highlight strong {
  display: block;

  margin-bottom: 8px;

  font-family: "Montserrat", sans-serif;
  font-size: 20px;

  color: #222;
}

.playground-highlight p {
  margin: 0;
}

/* =========================================
   ROTARY PROJECT SECTION
========================================= */

.project-section {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  box-sizing: border-box;
}

/* =========================================
   PROJECT CONTAINER
========================================= */

.project-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;

  align-items: center;
  box-sizing: border-box;
}

/* =========================================
   PROJECT IMAGE
========================================= */

.project-image {
  width: 100%;
  height: 500px;

  overflow: hidden;
  border-radius: 15px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

/* Image hover effect */

.project-image:hover img {
  transform: scale(1.04);
}

/* =========================================
   PROJECT CONTENT
========================================= */

.project-content {
  width: 100%;
  box-sizing: border-box;
}

/* Small project heading */

.project-label {
  display: inline-block;

  margin-bottom: 12px;

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: #e67e22;
}

/* Main project heading */

.project-content h2 {
  margin: 0 0 20px;

  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 700;

  line-height: 1.25;

  color: #222222;
}

/* Project paragraphs */

.project-content p {
  margin: 0 0 16px;

  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;

  line-height: 1.8;

  color: #555555;
}

/* =========================================
   PROJECT HIGHLIGHT BOX
========================================= */

.project-highlight {
  margin-top: 25px;
  padding: 20px 25px;

  background: #f7f7f7;

  border-left: 5px solid #e67e22;
  border-radius: 8px;

  box-sizing: border-box;
}

.project-highlight strong {
  display: block;

  margin-bottom: 8px;

  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 700;

  color: #222222;
}

.project-highlight p {
  margin: 0;

  font-size: 14px;
  line-height: 1.7;
}

/* =========================================
   WHY JOIN ROTARY
========================================= */

.why-join-rotary {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  box-sizing: border-box;
}

.why-join-container {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
}

/* HEADER */

.why-join-header {
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #f7a81b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.why-join-header h2 {
  margin: 0 0 15px;
  color: #17458f;
  font-size: 42px;
  font-weight: 700;
}

.why-join-header p {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

/* BENEFITS GRID */

.rotary-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* BENEFIT CARD */

.benefit-card {
  padding: 30px 25px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-7px);
  border-color: #f7a81b;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* ICON */

.benefit-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7a81b;
  border-radius: 50%;
  font-size: 28px;
}

/* CARD TEXT */

.benefit-card h3 {
  margin: 0 0 12px;
  color: #17458f;
  font-size: 20px;
}

.benefit-card p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* CALL TO ACTION */

.rotary-action {
  margin-top: 55px;
  padding: 45px 25px;
  background: #17458f;
  border-radius: 15px;
  text-align: center;
}

.rotary-action h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 30px;
}

.rotary-action p {
  max-width: 650px;
  margin: 0 auto 25px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

/* JOIN BUTTON */

.join-btn {
  display: inline-block;
  padding: 13px 28px;
  background: #f7a81b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.join-btn:hover {
  background: #ffffff;
  color: #17458f;
}

/* =========================================
   REVERSE PROJECT
   Text Left - Image Right
========================================= */

.project-reverse .project-container {
  grid-template-columns: 1fr 1fr;
}

/*
   This moves the content to the left
   and the image to the right.
*/

.project-reverse .project-content {
  order: 1;
}

.project-reverse .project-image {
  order: 2;
}

/* Slight background difference */

.project-reverse {
  background: #f8f8f8;
}

/* ==========================================
   CONTACT SECTION
========================================== */

.contact-section {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
}

/* ==========================================
   CONTAINER
========================================== */

.contact-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

/* ==========================================
   HEADER
========================================== */

.contact-header {
  text-align: center;
  margin-bottom: 55px;
}

.contact-header h2 {
  margin: 0 0 10px;

  color: #17458f;

  font-size: 42px;
  font-weight: 800;

  line-height: 1.2;
}

.contact-header p {
  margin: 0;

  color: #777777;

  font-size: 16px;
}

/* ==========================================
   MAIN CONTACT WRAPPER
========================================== */

.contact-wrapper {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  align-items: start;
}

/* ==========================================
   CONTACT INFORMATION
========================================== */

.contact-info {
  padding: 10px 0;
}

.contact-intro {
  color: #555555;

  font-size: 16px;

  line-height: 1.8;

  margin: 0 0 40px;
}

.contact-intro a {
  color: #17458f;

  font-weight: 600;

  text-decoration: none;

  word-break: break-word;
}

.contact-intro a:hover {
  color: #f7a81b;
}

/* ==========================================
   CONTACT ITEMS
========================================== */

.contact-item {
  margin-bottom: 40px;
}

.contact-item h4 {
  margin: 0 0 12px;

  color: #17458f;

  font-size: 21px;

  font-weight: 700;
}

.contact-item p {
  margin: 0;

  color: #555555;

  font-size: 15px;
}

.contact-item strong {
  color: #333333;
}

.contact-item a {
  color: #555555;

  text-decoration: none;
}

.contact-item a:hover {
  color: #17458f;
}

/* ==========================================
   ADDRESS
========================================== */

.contact-address {
  padding-top: 5px;
}

.contact-address strong {
  display: block;

  color: #17458f;

  font-size: 17px;

  margin-bottom: 12px;
}

.contact-address address {
  color: #666666;

  font-size: 15px;

  font-style: normal;

  line-height: 1.8;
}

/* ==========================================
   FORM BOX
========================================== */

.contact-form-box {
  width: 100%;

  padding: 35px;

  background: #f8f9fb;

  border: 1px solid #eeeeee;

  border-radius: 12px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

/* ==========================================
   FORM
========================================== */

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  color: #333333;

  font-size: 14px;

  font-weight: 600;
}

/* ==========================================
   INPUTS
========================================== */

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 14px 16px;

  border: 1px solid #d8d8d8;

  border-radius: 6px;

  background: #ffffff;

  color: #333333;

  font-family: inherit;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-group input {
  height: 50px;
}

.form-group textarea {
  min-height: 140px;

  resize: vertical;
}

/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999999;
}

/* Focus */

.form-group input:focus,
.form-group textarea:focus {
  border-color: #17458f;

  box-shadow: 0 0 0 3px rgba(23, 69, 143, 0.08);
}

/* ==========================================
   SUBMIT BUTTON
========================================== */

.contact-submit {
  width: auto;

  min-width: 130px;

  padding: 13px 28px;

  border: none;

  border-radius: 6px;

  background: #17458f;

  color: #ffffff;

  font-family: inherit;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.contact-submit:hover {
  background: #f7a81b;

  transform: translateY(-2px);
}

.contact-submit:active {
  transform: translateY(0);
}
/*     contact page css ends */

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .playground-container {
    width: 92%;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .playground-image {
    height: 500px;
  }

  .playground-content h2 {
    font-size: 32px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .playground-project {
    padding: 50px 15px;
  }

  .playground-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .playground-image {
    width: 100%;
    height: 380px;
    border-radius: 12px;
  }

  .playground-content {
    padding: 0 5px;
  }

  .project-label {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .playground-content h2 {
    font-size: 27px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .playground-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .playground-highlight {
    padding: 18px 20px;
    margin-top: 20px;
  }

  .playground-highlight strong {
    font-size: 18px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {
  .playground-project {
    padding: 40px 12px;
  }

  .playground-image {
    height: 320px;
  }

  .playground-content h2 {
    font-size: 24px;
  }

  .playground-content p {
    font-size: 13px;
  }
}

/* =================================
   FOOTER
================================= */

.footer {
  width: 100%;

  background: #5e3bf7;

  color: #ffffff;

  padding: 40px 20px 25px;

  text-align: center;

  margin-top: 50px;
}

.footer ul {
  list-style: none;

  margin: 0;
  padding: 0;
}

.footer .flex-row {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 30px;

  flex-wrap: wrap;
}

.footer .flex-row:first-child {
  margin-bottom: 25px;
}

.footer .flex-row:first-child li a {
  color: #ffffff;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 1px;

  transition: 0.3s ease;
}

.footer .flex-row:first-child li a:hover {
  color: #f7c600;
}

.footer .flex-row:nth-child(2) {
  gap: 20px;

  margin-bottom: 25px;
}

.footer .flex-row:nth-child(2) li {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;

  justify-content: center;
  align-items: center;

  background: #222222;

  transition: 0.3s ease;

  cursor: pointer;
}

.footer .flex-row:nth-child(2) li i {
  font-size: 18px;

  color: #ffffff;

  transition: 0.3s ease;
}

.footer .flex-row:nth-child(2) li:hover {
  background: #f7c600;

  transform: translateY(-5px);
}

.footer .flex-row:nth-child(2) li:hover i {
  color: #111111;
}

.footer p {
  margin: 0;

  padding-top: 5px;

  font-size: 13px;

  color: #ffffff;

  letter-spacing: 0.5px;
}

/* =========================================
   TABLET - 900px
========================================= */

@media (max-width: 900px) {
  .who-content {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .who-header h2 {
    font-size: 36px;
  }

  .nav-menu ul {
    gap: 20px;
  }

  .nav-menu a {
    font-size: 14px;
  }

  .slider-container {
    height: 650px;
  }

  .slide-content h1 {
    font-size: 45px;
  }
}

/* =========================================
   MOBILE - 768px
========================================= */

@media (max-width: 768px) {
  /* ===============================
     NAVBAR
  =============================== */

  .navbar {
    width: 94%;

    min-height: 80px;

    gap: 10px;

    padding: 8px 0;
  }

  /* ===============================
     RIGHT SECTION
  =============================== */

  .right-section {
    gap: 10px;

    min-width: 0;

    flex-shrink: 0;
  }

  /* ===============================
     MOBILE LOGO
  =============================== */

  .right-section .logo-box {
    width: auto;

    max-width: 175px;

    flex-shrink: 3;

    padding: 6px 10px;

    overflow: visible;
  }

  /* ===============================
     MOBILE MENU
  =============================== */

  .nav-menu {
    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: #ffffff;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.show {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;

    gap: 20px;

    padding: 25px;
  }

  .nav-menu a {
    font-size: 14px;
  }

  /* ===============================
     HAMBURGER
  =============================== */

  .menu-btn {
    display: block;

    font-size: 28px;

    padding: 5px;
  }

  /* ===============================
     MOBILE SLIDER
  =============================== */

  .slider-container {
    width: 100%;

    height: 600px;

    overflow: hidden;

    background: #000000;
  }

  .slides {
    width: 100%;
    height: 100%;
  }

  .slide {
    width: 100%;

    height: 600px;

    flex: 0 0 100%;

    background-size: contain;

    background-position: center center;

    background-repeat: no-repeat;

    background-color: #000000;
  }

  /* ===============================
     SLIDE CONTENT
  =============================== */

  .slide-content {
    width: 100%;

    max-width: 100%;

    height: 100%;

    padding: 0 55px;

    display: flex;

    flex-direction: column;

    justify-content: center;
  }

  .slide-content h3 {
    font-size: 16px;
  }

  .slide-content h1 {
    font-size: 36px;

    line-height: 1.15;
  }

  .slide-content p {
    font-size: 15px;

    line-height: 1.6;

    max-width: 90%;
  }

  /* ===============================
     SLIDER BUTTONS
  =============================== */

  .slider-btn {
    width: 42px;
    height: 42px;

    font-size: 19px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  /* ===============================
     PAGINATION
  =============================== */

  .slider-controls {
    width: 94%;

    bottom: 15px;
  }

  .slide-tab {
    padding: 8px 3px;
  }

  .slide-tab span {
    font-size: 10px;
  }

  .slide-tab p {
    display: none;
  }

  /* ===============================
     ABOUT HERO
  =============================== */

  .about-hero {
    height: 500px;
  }

  .about-hero img {
    object-position: center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.2) 100%
    );
  }

  .hero-content {
    left: 25px;
    right: 25px;

    top: 50%;

    max-width: 500px;
  }

  .hero-small {
    font-size: 11px;

    letter-spacing: 1.5px;

    margin-bottom: 14px;
  }

  .hero-content h1 {
    font-size: 45px;

    line-height: 1.05;

    letter-spacing: -1px;
  }

  .hero-line {
    width: 60px;

    height: 4px;

    margin: 18px 0 12px;
  }

  .hero-motto {
    font-size: 15px;

    letter-spacing: 1.5px;
  }

  /* ===============================
     WHO WE ARE
  =============================== */

  .who-we-are {
    width: 100%;

    padding: 70px 15px;
  }

  .who-container {
    width: 100%;

    max-width: 100%;

    margin: 0 auto;
  }

  .who-header {
    width: 100%;

    margin: 0 auto 40px;
  }

  .who-header h2 {
    font-size: 32px;
  }

  .who-header .intro {
    font-size: 16px;
  }

  .who-content {
    width: 100%;

    grid-template-columns: 1fr;

    gap: 30px;
  }

  .who-description {
    width: 100%;

    padding: 30px 25px;
  }

  .who-description p {
    font-size: 15px;

    line-height: 1.8;
  }

  /* ===============================
     PROGRESS
  =============================== */

  .progress-section {
    width: 100%;

    max-width: 100%;

    padding: 40px 15px;

    margin: 0 auto;
  }

  .progress-wrapper {
    flex-direction: column;

    gap: 40px;
  }

  .progress-box {
    width: 100%;

    min-width: 0;
  }
}

/* =========================================
   MOBILE - 600px
========================================= */

@media (max-width: 600px) {
  /* ===============================
     NAVBAR
  =============================== */

  .navbar {
    width: 94%;

    min-height: 78px;

    padding: 8px 0;
  }

  .right-section {
    gap: 8px;
  }

  .right-section .logo-box {
    max-width: 165px;

    padding: 6px 8px;
  }

  .right-section .logo-box img {
    height: 48px;
  }

  .right-section .logo-box h2 {
    font-size: 12px;
  }

  /* ===============================
     SLIDER
  =============================== */

  .slider-container {
    height: 520px;
  }

  .slide {
    height: 520px;

    background-size: contain;

    background-position: center center;
  }

  .slide-content {
    padding: 0 45px;
  }

  .slide-content h3 {
    font-size: 14px;
  }

  .slide-content h1 {
    font-size: 30px;

    line-height: 1.15;
  }

  .slide-content p {
    font-size: 14px;

    max-width: 100%;

    line-height: 1.6;
  }

  .slide-button {
    padding: 11px 20px;

    font-size: 11px;
  }

  /* ===============================
     WHO WE ARE
  =============================== */

  .who-we-are {
    padding: 60px 15px;
  }

  .who-header {
    margin-bottom: 35px;
  }

  .who-header h2 {
    font-size: 30px;

    line-height: 1.2;
  }

  .who-header .intro {
    font-size: 16px;

    line-height: 1.6;
  }

  .who-description {
    padding: 25px 20px;
  }

  .who-description p {
    font-size: 15px;

    line-height: 1.8;
  }

  .who-card {
    padding: 23px 20px;
  }

  .who-card h3 {
    font-size: 20px;
  }

  .who-footer {
    margin-top: 40px;

    padding: 30px 15px;
  }

  .who-footer h3 {
    font-size: 24px;
  }

  /* ===============================
     FOOTER
  =============================== */

  .footer {
    padding: 35px 15px 20px;
  }

  .footer .flex-row:first-child {
    flex-direction: column;

    gap: 15px;
  }

  .footer .flex-row:first-child li a {
    font-size: 13px;
  }

  .footer .flex-row:nth-child(2) {
    gap: 15px;
  }

  .footer .flex-row:nth-child(2) li {
    width: 38px;

    height: 38px;
  }

  .footer .flex-row:nth-child(2) li i {
    font-size: 16px;
  }

  .footer p {
    font-size: 12px;
  }

  /* ===============================
     PROGRESS
  =============================== */

  .progress-section h2 {
    font-size: 27px;

    margin-bottom: 35px;
  }

  .progress-circle {
    width: 160px;

    height: 160px;
  }

  .progress-circle::before {
    width: 125px;

    height: 125px;
  }

  .percentage {
    font-size: 28px;
  }

  .progress-box h3 {
    font-size: 18px;
  }
}

/* =========================================
   SMALL PHONES - 480px
========================================= */

@media (max-width: 480px) {
  /* ===============================
     NAVBAR
  =============================== */

  .navbar {
    width: 94%;

    min-height: 75px;

    padding: 8px 0;
  }

  .nav-menu {
    top: 100%;
  }

  /* ===============================
     LOGO
  =============================== */

  .right-section {
    gap: 6px;
  }

  .right-section .logo-box {
    max-width: 155px;

    padding: 7px 8px;
  }

  .right-section .logo-box img {
    height: 44px;

    max-width: 100%;
  }

  .right-section .logo-box h2 {
    font-size: 9px;

    line-height: 1.2;
  }

  /* =========================================
   TABLET
========================================= */

  @media (max-width: 768px) {
    .logo-box {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-box img {
      width: 55px;
      height: 55px;
    }

    .logo-box h2 {
      font-size: 17px;
      line-height: 1.2;
      max-width: 250px;
    }
  }

  /* =========================================
   MOBILE
========================================= */

  @media (max-width: 480px) {
    .logo-box {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
    }

    .logo-box img {
      width: 48px;
      height: 48px;
    }

    .logo-box h2 {
      font-size: 14px;
      line-height: 1.25;
      max-width: 210px;
      margin: 0;
    }
  }

  /* =========================================
   VERY SMALL MOBILE
========================================= */

  @media (max-width: 360px) {
    .logo-box {
      gap: 6px;
    }

    .logo-box img {
      width: 42px;
      height: 42px;
    }

    .logo-box h2 {
      font-size: 12px;
      max-width: 180px;
    }
  }

  /* ===============================
     HAMBURGER
  =============================== */

  .menu-btn {
    font-size: 26px;
  }

  /* ===============================
     SLIDER
  =============================== */

  .slider-container {
    height: 480px;
  }

  .slide {
    height: 480px;

    background-size: contain;

    background-position: center center;
  }

  .slide-content {
    padding: 0 40px;
  }

  .slide-content h3 {
    font-size: 13px;

    margin-bottom: 8px;
  }

  .slide-content h1 {
    font-size: 27px;

    margin-bottom: 15px;
  }

  .slide-content p {
    font-size: 13px;

    margin-bottom: 20px;
  }

  /* ===============================
     SLIDER BUTTONS
  =============================== */

  .slider-btn {
    width: 35px;

    height: 35px;

    font-size: 16px;
  }

  .prev {
    left: 7px;
  }

  .next {
    right: 7px;
  }

  /* ===============================
     PAGINATION
  =============================== */

  .slider-controls {
    width: 96%;

    bottom: 10px;
  }

  .slide-tab {
    padding: 8px 2px;
  }

  .slide-tab span {
    font-size: 9px;
  }

  /* ===============================
     WHO WE ARE
  =============================== */

  .who-we-are {
    padding: 55px 12px;
  }

  .who-header h2 {
    font-size: 26px;
  }

  .who-header .intro {
    font-size: 15px;
  }

  .who-description {
    width: 100%;

    padding: 22px 18px;
  }

  .who-description p {
    font-size: 14px;

    line-height: 1.8;
  }

  .who-card {
    padding: 20px 18px;
  }

  .who-card h3 {
    font-size: 18px;
  }

  .who-card p {
    font-size: 14px;
  }

  /* ===============================
     PROGRESS
  =============================== */

  .progress-section {
    padding: 35px 15px;
  }

  .progress-section h2 {
    font-size: 24px;
  }

  .progress-circle {
    width: 150px;

    height: 150px;
  }

  .progress-circle::before {
    width: 115px;

    height: 115px;
  }

  .percentage {
    font-size: 26px;
  }

  .progress-box h3 {
    font-size: 17px;
  }
}

/* =========================================
   VERY SMALL PHONES - 400px
========================================= */

@media (max-width: 400px) {
  /* ===============================
     NAVBAR
  =============================== */

  .navbar {
    width: 95%;

    min-height: 73px;

    padding: 8px 0;
  }

  .right-section {
    gap: 4px;
  }

  .right-section .logo-box {
    max-width: 145px;

    padding: 8px 6px;
  }

  .right-section .logo-box img {
    height: 40px;
  }

  .right-section .logo-box h2 {
    font-size: 8px;

    line-height: 1.2;
  }

  .menu-btn {
    font-size: 24px;
  }

  /* ===============================
     SLIDER
  =============================== */

  .slider-container {
    height: 430px;
  }

  .slide {
    height: 430px;

    background-size: contain;

    background-position: center center;
  }

  .slide-content {
    padding: 0 35px;
  }

  .slide-content h3 {
    font-size: 12px;
  }

  .slide-content h1 {
    font-size: 24px;

    line-height: 1.15;
  }

  .slide-content p {
    font-size: 12px;

    line-height: 1.5;
  }

  .slide-button {
    padding: 10px 18px;

    font-size: 11px;
  }

  /* ===============================
     ABOUT HERO
  =============================== */

  .about-hero {
    height: 450px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-small {
    font-size: 10px;
  }

  .hero-motto {
    font-size: 14px;
  }

  /* ===============================
     WHO WE ARE
  =============================== */

  .who-we-are {
    padding: 50px 10px;
  }

  .who-description {
    padding: 20px 15px;
  }

  .who-description p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .project-section {
    padding: 65px 20px;
  }

  .project-container {
    width: 92%;

    grid-template-columns: 1fr 1fr;

    gap: 30px;
  }

  .project-image {
    height: 420px;
  }

  .project-content h2 {
    font-size: 30px;
  }

  .project-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
  .project-section {
    width: 100%;
    padding: 50px 15px;
  }

  .project-container {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 30px;
  }

  /* Image first on mobile */

  .project-image {
    order: 1;

    width: 100%;
    height: 380px;

    border-radius: 12px;
  }

  /* Content second on mobile */

  .project-content {
    order: 2;

    width: 100%;
  }

  /* Make reverse projects also image first
     on mobile */

  .project-reverse .project-image {
    order: 1;
  }

  .project-reverse .project-content {
    order: 2;
  }

  .project-label {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .project-content h2 {
    margin-bottom: 15px;

    font-size: 27px;
    line-height: 1.3;
  }

  .project-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .project-highlight {
    margin-top: 20px;
    padding: 18px 20px;
  }

  .project-highlight strong {
    font-size: 17px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {
  .project-section {
    padding: 40px 12px;
  }

  .project-image {
    height: 320px;
  }

  .project-content h2 {
    font-size: 24px;
  }

  .project-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .project-highlight {
    padding: 16px 18px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .rotary-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-join-header h2 {
    font-size: 36px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .why-join-rotary {
    padding: 55px 15px;
  }

  .why-join-container {
    width: 100%;
  }

  .why-join-header {
    margin-bottom: 35px;
  }

  .why-join-header h2 {
    font-size: 30px;
  }

  .why-join-header p {
    font-size: 15px;
  }

  .rotary-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-card {
    padding: 25px 20px;
  }

  .benefit-card h3 {
    font-size: 19px;
  }

  .rotary-action {
    margin-top: 35px;
    padding: 35px 20px;
  }

  .rotary-action h3 {
    font-size: 25px;
  }

  .rotary-action p {
    font-size: 15px;
  }
}
/* contact page mobile responsiveness */
/* ==========================================
   TABLET
========================================== */

@media screen and (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .contact-info {
    max-width: 700px;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media screen and (max-width: 600px) {
  .contact-section {
    padding: 55px 18px;
  }

  .contact-header {
    margin-bottom: 35px;
  }

  .contact-header h2 {
    font-size: 32px;
  }

  .contact-header p {
    font-size: 14px;
  }

  .contact-wrapper {
    gap: 35px;
  }

  .contact-intro {
    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 30px;
  }

  .contact-item {
    margin-bottom: 30px;
  }

  .contact-item h4 {
    font-size: 19px;
  }

  .contact-address strong {
    font-size: 16px;
  }

  .contact-address address {
    font-size: 14px;
  }

  .contact-form-box {
    padding: 25px 20px;

    border-radius: 10px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group input {
    height: 48px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  .contact-submit {
    width: 100%;
  }
}
