body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
html{
    scroll-behavior: smooth;
}
  
  /* HEADER */
  .header {
    background-color: #fff; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 5px;
  }
  
  .header .container-fluid {
    gap: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
  }
  
  .logo h1 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
    font-weight: bold;
  }

  .logo img{
    width: 150px;
  }
  
  .navmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin: 10px;
  }
  
  .navmenu ul li {
    margin: 0 15px;
  }
  
  .navmenu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .navmenu ul li a.active,
  .navmenu ul li a:hover {
    color:blue; 
  }
  
  .header-right {
    display: flex;
    align-items: center;
  }
  
  .btn-getstarted {
    font-weight: 500;
    font-size: 18px;
    padding: 8px;
    border-radius: 10px;
    transition: 0.4s;
    text-decoration: none;
    border: 1px solid rgb(237, 14, 14);
    background-color: red;
    color:#fff;
    margin-right: 10px;
    text-align: center;
  }
  
  .btn-getstarted:hover {
    background-color: #0755fc;
  }
  
  .mobile-nav-toggle {
    background: none;
    font-size: 1.5rem;
    color:blue;
    cursor: pointer;
  }


  @media (max-width: 320px) {
    .header {
      padding: 6px;
    }
  
    .logo h1 {
      font-size: 1.5rem;
    }
  
    .navmenu {
      display: none;
    }
  
    .navmenu ul {
      flex-direction: column;
      text-align: center;
    }
  
    .navmenu ul li {
      margin: 10px 0;
    }
  
    .mobile-nav-toggle {
      display: block;
    }
  
    .navmenu.show {
      display: flex;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background-color: #fff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }
  }
  
@media (max-width: 576px){
  .header {
    padding: 8px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .navmenu {
    display: none;
  }

  .navmenu ul {
    flex-direction: column;
    text-align: center;
  }

  .navmenu ul li {
    margin: 10px 0;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .navmenu.show {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .header {
    padding: 10px;
  }

  .logo h1 {
    font-size: 1.8rem;
  }

  .navmenu ul {
    flex-direction: column; 
    text-align: center; 
  }

  .navmenu ul li {
    margin: 10px 0;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    display: none;
  }

  .navmenu.show {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .header {
    padding: 15px 20px;
  }

  .logo h1 {
    font-size: 2rem;
  }

  .navmenu ul {
    justify-content: column;
    text-align: center;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    display:none;
  }

  .navmenu.show {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }

}

@media (min-width: 993px) {
  .header {
    padding: 5px;
  }

  .logo h1 {
    font-size: 2.2rem;
  }

  .navmenu ul {
    justify-content: flex-end;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .navmenu {
    display: flex !important;
  }

}

/* HERO */
.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 2;
}
  .hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero:before {
    
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .hero .container {
    position: relative;
    z-index: 3;
  }
  
  .hero h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    
  }
  
  .hero p {
    color:#fff;
    margin: 10px 0 0 0;
    font-size: 24px;
    
  }
  
  .hero .btn-get-started {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: 0.4s;
    text-decoration: none;
    margin-top: 30px;
    border: 2px solid rgb(237, 14, 14);
    background-color: red;
    color:#fff;
    text-align: center;
  }
  
  .hero .btn-get-started a{
    text-decoration: none;
  }
  .hero .btn-get-started:hover {
    background-color:rgb(241, 44, 44);
  }
  
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 30px;
    }
  
    .hero p {
      font-size: 18px;
    }
  }
  @media (max-width:520px){
    .hero{
      padding: 10px;
    }
    .hero h2{
      font-size: 26px;
    }
    .hero p{
      font-size: 16px;
    }
  }

  /**** ABOUT INDEX *****/
.about {
    padding: 60px 20px;
    background-color: #f4f4f9;
  }
  
  .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .about-text {
    flex: 1;
    text-align: left;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .icon-list {
    list-style: none;
    padding: 10;
    align-items: center;
  }
  
  .icon-list li {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .icon-list i {
    color: #2248d2;
    margin-right: 10px;
    font-size: 1.5rem;
  }
  
  .about-image {
    flex: 1;
    text-align: center;
  }
  
  .about-image img {
    width: 100%;
    max-width: 800px;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    animation: amoebaShape 3s infinite alternate ease-in-out;
  }

  @keyframes amoebaShape {
    0% {
      border-radius: 20%; 
    }
    25% {
      border-radius: 50% 30% 50% 70%; 
    }
    50% {
      border-radius: 60% 40% 30% 50%; 
    }
    75% {
      border-radius: 30% 50% 60% 40%; 
    }
    100% {
      border-radius: 50% 70% 60% 30%; 
    }
  }
  
  .about-button button{
    font-size: 15px;
    margin: 15px;
    padding: 15px;
    background-color: red;
    border: 1px;
    border-radius: 10px;
    color: white;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text {
      text-align: center;
    }
  
    .about-image img {
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .about-text h2 {
      font-size: 1.8rem;
    }
  
    .about-text p {
      font-size: 1rem;
    }
  
    .icon-list li {
      font-size: 0.9rem;
    }
  }
  
  /* Image Animation */
  @keyframes slideIn {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /****** COURSES INDEX ******/
  #courses {
    padding: 60px 20px;
    background-color: #f8f9fa;
  }
  
  #courses h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #34495e;
    margin-bottom: 40px;
  }
  
  .course-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
  }
  
  .course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .course-card h5 {
    font-size: 1.25rem;
    color: #111;
    margin-bottom: 10px;
  }
  
  .course-card p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .course-card button {
    align-self: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    border: none;
    border-radius: 5px;
    background-color: rgb(240, 52, 52);
    color: white;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .course-card button:hover {
    background-color: #0056b3;
  }
  
  /* Responsive Grid Layout */
  #courses .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  @media (max-width: 768px) {
    #courses h2 {
      font-size: 2rem;
    }
  
    .course-card {
      padding: 15px;
    }
  
    .course-card h5 {
      font-size: 1.1rem;
    }
  
    .course-card p {
      font-size: 0.85rem;
    }
  
    .course-card button {
      font-size: 0.85rem;
      padding: 8px 16px;
    }
  }
  
  /* Mobile View */
  @media (max-width: 480px) {
    #courses h2 {
      font-size: 1.75rem;
      margin-bottom: 30px;
    }
  
    .course-card {
      padding: 10px;
    }
  
    .course-card h5 {
      font-size: 1rem;
    }
  
    .course-card p {
      font-size: 0.8rem;
    }
  
    .course-card button {
      font-size: 0.8rem;
      padding: 6px 12px;
    }
  }


  /****** DEMO CLASS *******/
  #academy-specialties {
    background-color: #f9f9f9;
    padding: 50px 0;
  }
  
  .academy-specialties .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .academy-specialties h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }
  
  .academy-specialties p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom:10px;
  }
  
  .academy-specialties .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .academy-specialties .col-md-6 {
    flex: 1;
  }

  .academy-specialties a{
    background-color: rgb(244, 23, 23);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    
  }
  
  .image-container {
    text-align: center;
  }
  
  .academy-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    .academy-specialties .row {
      flex-direction: column;
      text-align: center;
    }
  
    .academy-specialties .col-md-6 {
      margin-bottom: 20px;
    }
  }

