body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}

/*  SOCIAL MEDIA STICKY LINKS STARTS */



.icon-bar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000; /* Adjust as needed */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-bar a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  border-radius: 0; /* Square shape */
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-bar a:hover {
  background-color: #000;
  transform: scale(1.1);
}

.facebook {
  background: #3B5998;
}

.twitter {
  background: #55ACEE;
}

.google {
  background: #dd4b39;
}

.linkedin {
  background: #007bb5;
}

.youtube {
  background: #bb0000;
}

.phone{
  background: green;
}

/* Mobile design */
@media (max-width: 768px) {
  .icon-bar a {
    padding: 8px;
    font-size: 16px;
    width: 40px;
    height: 40px;
  }

  .icon-bar {
    gap: 8px;
  }
}

/* Desktop design */
@media (min-width: 769px) {
  .icon-bar a {
    padding: 12px;
    font-size: 20px;
    width: 50px;
    height: 50px;
  }

  .icon-bar {
    gap: 10px;
  }
}








/*  SOCIAL MEDIA STICKY LINKS ENDS */

/*  NAVNAR STARTS */


/* Navbar styling */
.navbar {
  background-color: #ffffff; /* White background */
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: none; /* Remove shadow */
}

.navbar .navbar-brand img {
  max-height: 50px;
}

.navbar-nav .nav-link {
  color: #000000; /* Bold dark black color for links */
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  text-decoration: none; /* Remove default underline */
  font-weight: bold; /* Make the link text bold */
  position: relative; /* For positioning the pseudo-element */
  transition: color 0.3s;
}

/* Add red color and underline on hover */
.navbar-nav .nav-link:hover {
  color: red; /* Red color on hover */
}

.navbar-nav .nav-link:hover::after {
  content: '';
  display: block;
  width: 100%; /* Full width underline */
  height: 2px; /* Thickness of the underline */
  background: red; /* Red underline color */
  position: absolute;
  bottom: -5px; /* Position it below the text */
  left: 0;
  transition: width 0.3s; /* Smooth transition for underline */
}

/* Active link styling */
.navbar-nav .nav-link.active {
  color: red; /* Red color for active link */
}

/* Remove additional underline effects */
.navbar-nav .nav-link::after {
  display: none; /* Ensure no underline by default */
}


/* NAVBAR ENDS */




/* CAROUSAL STARTS */

/* Carousel container */
.carousel {
  position: relative;
  height: 50vh; /* Adjust height as a percentage of the viewport height */
  overflow: hidden;
}

/* Carousel inner */
.carousel-inner {
  height: 100%; /* Make inner container fill the height of the carousel */
}

/* Carousel item */
.carousel-item {
  height: 100%; /* Make each item fill the height of the inner container */
}

/* Ensure the images fit properly */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the carousel area without stretching */
}

/* Responsive height adjustments */
@media (max-width: 767px) {
  .carousel {
    height: 40vh; /* Reduce height for smaller screens */
  }
}

@media (max-width: 575px) {
  .carousel {
    height: 30vh; /* Further reduce height for extra small screens */
  }
}

.carousel-fade .carousel-item {
    transition: opacity 2s ease-in-out;
  }

  /* CAROUSAL ENDS */


/* SECTION STARTS */

/* SECTION 1 STARTS */

.tz-instruction-style-5 {
    padding: 60px 0;
    background-color: rgb(246, 246, 246);
}

