/*Section 1*/

body{
  margin:0;

 font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
 
}
body p{
  font-size: 18px !important;
  color: #444;
  line-height: 1.6;
}

/* Navbar */
.navbar-custom{
  //position:absolute;
  //top:40px;
  left:50%;
  transform:translateX(-50%);
  width:90%;
  background:#fff;
  border-radius:50px;
  padding:10px 20px;
  z-index:999;
  margin: 30px 0px;
  
}

.logo{
  font-weight:bold;
  color:green;
}

.nav-link{color:#000 !important; margin:0 5px;}

.btn-contact{
  background:#000;
  color:#fff;
  border-radius:30px;
  padding:8px 20px;
}

/* Hero */
.hero{
  position:relative;
}

.hero-text{
  position:absolute;
  top:50%;
  left:10%;
  transform:translateY(-50%);
  color:#fff;
  max-width:500px;
  z-index:10;
}

.hero-text h1{
  font-size:48px;
  font-weight:700;
}

.hero-text .btn{
  margin-top:20px;
  border-radius:30px;
}

.owl-carousel img{
  height:100vh;
  object-fit:cover;
}

/* Dropdown submenu */
.dropdown-menu .submenu{
  display:none;
  position:absolute;
  left:100%;
  top:50%;
}

.dropdown-menu > li:hover > .submenu{
  display:block;
}

/* Responsive */
@media(max-width:768px){
  .hero-text h1{font-size:28px;}
  .navbar-custom{flex-direction:column;}
}


/*Section 2*/
:root{
  --text:#444;
  --muted:#777;
}

/* ===== Section ===== */
.about-section{
  background:#efefef;
  padding:90px 0;
}

/* ===== Heading ===== */
.about-subtitle{
  text-align:center;
  color:#666;
  font-size:22px;
  margin-bottom:8px;
}

.about-title{
  text-align:center;
  font-size:48px;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:60px;
}

/* ===== Flex Layout ===== */
.about-flex{
  display:flex;
  gap:60px;
  align-items:center;
}

/* Image */
.about-img{
  flex:1;
}

.about-img img{
  width:100%;
  border-radius:28px;
  display:block;
}

/* Content */
.about-content{
  flex:1;
  color:var(--text);
  font-size:20px;
  line-height:1.9;
}

/* ===== Responsive ===== */
@media (max-width: 991px){
  .about-flex{
    flex-direction:column;
    gap:40px;
  }

  .about-title{
    font-size:36px;
  }

  .about-content{
    font-size:18px;
    text-align:center;
  }
}



/*Section 3*/
:root{
  --text:#333;
  --muted:#777;
}

/* ===== Section ===== */
.services-section{
  background:#efefef;
  padding:90px 0;
}

/* ===== Heading ===== */
.services-subtitle{
  text-align:center;
  font-size:22px;
  color:#666;
  margin-bottom:10px;
}

.services-title{
  text-align:center;
  font-size:48px;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:70px;
}

/* ===== Grid Flex ===== */
.services-grid{
  display:flex;
  flex-wrap:wrap;
  gap:60px;
}

/* ===== Card ===== */
.service-card{
  flex:1 1 calc(50% - 60px);
  display:flex;
  flex-direction:column;
}

.service-img{
  border-radius:28px;
  overflow:hidden;
  margin-bottom:24px;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.service-card:hover img{
  transform:scale(1.05);
}

.service-title{
  font-size:26px;
  font-weight:600;
  margin-bottom:14px;
  color:var(--text);
}

.service-text{
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
  margin-bottom:24px;
}

/* Button */
.btn-outline-dark{
  border-radius:40px;
  padding:10px 22px;
  width:max-content;
}

.btn-outline-dark i{
  transition:transform .3s ease;
}

.btn-outline-dark:hover i{
  transform:translateX(6px);
}

/* ===== Responsive ===== */
@media (max-width:991px){
  .service-card{
    flex:1 1 100%;
  }

  .services-title{
    font-size:36px;
  }

  .service-text{
    font-size:16px;
  }
}


/*Section 4*/

/*body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    .section {
      background: url('../images/green-court.jpg') no-repeat center/cover;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 40px 20px;
      color: #fff;
    }

    .overlay {
      background: rgba(0, 80, 0, 0.7);
      padding: 40px;
      border-radius: 20px;
      width: 100%;
    }
*/
    .left-content {
      position: relative;
    }

    .racket-img {
      max-width: 100%;
      opacity: 0.4;
    }

    .text-overlay {
      position: relative;
      top: 20%;
      left: 10%;
    }

    .text-overlay h1 {
      font-weight: bold;
      font-size: 2.5rem;
    }

    .btn-custom {
      border: 2px solid #fff;
      color: #fff;
      border-radius: 50px;
      padding: 10px 20px;
      margin-top: 20px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .service-box {
      background: #b4d455;
      border-radius: 50px;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      color: #000;
      font-weight: 500;
      font-size: 22px;
    }

    .service-box img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
    }

    @media (max-width: 768px) {
      .text-overlay {
        position: static;
        margin-top: 20px;
      }
    }

/*Section 5*/
 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    .testimonial-section {
      background-color: #d9dfd8;
      padding: 80px 20px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .testimonial-container {
      max-width: 900px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }

    .subtitle {
      font-size: 18px;
      color: #333;
    }

    .title {
      font-size: 42px;
      font-weight: 500;
      line-height: 1.3;
      color: #000;
    }

    .quote {
      font-size: 26px;
      font-weight: 500;
      margin-top: 20px;
      color: #111;
    }

    .description {
      font-size: 18px;
      color: #555;
      max-width: 700px;
    }

    .author {
      margin-top: 30px;
      font-size: 22px;
      font-weight: 500;
      color: #000;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .title {
        font-size: 30px;
      }

      .quote {
        font-size: 20px;
      }

      .description {
        font-size: 16px;
      }

      .author {
        font-size: 18px;
      }
    }




/*Section 6*/
body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #e9e9e9;
    }

    .gallery-section {
      padding: 80px 20px;
      text-align: center;
    }

    .gallery-subtitle {
      font-size: 18px;
      color: #555;
      margin-bottom: 5px;
    }

    .gallery-title {
      font-size: 40px;
      font-weight: 600;
      margin-bottom: 50px;
    }

    .gallery-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 20px;
      flex: 1 1 calc(30% - 20px);
      max-width: calc(30% - 20px);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    /* Custom sizes to mimic layout */
    .wide {
      flex: 1 1 calc(40% - 20px);
      max-width: calc(40% - 20px);
    }

    .tall img {
      height: 100%;
      min-height: 300px;
    }

    .small img {
      min-height: 180px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .gallery-item,
      .wide {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 576px) {
      .gallery-item,
      .wide {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }



/*Section 7*/

 body {
      margin: 0;
      background: #f2f2f2;
      font-family: 'Segoe UI', sans-serif;
    }

    .stats-section {
      background: #f2f2f2;
      padding: 60px 20px;
    }

    .stats-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .stat-card {
      flex: 1 1 220px;
      text-align: center;
      padding: 20px;
      border-radius: 10px;
      transition: 0.3s;
    }

    .stat-card:hover {
      background: #ffffff;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transform: translateY(-5px);
    }

    .stat-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
    }

    .stat-number {
      font-size: 40px;
      font-weight: bold;
      color: #b34700;
    }

    .stat-title {
      font-size: 20px;
      font-weight: 600;
      margin-top: 10px;
    }

    .stat-desc {
      font-size: 15px;
      color: #666;
      margin-top: 8px;
      line-height: 1.5;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .stat-number {
        font-size: 32px;
      }
    }


/* Section 8*/
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* CTA Section */
.cta-section {
  background: #f2f2f2;
  padding: 60px 20px 0;
}

.cta-box {
  background: #c40000;
  border-radius: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  overflow: hidden;
  position: relative;
}

.cta-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-btn {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
  color: #c40000;
}

.cta-img {
  max-width: 350px;
}

/* Footer */
/* Footer */
footer {
  background: #e5e5e5;
   background:  #dfe4e1;
 
  color: #000;
  padding: 40px 20px 30px;
}
footer p{

  color: #000;
}

footer .copy{

 font-size: 14px;
}
.footer .logo-box {
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  display: inline-block;
  margin-bottom: 15px;
}

footer h5 {
  margin-bottom: 40px;
}

.footer p {
  color: #ccc;
  font-size: 14px;
}

.contact i {
  margin-right: 10px;
  color: orange;
  font-size: 40px;
}

.social i {
  font-size: 40px;
  margin-right: 15px;
  cursor: pointer;
}


footer .fa-brands {
  font-size: 30px;
  margin-right: 15px;
  cursor: pointer;
}
footer .fa-solid {
  font-size: 30px;
  margin-right: 15px;
  cursor: pointer;
 color: #c40000;
}
footer .form-control  
{
  width: 40%;
}
footer a {
  color: #000;
text-decoration: none;
}
footer a:hover {
  color:  #000;
  text-decoration: none;
}
.subscribe input {
  padding: 10px;
  border: none;
  width: 60%;
}
footer .logo {
  margin-left: -15px !important;
}
.subscribe button {
  padding: 10px 20px;
  background: #c40000;
  color: #fff;
  border: none;
}

.bottom-bar {
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Responsive */
@media(max-width: 768px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-img {
    margin-top: 20px;
  }

  .bottom-bar {
    text-align: center;
    gap: 10px;
    justify-content: center;
  }
}
.navbar-nav a {
  font-size: 14px;
}

/*End to end css*/

/* SECTION */
.services-end {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* FLEX GRID */
.services-end-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

/* CARD */
.services-end-card {
  flex: 1 1 calc(25% - 25px);
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
  position: relative;
}

.services-end-card:hover {
  transform: translateY(-10px);
}

/* ICON */
.service-icon {
  font-size: 35px;
  color: #28a745;
  margin-bottom: 15px;
}

/* IMAGE */
.services-end-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* TEXT */
.services-end-card h5 {
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 992px){
.services-end-card {
    flex: 1 1 calc(50% - 25px);
  }
}

@media(max-width: 576px){
.services-end-card {
    flex: 1 1 100%;
  }
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* HERO */
 .hero {
      background: url('../images/media.jpg') center/cover no-repeat;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      background: rgba(0,0,0,0.5);
      padding: 15px 30px;
      border-radius: 10px;
    }

/* SECTION */
.section {
  padding: 60px 0;
}

/* FLEX */
.flex-row-custom {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

/* IMAGE */
.profile-img {
  flex: 1;
}

.profile-img img {
  width: 100%;
  border-radius: 15px;
}

/* CONTENT */
.profile-content {
  flex: 1;
}

.profile-content h2 {
  font-weight: 600;
}

/* SERVICES */
.services-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.service-card {
  flex: 1 1 calc(33.33% - 25px);
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 35px;
  color: #28a745;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .service-card {
    flex: 1 1 calc(50% - 25px);
  }
  .flex-row-custom {
   flex-direction: column;
  }
}

@media(max-width:576px){
  .service-card {
    flex: 1 1 100%;
  }
}

/* EVENTS */
.events {
  padding: 60px 0;
}

.event-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.event-card {
  flex: 1 1 calc(24% - 25px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-content {
  padding: 15px;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width:992px){
  .service-card,
  .event-card {
    flex: 1 1 calc(50% - 25px);
  }
}

@media(max-width:576px){
  .service-card,
  .event-card {
    flex: 1 1 100%;
  }
}

.active-nav {
  border-bottom: 1px solid red;
}