/*ABOUT-US SECTION*/
.about-section {
  padding: 40px 0; 
  background-color: #f8f9fa;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.about-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 600;
  color:#004080;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #34495e;
  margin-bottom: 20px;
}

.about-img {
  width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.about-img-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .about-title {
    font-size: 1.4rem;
  }

  .about-heading {
    font-size: 2.2rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .about-container {
    padding: 0 10px;
  }

  .about-img-container {
    flex-direction: column;
    align-items: center;
  }

  .about-img {
    width: 80%; 
  }
}

@media (max-width: 768px) {
  .about-container {
    text-align: center;
  }

  .about-title {
    font-size: 1.3rem;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .about-img {
    margin-bottom: 20px;
    width: 80%;
  }

  .row {
    flex-direction: column;
  }

  .col-lg-6 {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 1.1rem;
  }

  .about-heading {
    font-size: 1.8rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }

  .about-container {
    padding: 0 5px;
  }
}

/* ABOUT GOAL */
.goal-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.goal-content-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.goal-image {
  width: 50%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.goal-content {
  width: 50%;
}

.goal-title {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 10px;
  font-weight: 600;
}

.goal-description {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .goal-section {
    padding: 30px 15px; 
  }

  .goal-content-wrapper {
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
  }

  .goal-image {
    width: 80%; 
    max-width: 400px; 
    margin-bottom: 20px; 
  }

  .goal-content {
    width: 90%; 
    text-align: center; 
  }

  .goal-title {
    font-size: 1.8rem; 
  }

  .goal-description {
    font-size: 1rem; 
    color: #666; 
  }
}


/* ABOUT_CHOOSE_US */
.feature-icon {
  font-size: 2rem;
  color: #000;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.feature-box:hover .feature-icon {
  color: #e74c3c;
}

.why-us {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
}

.why-us h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: bold;
}

.why-us p {
  text-align: center;
  font-size: 1.2rem;
  color: #375d82;
  margin-bottom: 40px;
  line-height: 1.8;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  grid-auto-rows: 1fr; 
}

.feature-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%; 
  height: auto; 
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.feature-box h3 {
  font-size: 1.5rem;
  color: #1a56cd;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
}

.why-us strong {
  color: #e74c3c;
}

.why-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.features div:nth-child(n+4) {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .why-us h2 {
    font-size: 2rem; 
  }

  .why-us p {
    font-size: 1rem;
  }

  .feature-box {
    padding: 15px; 
    margin-bottom: 20px;
    height: auto; 
  }

  .feature-box h3 {
    font-size: 1.2rem; 
  }

  .feature-box p {
    font-size: 0.9rem; 
  }

  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
  }

  .feature-box {
    max-width: 100%; 
  }

  .feature-icon {
    font-size: 1.5rem; 
  }
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr; 
  }
}