.tz-institution {
    background-color: rgb(246, 246, 246);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tz-institution a {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.tz-institution a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.tz-institution strong {
    display: block;
    font-size: 18px;
    color: #333;
    margin: 20px 0;
    line-height: 1.6;
}

.btn-click a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-click a:hover {
    background-color: red;
    color: white;
}

/*  SECTION 1 ENDS */

/* SECTION 2 STARTS  */
/* Container */
.tz-university-english .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Director section */
.tz-university-one {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.tz-university-one h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.tz-university-one p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.tz-item-more-details-style-2 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.tz-item-more-details-style-2:hover {
    background-color: red;
    color: white;
}

.tz-item-more-details-style-2 i {
    margin-right: 5px;
}

/* Course services section */
.tz-cource-services-styele-3 {
    padding: 20px;
}

.tz-cource-services-styele-3 .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tz-cource-services-styele-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.tz-cource-services-styele-3 li {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

.tz-cource-services-styele-3 .tz-background-color-1 {
    background-color: #ffeb3b;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.tz-cource-services-styele-3 .tz-background-color-2 {
    background-color: #4caf50;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.tz-cource-services-styele-3 .tz-background-color-3 {
    background-color: #2196f3;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.tz-cource-services-styele-3 .tz-background-color-4 {
    background-color: #f44336;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.tz-cource-services-styele-3 .tz-background-color-1:hover,
.tz-cource-services-styele-3 .tz-background-color-2:hover,
.tz-cource-services-styele-3 .tz-background-color-3:hover,
.tz-cource-services-styele-3 .tz-background-color-4:hover {
    background-color: #ddd;
}

.tz-cource-services-styele-3 a {
    text-decoration: none;
    color: inherit;
}

.tz-cource-services-styele-3 i {
    font-size: 24px;
    margin-bottom: 10px;
}

.tz-cource-services-styele-3 span {
    display: block;
    font-size: 16px;
    margin-top: 5px;
}

/* SECTION 2 ENDS */


/* SECTION 3 STARTS */

.service-wrapper {
    padding: 87px 0 82px 0;
    background-color: lightblue;
    color: black;
  }
  .service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
  }
  .service-item:last-child {
    border-bottom: none;
  }
  .service-media img {
    margin-right: 30px;
  }
  .service-title {
    font-size: 21px;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 12px;
  }
  .service-content {
    font-size: 16px;
    text-transform: none;
  }
  .read-more {
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    color: #007bff;
    text-decoration: none;
  }
  .read-more:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .service-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .service-media img {
      margin-bottom: 20px;
      margin-right: 0;
    }
  }
  
  /* SECTION 3 ENDS */
  
  /* SECTION 4 START */
  
  
  
  .courses-wrapper {
    padding: 40px 0;
    background-color: #f8f9fa;
  }
  
  .text-center img {
    max-width: 76px;
    margin-bottom: 15px;
  }
  
  .text-center h2 {
    font-size: 28px;
    color: #2c2c2c;
    margin-bottom: 20px;
  }
  
  .courses-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 20px;
  }
  
  .course-item {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-right: 20px;
    transition: transform 0.3s ease;
  }
  
  .course-item:hover {
    transform: translateY(-10px);
  }
  
  .course-thumbnail img {
    width: 100%;
    height: auto;
  }
  
  .course-title {
    font-size: 18px;
    color: #333;
    padding: 15px;
    text-align: center;
  }
  
  .course-title a {
    text-decoration: none;
    color: inherit;
  }
  
  .course-info {
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 10px 15px;
  }
  
  .course-info i {
    margin-right: 5px;
  }
  
  .read-more {
    display: block;
    text-align: center;
    padding: 10px 0;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
  }
  
  .read-more i {
    margin-left: 5px;
  }
  
  @media (max-width: 767px) {
    .text-center h2 {
      font-size: 24px;
    }
  
    .course-item {
      max-width: 100%;
      margin-right: 15px;
    }
  }
  
  /* SECTION 4 ENDS */
  
  /* SECTION 5 STARTS  */
  
  .teacher-section {
    position: relative;
    padding: 50px 0;
    background-color: lightblue;
    overflow: hidden;
  }
  .teacher-section .container {
    position: relative;
    z-index: 2;
  }
  .teacher-section .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://goodlayers.b-cdn.net/kingster/kindergarten/wp-content/uploads/2019/06/teacher-bg.jpg")
      no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
  }
  .teacher-section .teacher-title img {
    max-width: 100px;
    margin-bottom: 20px;
  }
  .teacher-section h3 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 40px;
  }
  .teacher-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 15px;
    margin-bottom: 30px;
  }
  .teacher-item img {
    border-radius: 50%;
    max-width: 100%;
    height: auto;
  }
  .teacher-item .social-icons a {
    font-size: 18px;
    color: #ff8c24;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .teacher-item .social-icons a:hover {
    color: #333;
  }
  .teacher-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .teacher-item .position {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
  }
  .btn-view-all {
    padding: 12px 24px;
    border-radius: 3px;
    background-color: #dc3c3a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
  }
  .btn-view-all:hover {
    background-color: #b02d27;
  }
  @media (max-width: 768px) {
    .teacher-item {
      margin-bottom: 20px;
    }
  }
  
  /* SECTION 5 ENDS */
  
  /* SECTION 6 STARTS  */
  
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  .testimonial {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-image: radial-gradient(
        at 40% 20%,
        rgb(255, 184, 122) 0px,
        transparent 50%
      ),
      radial-gradient(at 80% 0%, rgb(31, 221, 255) 0px, transparent 50%),
      radial-gradient(at 0% 50%, rgb(255, 219, 222) 0px, transparent 50%),
      radial-gradient(at 80% 50%, rgb(255, 133, 173) 0px, transparent 50%),
      radial-gradient(at 0% 100%, rgb(255, 181, 138) 0px, transparent 50%),
      radial-gradient(at 80% 100%, rgb(107, 102, 255) 0px, transparent 50%),
      radial-gradient(at 0% 0%, rgb(255, 133, 167) 0px, transparent 50%);
    background-repeat: no-repeat;
    
  }
  
  main {
    width: 800px;
  }
  
  main h1 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 50px;
  }
  main h4 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 30px;
  }
  
  .slide-row {
    display: flex;
    width: 3200px;
    transition: 0.5s;
  }
  
  .slide-col {
    position: relative;
    width: 800px;
    height: 400px;
  }
  
  .hero {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }
  
  .hero img {
    height: 100%;
    border-radius: 10px;
    width: 320px;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
  }
  
  .content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 270px;
    color: #4d4352;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border-radius: 10px;
    padding: 45px;
    z-index: 2;
    user-select: none;
  }
  
  .content p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
  }
  
  .content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 35px;
    color: #4d4352;
  }
  
  .indicator {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
  }
  
  .indicator .btn {
    display: inline-block;
    height: 15px;
    width: 15px;
    margin: 4px;
    border-radius: 15px;
    background: #fff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
  }
  
  .btn.active {
    width: 30px;
  }
  
  .slider {
    width: 100%;
    overflow: hidden;
  }
  
  @media (max-width: 850px) {
    main {
      width: 500px;
    }
  
    .slide-row {
      width: 2000px;
    }
  
    .slide-col {
      width: 500px;
      height: 250px;
    }
  
    .hero img {
      width: 200px;
    }
  
    .content {
      width: 320px;
      height: 200px;
      padding: 20px;
    }
  
    .content p {
      font-size: 0.9rem;
    }
  
    .content h2 {
      font-size: 1.2rem;
      margin-top: 20px;
    }
  }
  
  @media (max-width: 550px) {
    main {
      width: 300px;
    }
  
    .slide-row {
      width: 1200px;
    }
  
    .slide-col {
      width: 500px;
      height: 300px;
    }
  
    .hero {
      top: 60%;
      height: 100px;
      z-index: 5;
    }
  
    .hero img {
      width: 100px;
    }
  
    .content {
      width: 300px;
    }
  }
  
  /* SECTION 6 ENDS */
  
  
  
  
  
  /* SECTION 7 STARTS  */
  
  .enroll-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
  }
  .enroll-section h2 {
    font-size: 36px;
    color: #ff6f61;
    margin-bottom: 10px;
  }
  .enroll-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
  }
  .enroll-section .wgl-button {
    background-color: #ff6f61;
    color: white;
    border-radius: 25px;
    padding: 10px 30px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  .enroll-section .wgl-button:hover {
    background-color: #ff9478;
  }
  .cute-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .cute-images img {
    border-radius: 50%;
    margin: 10px;
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  @media (max-width: 768px) {
    .enroll-section {
        padding: 30px 10px;
    }
    .enroll-section h2 {
        font-size: 28px;
    }
    .enroll-section h3 {
        font-size: 20px;
    }
    .cute-images img {
        width: 80px;
        height: 80px;
        margin: 5px;
    }
  }
  
  /* SECTION 7 ENDS */
  

/* FOOTER START */

.footer-top {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 50px 0;
  font-size: 14px;
}

.footer-top .widget {
  margin-bottom: 30px;
}

.footer-top .widget_about .logo-footer img {
  max-width: 100%;
}

.footer-top p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-top .widget_about {
  text-align: left;
}

.footer-top .widget_about h4,
.footer-top .widget_services h4,
.footer-top .widget_getintuch h4,
.footer-top .widget_gallery h4 {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ecf0f1;
}

.footer-top .widget_about b {
  font-size: 16px;
  color: #ecf0f1;
}

.footer-top .dez-social-icon {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin-left: -9px;
}

.footer-top .dez-social-icon li {
  display: inline-block;
}

.footer-top .dez-social-icon li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #ecf0f1;
  color: #ecf0f1;
  font-size: 16px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.footer-top .dez-social-icon li a:hover {
  background-color: #ecf0f1;
  color: #2c3e50;
}

.footer-top .widget_services ul,
.footer-top .widget_getintuch ul {
  padding-left: 0;
  list-style: none;
}

.footer-top .widget_services ul li,
.footer-top .widget_getintuch ul li {
  margin-bottom: 10px;
}

.footer-top .widget_services ul li a,
.footer-top .widget_getintuch ul li a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-top .widget_services ul li a:hover,
.footer-top .widget_getintuch ul li a:hover {
  color: #3498db;
}

.footer-top .widget_gallery iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

.footer-top .widget_gallery img {
  max-width: 50px;
  margin-right: 10px;
}

/* Flexbox adjustments */
.footer-top .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-top .col-lg-3,
.footer-top .col-md-6,
.footer-top .col-sm-6 {
  flex: 1;
  padding: 15px;
  min-width: 250px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-top .col-lg-3 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .footer-top .col-lg-3 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.footer-bottom {
  background-color: white;
  color: black;
  padding: 15px 0;
  font-size: 14px;
  text-align: center;
}

.footer-bottom span {
  display: block;
}

.footer-bottom a {
  color: black;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}



/* FOOTER ENDS */


/*  GALLERY SECTION STARTS */

.portfolio {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding-top: 30px;
}

/* GALLERY SECTION ENDS */


/* COMNTACT US SECTIONS */

.Contact-Us {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding-top: 30px;
}

/* COMNTACT US SECTIONS ENDS */

/* ABOUT US SECTION STARTS */

.About-Section {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding-top: 30px;
}


/* COMNTACT US PAGE STARTS */

.contact-us {
    padding: 50px 0;
}

.contact-us h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group label {
    font-weight: bold;
}

.contact-form .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.2rem;
}

.contact-info {
    background: #007bff;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info .map-container {
    margin-top: 20px;
}

.contact-info iframe {
    border-radius: 8px;
}

@media (max-width: 768px) {

    .contact-form,
    .contact-info {
        margin-bottom: 20px;
    }
}

/* COMNTACT US PAGE ENDS */






/* ABOUT SECTION MID STARTS */


/* Demo Code: */
.projcard-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.projcard {
    width: calc(50% - 20px); /* Adjust width for smaller screens */
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    /* Make card smaller */
    padding: 10px;
}

.projcard:hover {
    transform: translateY(-5px);
}

.projcard-innerbox {
    position: relative;
    overflow: hidden;
}

.projcard-img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.projcard-textbox {
    padding: 10px;
}

.projcard-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.projcard-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.projcard-description {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

.projcard-tagbox {
    margin-top: 10px;
}

.projcard-tag {
    display: inline-block;
    padding: 3px 8px;
    background-color: #f0f0f0;
    color: #333;
    font-size: 10px;
    margin-right: 3px;
    margin-bottom: 3px;
    border-radius: 3px;
}



/* ABOUT SECTION MID ENDS */


/* READ MORE SECTION STARTS HERE */
.readmore-section-starts {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.readmore-section-starts p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .readmore-section-starts {
        padding: 30px;
    }
}

.director-section {
    margin: 10px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.director-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.director-section p {
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .director-section {
        padding: 30px;
    }
}


/* READ MORE SECTION ENDS HERE */