/****************** COURSES  *****************/

/* INTRO TO COURSES */

.courses-introduction {
  background-color: #f4f7f6;
  padding: 40px 0;
}

.courses-introduction .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2a3d52;
  text-align: center;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }
}


/* COURSE DEMO */

.demo-class-section {
  background-color: #f9f9f9;
  padding: 40px 0;
  text-align: center;
  margin-top: 10px;
  font-family: 'Arial', sans-serif;
}

.demo-class-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-content h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}

.sub-heading {
  font-size: 1.4rem;
  color: #666;
  margin: 10px 0;
}

.text-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.benefits-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
  display: inline-block;
  text-align: left;
}

.benefits-list li {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.benefits-list li::before {
  content: "✔";
  color: #007bff;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
}

.demo-class-section .row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Form Section */
.cta-form {
  flex: 1; 
  max-width: 50%;
}

.cta-form h3 {
  font-size: 2rem;
  color: #333;
  font-weight: bold;
}

.cta-form p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-form input,
.cta-form button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.cta-form button {
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}

.cta-form button:hover {
  background-color: #0056b3;
}

.images-section {
  flex: 1; 
  max-width: 50%; 
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.images-section .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .cta-form,
  .images-section {
    max-width: 100%; 
  }
}

@media (max-width: 576px) {
  .cta-form h3,
  .cta-form p {
    text-align: center; 
  }

  .cta-form form {
    gap: 10px; 
  }

  .images-section .image img {
    max-height: 200px; 
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .text-content h2 {
    font-size: 2rem;
  }

  .sub-heading {
    font-size: 1.2rem;
  }

}

@media (max-width: 480px) {
  .text-content h2 {
    font-size: 1.8rem;
  }

  .sub-heading {
    font-size: 1rem;
  }

}

@media (max-width: 768px) {
  .row {
    flex-direction: column; 
  }

  .cta-form,
  .images-section {
    max-width: 100%; 
    margin-bottom: 20px; 
  }

  .images-section .image img {
    max-height: 250px; 
  }
}

@media (max-width: 576px) {
  .cta-form h3,
  .cta-form p {
    text-align: center; 
  }

  .cta-form form {
    gap: 10px; 
  }

  .images-section .image img {
    max-height: 200px; 
  }
}


/* COURSE CATEGORIES */
.course-categories {
  background-color: #fff; 
  padding: 60px 0;
}

.course-categories .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2a3d52;
  text-align: center;
  margin-bottom: 40px;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category-card {
  background-color: #f4f7f6;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.category-title {
  font-size: 1.8rem;
  color: #2a3d52;
  margin-bottom: 10px;
  font-weight: bold;
}

.kg{
  margin-bottom: 20px;
}

.category-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
}

.btn-category {
  display: inline-block;
  
  color: #34495e;
  padding: 10px 20px;
  border-radius: 5px;

  font-weight: bold;
  transition: background-color 0.3s ease;
}


/* Responsive Styling */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .category-description {
    font-size: 1rem;
  }
}


/*************** BLOG ***************/

/* BLOG-SECTION */

#blog-section {
  background-color: #f4f7fa;
  padding: 60px 0;
  font-family: 'Arial', sans-serif;
}

#blog-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

#blog-section p {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card h3 {
  font-size: 1.8rem;
  color: #333;
  padding: 20px;
  font-weight: bold;
}

.blog-card p {
  font-size: 1rem;
  color: #777;
  padding: 0 20px 20px;
}

.blog-card .blog-full {
  display: none;
  font-size: 1rem;
  color: #555;
  padding: 0 20px 20px;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 20px;
  background-color: rgb(242, 45, 45);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #0056b3;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  #blog-section h2 {
    font-size: 2rem;
  }

  #blog-section p {
    font-size: 1rem;
  }

  .blog-cards {
    grid-template-columns: 1fr;
  }
}

/************* CONTACT *************/

/* CONTACT SECTION */

.contact-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  font-family: 'Arial', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-details {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-details h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.info-item span {
  font-size: 2rem;
  color: rgb(251, 50, 50);
  flex-shrink: 0;
}

.info-item h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.info-item p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #555;
}


.contact-form {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.form-group textarea {
  resize: none;
  height: 100px;
}

.submit-btn {
  padding: 12px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: rgb(245, 47, 47);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-details h2 {
    font-size: 1.5rem;
  }

  .info-item {
    padding: 10px;
  }

  .info-item span {
    font-size: 1.8rem;
  }

  .info-item h4 {
    font-size: 1rem;
  }

  .info-item p {
    font-size: 0.9rem;
  }

  .submit-btn {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-details h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .submit-btn {
    width: 100%;
  }
}


/* Footer Styles */

 #footer {
  background-color: #000;
  padding: 40px 0;
  gap: 30px;
}

.footer-top {
  margin-bottom: 40px;
  gap: 20px;
  margin: 10px;
}

.footer-about, .footer-links, .footer-newsletter, .footer-download {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  
}

.footer-about .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.footer-contact {
  padding: 5px;
}

.footer-contact p {
  font-size: 14px;
  color: #fff;
}

.footer-contact strong {
  color: #fff;
}

.social-links a {
  font-size: 18px;
  color: #fff;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #007bff;
}

.footer-links h4,
.footer-newsletter h4, .footer-download h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
}

.footer-newsletter {
  padding: 10px;
  margin-bottom: 5px;
}

.footer-newsletter p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 5px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.newsletter-form input[type="submit"] {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.newsletter-form input[type="submit"]:hover {
  background-color: #0056b3;
}


@media (min-width: 768px) {
  .footer-top .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-about, .footer-links, .footer-newsletter, .footer-download {
    flex: 1;
    padding: 0 20px;
  
  }
}

@media (max-width: 767px) {
  .footer-top .row {
    flex-direction: column;
    align-items: center;
  }

  .footer-about, .footer-links, .footer-newsletter, .footer-download {
    padding: 5px;
    margin-bottom: 30px;
    margin: 40px;
  }

  .footer-about .social-links {
    justify-content: center;
  }

  .footer-newsletter .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input[type="email"] {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .footer-about .logo {
    font-size: 20px;
  }

  .footer-contact p {
    font-size: 12px;
  }

  .footer-links h4,
  .footer-newsletter h4 {
    font-size: 14px;
  }

  .social-links a {
    font-size: 14px;
  }

  .newsletter-form input[type="email"] {
    padding: 8px;
    font-size: 12px;
  }

  .newsletter-form input[type="submit"] {
    padding: 8px 16px;
    font-size: 12px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.copyright {
  color: #fff;
}

.mt-4 {
  margin-top: 1.5rem;
}

.gy-4 {
  margin-bottom: 30px;
}

.mt-3 {
  margin-bottom: 10px;
  
}


/* HERO AREA */

.hero-area {
  width: 100%;
  height: 400px;
  background-image: url('./images/6.jpeg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1; 
}

.page-name{
  font-size: 2.5rem; 
  font-weight: bold;
  z-index: 1;
}

.page-name p{
    font-size: 1.5rem;
    margin-top: 8px; 
    z-index: 1;
    line-height: 1.5; 
    text-align: center;
    margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-area {
    height: 300px; 
  }

  .page-name {
    font-size: 2.5rem; 
  }
}

@media (max-width: 480px) {
  .hero-area {
    height: 250px;
  }

  .page-name {
    font-size: 2rem; 
  }
}


/* WHATSAPP ICON */
.whatsapp-button {
  position: fixed; 
  bottom: 20px;    
  right: 20px;     
  background-color: #25d366; 
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none; 
  z-index: 1000; 
}
.whatsapp-button img{
  width: 100%;
  height: 100%;
}
@media (max-width: 798px) {
  .whatsapp-button {
    width: 50px; 
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-button img{
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 498px) {
  .whatsapp-button {
    width: 40px; 
    height: 40px;
    bottom: 10px; 
    right: 10px;
  }
  .whatsapp-button img{
    width: 100%;
    height: 100%;
  }
}

/* DOWNLOAD BUTTON */
#download-app {
  background-color: #2c3e50;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-container {
  max-width: 800px;
  margin: 0 auto;
}

#download-app h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

#download-app p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.download-buttons {
  display: inline-block;
  margin-top: 20px;
}

.download-buttons a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 10px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-buttons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.download-buttons img {
  width: 40px;
  height: auto;
  margin-right: 10px;
}

.download-buttons h5 {
  font-size: 1rem;
  color: #000;
  margin: 0;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  #download-app h2 {
    font-size: 1.8rem;
  }

  #download-app p {
    font-size: 1rem;
  }

  .download-buttons a {
    padding: 8px 10px;
  }

  .download-buttons img {
    width: 30px;
  }

  .download-buttons h5 {
    font-size: 0.9rem;
  }
}

/* FOOTER APP SECTION */

.footer-download h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  background-color:#000;
  color: #fff;
  border: 1px solid white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.btn-download:hover {
  background-color: #333;
}

.btn-download .play-icon {
  height: 20px;
  margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-download h4 {
    font-size: 1rem;
  }

  .btn-download {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .btn-download .play-icon {
    height: 18px;
  }
}
