@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Josefin Sans", sans-serif;
}
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  font-family: "Josefin Sans", sans-serif;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.logo a img {
    width: 286px;
    height: 100px;
    margin: 15px 0 0;
}
  
.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #9d0202;
}

.nav-links {
  display: flex !important;
  gap: 1.5rem !important;
  align-items: center !important;
}

.nav-link {
  color: #333 !important;
  text-decoration: none !important;
  font-weight: bold !important;
  transition: color 0.3s ease !important;
  position: relative !important;
  padding: 0.5rem 0 !important;
  font-size: 15px !important;
}

.nav-link:hover {
  color: #9d0202;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #9d0202;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}
.buttonssss {
    background-color: #9d0202;
    color: #fff;
    border: 2px solid #9d0202 !important;
    padding: 4px 18px !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 10px;
    font-family: 'Josefin Sans';
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.buttonssss:hover {
  background-color: transparent;
  color: #8b0000;
  cursor: pointer;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  left: 0;
  top: calc(100% + 5px);
  border-top: 3px solid #9d0202;
}

.dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight: 400;
}

.dropdown-content a:hover {
  background-color: #e9ecef;
  color: #9d0202;
}

/* .dropdown-content a:first-child{
  color: #9d0202 !important;
} */

.dropdown:hover .dropdown-content {
  display: block;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar .container {
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-link {
    margin: 1rem 0;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: unset;
    background-color: #f9f9f9;
    border-top: none;
    padding: 10px 0;
  }

  .dropdown-content a {
    padding: 10px 20px;
    text-align: center;
    border-bottom: 1px solid #eee; /* Add a subtle separator */
  }

  .dropdown-content a:last-child {
    border-bottom: none; /* Remove border from last item */
  }

  .dropdown-content.show {
    display: block;
  }
}

.hero-section {
  display: flex;
  min-height: 100vh;
  padding-top: 70px; /* Adjust based on navbar height */
  background-color: #f8f8f8;
  align-items: center;
}

.hero-image {
  flex: 1.3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.hero-content {
  flex: 0.7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.content-vertical-line {
  width: 2px;
  height: 50px; /* Adjust height as needed */
  background-color: #9d0202; /* Red color from image */
  margin: 1rem auto; /* Center the line and provide vertical spacing */
}

.hero-subtitle {
  color: #9d0202; /* Red color from image */
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: "Josefin Sans", sans-serif;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.primary-button {
  background-color: #9d0202; /* Red color from image */
  color: #fff;
}

.primary-button:hover {
  background-color: #9d0202;
}

.secondary-button {
  background-color: #9d0202; /* Changed to red */
  color: #fff;
}

.secondary-button:hover {
  background-color: #9d0202; /* Changed to red hover */
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    padding-top: 100px; /* More space for smaller screens */
  }

  .hero-image {
    min-height: 250px; /* Reduced min-height for medium screens */
    height: auto; /* Allow height to adjust based on content */
    width: 100%;
  }

  .hero-image img {
    object-fit: contain; /* Ensure image is contained within its space */
    object-position: center; /* Center the image when contained */
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-image {
    min-height: 180px; /* Further reduced min-height for small mobile screens */
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

/* Founder Story Page Styles */
.page-header {
    background-color: #383737;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 190px;
}
.page-header h2 {
    font-size: 40px;
    font-family: "Josefin Sans", sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin: 0;
    line-height: inherit;
}

.page-header p {
  font-size: 0.9rem;
  color: #fff;
}

.main-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.image-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.row-image {
  width: 23%; /* Adjust width to fit 4 images in a row */
  height: auto;
  border-radius: 5px;
}

.founder-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 2rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Footer Styles */
.footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #9d0202;
}

.footer-section p,
.footer-section ul {
  font-size: 0.9rem;
  color: #bbb;
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #9d0202;
}

@media (max-width: 768px) {
  .page-header {
    padding: 2rem 1rem;
  }

  .main-content {
    padding: 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 2rem;
    width: 100%; /* Ensure footer sections take full width on mobile */
    margin: 0 auto; /* Center footer sections */
  }

  .footer-section:last-child {
    margin-bottom: 0;
  }

  .footer-section.contact-info {
    text-align: center; /* Ensure content is centered on mobile */
  }
}

/* Our Approach Page Specific Styles */
.main-content .content-image {
  display: block;
  max-width: 80%; /* Adjust as needed */
  height: auto;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-philosophy,
.section-framework {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.section-philosophy h3,
.section-framework h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  color: #333;
}

.section-philosophy p,
.section-framework p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
  text-align: left; /* force alignment left */
}

.section-philosophy ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.section-philosophy ul {
  padding-left: 0;
  margin-left: 0;
}

.section-philosophy ul li {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 1.05rem;
  position: relative;
  padding-left: 2rem; /* Reduce padding for better alignment */
  text-align: left;
}
.section-philosophy ul li::before {
  content: "\2022"; /* Unicode for a bullet point */
  color: #9d0202;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.2em; /* Adjust this to reduce indentation */
}

.section-philosophy ul li::before {
  content: "\2022"; /* Unicode for a bullet point */
  color: #9d0202; /* Red bullet */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em; /* Negative margin to pull bullet left */
}

.section-framework strong {
  color: #333;
}

@media (max-width: 768px) {
  .main-content .content-image {
    max-width: 90%;
  }

  .section-philosophy,
  .section-framework {
    padding: 0 1rem;
  }

  .section-philosophy h3,
  .section-framework h3 {
    font-size: 1.8rem;
  }

  .section-philosophy p,
  .section-framework p,
  .section-philosophy ul li {
    font-size: 1rem;
  }
}

/* Our Team Page Specific Styles */
.main-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  color: #333;
}

.main-content p {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
  text-align: center;
}
.main-content h6 {
    font-size: 25px;
    font-family: 'Josefin Sans';
    margin: 0;
}
.founder-cont p.founder-details {
    color: #9D0202;
    font-style: italic;
    font-family: 'Josefin Sans';
    font-size: 15px;
    margin: 0 0 10px;
}
.founder-cont h4
 {
    font-size: 24px;
    color: #000;
    margin: 0 0 8px;
    padding: 0;
    line-height: 20px;
    text-align: left;
    letter-spacing: -1px;
}
.founder-cont p {
    font-size: 16px;
    font-family: 'Josefin Sans';
    letter-spacing: 0px;
    line-height: 30px;
    margin: 0;
    text-align: justify;
    color: #323232;
}
.founder-cont li {
    font-size: 16px;  
    font-family: 'Josefin Sans';
    color: #323232;
    list-style: square;
    text-align: justify;
    letter-spacing: 0;
    line-height:30px;
    margin: 0;
    padding: 0;
}
.logocont .kukoni-lgo {
 max-width: 145px;
}
.founder-cont li img{
  width: 50px;
  height: 20px;
}

.founder-cont h6
 {
    font-size: 25px;
    font-weight: 900;
    color: #000;
    margin: 25px 0 0;
}
.mt-40 {
    margin-top: 30px;
}
.founder-sec {padding-top:80px;}
.flogo-imag {
    border: 1px solid #ac9e9e;
}
.logorow {
  padding:30px 0 0;
}
.certi-name {
    padding: 5px 2px;
    background: rgba(0, 0, 0, 0.9);
    min-height:45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.certi-name h6 {
    color: #fff;
    font-size: 12px;
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Josefin Sans';
    line-height: inherit;
    letter-spacing: 0px;
}
.imgdiv {
    min-height: 140px;
    max-height: 141px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgdiv img {
    max-height: 140px;
}









@media (max-width: 768px) {
  .main-content h3 {
    font-size: 1.8rem;
  }
  .main-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Our Impact Page Specific Styles */
.main-content.impact-page {
  display: flex;
  flex-direction: row-reverse; /* Image on right, text on left */
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 1200px; /* Adjust as needed */
  margin: 2rem auto;
}

.impact-text-content {
  flex: 1;
  padding-right: 2rem; /* Space between text and image */
  text-align: left; /* Align text to the left */
}

.impact-text-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: left; /* Align heading to the left */
  font-family: "Josefin Sans", sans-serif;
  color: #333;
}

.impact-text-content p {
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
  text-align: left; /* Align paragraph to the left */
  max-width: none; /* Override previous main-content p max-width */
  margin: 0; /* Override previous main-content p margin */
}

.impact-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.impact-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .main-content.impact-page {
    flex-direction: column; /* Stack image and text vertically on smaller screens */
    padding: 1rem;
  }

  .impact-text-content {
    padding-right: 0;
    padding-bottom: 1.5rem; /* Space between text and image when stacked */
    text-align: center; /* Center text when stacked */
  }

  .impact-text-content h3 {
    text-align: center;
    font-size: 1.8rem;
  }

  .impact-text-content p {
    text-align: center;
    font-size: 1rem;
  }

  .impact-image-container {
    margin-top: 1rem;
  }

  .impact-image {
    max-width: 90%;
  }
}

/* Our Skills Page Specific Styles */
.main-content.skills-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.skills-section h3,
.what-makes-qualified h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  color: #333;
}

.skills-section p,
.what-makes-qualified p {
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.skill-box {
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.skill-box.red {
  background-color: #9d0202;
  color: #fff;
  border-color: #9d0202;
}

.skill-box.red .skill-header i {
  color: #fff;
}

.skill-box.black {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.skill-box.black .skill-header i {
  color: #fff;
}

.skill-box .skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.skill-box .skill-header i {
  font-size: 1rem;
}

.small-text {
  font-size: 0.9rem;
  color: #777;
  text-align: center;
  margin-bottom: 2rem; /* Add some space below this text */
}

.what-makes-qualified {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .main-content.skills-page {
    padding: 0 1rem;
  }

  .skills-section h3,
  .what-makes-qualified h3 {
    font-size: 1.8rem;
  }

  .skills-section p,
  .what-makes-qualified p,
  .skill-box {
    font-size: 1rem;
  }

  .skill-box {
    padding: 0.7rem 1rem;
  }

  .small-text {
    font-size: 0.85rem;
  }
}

/* ABCD Code Page Specific Styles */
.main-content.two-column-page {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin:4rem auto 2rem auto;
  padding: 0 2rem;
  gap: 2rem; /* Space between columns */
}

.main-column {
  flex: 2; /* Main content takes more space */
  padding-right: 1.5rem;
}

.sidebar-column {
  flex: 1; /* Sidebar takes less space */
  padding-left: 1.5rem;
}

.main-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #9d0202; /* Red color from image */
  font-family: "Josefin Sans", sans-serif;
  text-align: center; /* Align section title to center */
}

.sub-section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  text-align: center; /* Align sub-section title to center */
}

.main-column p {
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  text-align: left;
}

.main-column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.main-column ul li {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 1.05rem;
  position: relative;
  padding-left: 1.5rem;
}

.main-column ul li::before {
  content: "\2022"; /* Unicode for a bullet point */
  color: #333; /* Dark bullet */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
}

/* Sidebar Widgets */
.sidebar-widget {
  background-color: #f8f8f9;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
  font-family: "Josefin Sans", sans-serif;
}

.about-widget .sidebar-image {
  display: block;
  max-width: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
}

.about-widget p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
  margin-bottom: 1rem;
}

.about-widget .sidebar-signature {
  display: block;
  max-width: 150px;
  margin: 0 auto;
}

.categories-widget ul,
.recent-posts-widget ul {
  list-style: none;
  padding: 0;
}

.categories-widget ul li,
.recent-posts-widget ul li {
  margin-bottom: 0.5rem;
}

.categories-widget ul li a,
.recent-posts-widget ul li a {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
}

.categories-widget ul li a:hover,
.recent-posts-widget ul li a:hover {
  color: #007bff;
}

.search-box {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.search-box input {
  border: none;
  padding: 0.5rem 1rem;
  flex: 1;
  font-size: 0.95rem;
}

.search-box input:focus {
  outline: none;
}

.search-box button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-box button:hover {
  background-color: #000;
}

.comments-widget p a {
  color: #9d0202;
  text-decoration: none;
}

.comments-widget p a:hover {
  text-decoration: underline;
}

.recent-posts-widget .post-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.recent-posts-widget .post-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 0.8rem;
}

.recent-posts-widget .post-item p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
  margin: 0; /* Override default paragraph margin */
  text-align: left;
}

@media (max-width: 992px) {
  .main-content.two-column-page {
    flex-direction: column; /* Stack columns vertically on smaller screens */
    padding: 1rem;
  }

  .main-column {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .sidebar-column {
    padding-left: 0;
  }

  .main-column p,
  .main-column ul li,
  .about-widget p,
  .categories-widget ul li a,
  .recent-posts-widget ul li a,
  .search-box input,
  .recent-posts-widget .post-item p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .sub-section-title {
    font-size: 2rem;
  }

  .sidebar-widget {
    padding: 1rem;
  }
}

/* Corporate Services Page Specific Styles */
.corporate-services-content {
  padding-top: 1rem; /* Space from the top of the main column */
}

.corporate-section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns */
  gap: 2rem;
}
.services-grid-copy {
    grid-template-columns: 1fr 0fr;
}
.services-grid-copy .service-item h4 {
    width: 215px;
    margin-right: 15px;
}
.service-item {
  padding: 1.5rem;

  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-item h4 {
  font-size: 1.1rem;
  color: #9d0202; /* Red color for service titles */
  margin-bottom: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
}
.service-item ul li.contbtn a {
    background: #9d0202;
    color: rgba(255, 255, 255, 09);
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: capitalize;
    letter-spacing: 0.01em;
    margin:10px 0 0;
}
.service-item ul li.contbtn a:hover {background:#000;}
.service-item ul li.contbtn::before {content:""}
.service-item ul {
  list-style: none;
  padding: 0;
}

.service-item ul li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2em; /* Space for bullet */
}
li.contbtn {
    margin: 20px 0 0;
}
.service-item ul li::before {
  content: "\2022"; /* Unicode for a bullet point */
  color: #9d0202; /* Red bullet */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.2em;
}
.setwidth{width: 46%;}
@media (max-width: 768px) {
  .corporate-section-title {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }

  .service-item {
    padding: 1rem;
  }

  .service-item h4 {
    font-size: 1rem;
  }

  .service-item ul li {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .main-column p,
  .main-column ul li,
  .about-widget p,
  .categories-widget ul li a,
  .recent-posts-widget ul li a,
  .search-box input,
  .recent-posts-widget .post-item p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .sub-section-title {
    font-size: 2rem;
  }

  .sidebar-widget {
    padding: 1rem;
  }
}

/* Books Page Specific Styles */
.books-content {
  padding-top: 1rem;
}

.books-main-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #9d0202; /* Red color from image */
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
}

.book-category {
  margin-bottom: 3rem;
}

.book-category h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-family: "Josefin Sans", sans-serif;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.book-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.book-cover {
  width: 120px;
  height: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.book-item h5 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.book-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.book-overview {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Footer specific styles for Books page */
.footer-section.contact-info {
  flex: 1;
  min-width: 200px;
}

.footer-section.contact-info p {
  margin-bottom: 0.5rem;
}

.footer-section.contact-info .map-placeholder {
  background-color: #444;
  height: 100px; /* Placeholder height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.copyright-bar {
  background-color: #111;
  color: #bbb;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  margin-top: 2rem; /* Space from main footer content */
}
.copyright-bar p {
    margin: 0;
}
.copyright-bar p.smfont {font-size:12.9px;}
.copyright-bar a {
  color: #bbb;
  text-decoration: none;
}

.copyright-bar a:hover {
  text-decoration: underline;
}

/* Sidebar specific styles for Books page */
.sidebar-widget.calendar-widget,
.sidebar-widget.tags-widget {
  background-color: #f8f8f8;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.calendar-placeholder {
  background-color: #eee;
  padding: 1rem;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  border-radius: 4px;
}

.tags-widget p {
  line-height: 1.6;
  text-align: left;
  font-size: 0.95rem;
}

.tags-widget a {
  color: #9d0202;
  text-decoration: none;
  margin-right: 0.5rem;
  white-space: nowrap;
}

.tags-widget a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .books-main-title {
    font-size: 1.8rem;
  }

  .book-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .book-item h5,
  .book-meta,
  .book-overview {
    text-align: center;
  }

  .book-cover {
    margin-bottom: 1rem;
  }

  .book-category h4 {
    font-size: 1.3rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section.contact-info {
    text-align: center;
  }

  .copyright-bar {
    padding: 1rem;
  }
}

/* Case Studio Page Specific Styles */
.main-column.case-study-content {
  padding-top: 1rem;
}

.case-study-content .section-sub-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #9d0202; /* Red color from image */
  font-family: "Josefin Sans", sans-serif;
  text-align: left;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

.case-study-item {
  margin-bottom: 2rem;
}

.case-study-item .category {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.case-study-item .person-name {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.2;
}

.case-study-item .description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 768px) {
  .case-study-content .section-sub-title {
    font-size: 1.3rem;
    text-align: center;
  }
  .case-study-item .person-name {
    font-size: 1.5rem;
    text-align: center;
  }
  .case-study-item .category,
  .case-study-item .description {
    text-align: center;
  }
}

/* Scribble Pad  Section Styles */
.blog-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-header {
  margin-bottom: 50px;
}

.blog-header h2 {
  font-size: 2.5rem;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 10px;
}

.blog-header .view-all-link {
  color: #9d0202;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.blog-header .view-all-link:hover {
  color: #9d0202;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* Responsive grid */
  gap: 40px;
}

.post-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
}

.post-item img {
    width: 50%;
    margin: 0 auto;
    height: auto;
    object-fit: cover;
    display: block;
}
.post-item h4 {
    font-size: 20px;
    line-height: 25px;
    color: #333;
    margin: 20px 20px 10px 20px;
    font-family: "Josefin Sans", sans-serif;
}

.post-item .post-meta {
  font-size: 0.85rem;
  color: #777;
  margin: 0 20px 15px 20px;
}

.post-item .post-excerpt {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0 20px 20px 20px;
  flex-grow: 1; /* Allow excerpt to take available space */
}

.post-item .read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #9d0202;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0 20px 20px 20px;
  align-self: flex-start; /* Align button to the start */
}

.post-item .read-more:hover {
  background-color: #9d0202;
}
@media (max-width: 768px) {
  .post-item img {
    width: 90%;
    height: 300px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  font-family: "Josefin Sans", sans-serif;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Josefin Sans", sans-serif;
  color: #333;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.8em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  text-align: center;
}

h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
}

a {
  color: #9d0202;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #9d0202;
}

.navbar .container,
.banner-section .container,
.main-content .container,
.footer-content .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.founder-story-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
}

.founder-story-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.founder-image-container {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding-bottom: 20px; /* Space for the red block */
}

.founder-image {
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
  position: relative;
}

.red-block-left {
  position: absolute;
  bottom: 0;
  left: -20px; /* Adjust as needed */
  width: 100px;
  height: 100px;
  background-color: #9d0202; /* Red color */
  z-index: 1;
}

.black-block-right {
  position: absolute;
  top: 20px; /* Adjust as needed */
  right: -20px; /* Adjust as needed */
  width: 100px;
  height: 100px;
  background-color: #000; /* Black color */
  z-index: 1;
}

.founder-text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.founder-text-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  font-family: "Josefin Sans", sans-serif;
}

.founder-text-content h3 {
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #9d0202; /* Red color */
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #9d0202;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #9d0202;
}

@media (max-width: 768px) {
  .founder-content {
    flex-direction: column;
    align-items: center;
  }

  .founder-image-container {
    margin-bottom: 20px;
  }

  .red-block-left,
  .black-block-right {
    display: none; /* Hide on smaller screens if they cause layout issues */
  }

  .founder-text-content {
    text-align: center;
  }
}

.banner-section {
  /* Removed redundant styles, as slideshow-container class is more specific */
}

.banner-section.slideshow-container {
  max-width: 100%;
  height: 90vh;
  position: relative;
  margin: auto;
  overflow: hidden;
  margin-top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mySlides {
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 3;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background with a little opacity */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text (removed from HTML, but keeping style for consistency if needed later) */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  z-index: 3;
}

.active,
.dot:hover {
  }

.hero-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #333;
  z-index: 2;
  width: 80%;
  max-width: 900px;
  padding: 20px;
}

.hero-subtitle {
  color: #9d0202;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.content-vertical-line {
  width: 2px;
  height: 50px;
  background-color: #9d0202;
  margin: 1rem auto;
}

.hero-title {
  font-size: 3rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: "Josefin Sans", sans-serif;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.primary-button {
  background-color: #9d0202;
  color: #fff;
}

.primary-button:hover {
  background-color: #9d0202;
}

.secondary-button {
  background-color: #9d0202;
  color: #fff;
}

.secondary-button:hover {
  background-color: #9d0202;
}

.scroll-to-top-indicator {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  color: #333;
  font-size: 0.8em;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.scroll-to-top-indicator .scroll-line {
  width: 50px;
  height: 2px;
  background-color: #9d0202;
}

.prev,
.next {
  color: white;
  z-index: 3;
}

.dot {
  z-index: 3;
}

/* Our Mission Section Styles */
.our-mission-section {
  background-color: #333; /* Dark background as per image */
  color: #ffffff; /* White text color */
  padding: 80px 20px; /* Ample padding for spacing */
  text-align: center;
}

.our-mission-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Josefin Sans", sans-serif; /* Matching font from hero-title */
  color: #ffffff; /* White color for the title */
}

.our-mission-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px; /* Constrain paragraph width */
  margin: 0 auto; /* Center the paragraph */
  color: #ffffff; /* White color for the paragraph */
}

/* Exclusive Services Section Styles */
.exclusive-services-section {
  padding: 80px 0; /* Adjust padding as needed */
  background-color: #ffffff; /* White background */
}

.exclusive-services-section .container {
  max-width: 1200px; /* Adjust max-width for content */
  margin: 0 auto;
  padding: 0 20px;
}

.services-content {
  display: flex;
  flex-direction: row; /* Default to row for larger screens */
  align-items: center;
  gap: 40px; /* Space between image and text content */
}

.services-image-container {
  width: 100%;
  margin-bottom: 2rem;
}

.services-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.services-text-content {
  flex: 1.5; /* Take up more space */
  padding-left:0.5rem;
  text-align: left;
}

.exclusive-services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.2;
}

.service-item-list {
  display: flex;
  flex-direction: column; /* Arrange rows vertically */
  gap: 20px; /* Space between rows */
}

.service-item-row {
  display: flex;
  justify-content: flex-start; /* Align items to the start */
  gap: 40px; /* Space between service items in a row */
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1; /* Distribute space evenly */
}

.service-number {
  font-size: 3rem;
  font-weight: bold;
  color: #9d0202; /* Red color */
  line-height: 1;
}

.service-item p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .services-content {
    flex-direction: column; /* Stack columns on smaller screens */
  }

  .services-image-container {
    margin-bottom:0px;
  }

  .services-text-content {
    text-align: center; /* Center text when stacked */
  }

  .service-item-row {
    flex-direction: column; /* Stack service items in a row */
    gap: 10px;
  }

  .service-item {
    align-items: center; /* Center items when stacked */
    text-align: center;
    flex-direction: column; /* Stack number and text */
  }
}

@media (max-width: 576px) {
  .exclusive-services-section h2 {
    font-size:31px !important;
    margin: 0 0 10px;
  }

  .service-number {
    font-size: 2.5rem;
  }

  .service-item p {
    font-size: 1rem;
  }
}

/* Testimonial Section Styles */
.testimonial-section {
  background-color: #ffffff; /* White background */
  padding: 80px 0; /* Ample padding */
  text-align: center;
  position: relative; /* Needed for absolute positioning of background number */
}

.testimonial-section .container {
  max-width: 1000px; /* Adjust max-width for content */
  margin: 0 auto;
  padding: 0 20px;
  position: relative; /* For positioning dots and lines */
}

.testimonial-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 1; /* Ensure header is above background number */
}

.testimonial-header h2 {
  font-size: 2.5rem;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 10px;
}

.testimonial-header .all-testimonials-link {
  color: #9d0202; /* Red color */
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.testimonial-header .all-testimonials-link:hover {
  color: #9d0202;
}

.background-number {
  position: absolute;
  top: -50px; /* Adjust as needed to position the number */
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem; /* Large font size for background */
  color: rgba(204, 204, 204, 0.3); /* Light grey and transparent */
  font-weight: bold;
  z-index: 0; /* Place behind other content */
  line-height: 1;
}

.testimonial-carousel {
  position: relative;
  height: 200px; /* Fixed height for carousel items to enable scrolling */
  overflow: hidden; /* Hide overflowing testimonials */
}

.testimonial-item {
  display: none; /* Hide by default */
  padding: 20px;
  text-align: center;
}

.testimonial-item .quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-item .author {
  font-size: 1rem;
  color: #777;
  font-weight: 600;
}

.testimonial-navigation {
  margin-top: 30px;
}

.testimonial-navigation .nav-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.testimonial-navigation .nav-dot.active,
.testimonial-navigation .nav-dot:hover {
  background-color: #9d0202; /* Red color for active/hover dot */
}

@media (max-width: 768px) {
  .testimonial-section, .about-me-section {padding:15px 0;}

  .testimonial-header h2 {
    font-size: 2rem;
  }

  .background-number {
    font-size: 7rem;
    top: -30px;
  }

  .testimonial-item .quote {
    font-size: 1.2rem;
  }
}

/* About Me Section Styles */
.about-me-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.about-me-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-me-content {
  display: flex;
  flex-direction: row; /* Default to row for larger screens */
  align-items: center;
  gap: 40px;
  position: relative; /* For background number positioning */
}

.about-me-text-content {
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 1; /* Ensure text is above background number */
}

.about-me-text-content .background-number {
  position: absolute;
  top: -50px;
  left: 0;
  font-size: 10rem;
  color: rgba(204, 204, 204, 0.3);
  font-weight: bold;
  z-index: -1; /* Behind text content */
  line-height: 1;
}

.about-me-text-content h2 {
  font-size: 2.5rem;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 20px;
}

.about-me-text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-me-text-content .red-text {
  color: #9d0202; /* Red color for highlighted text */
  font-weight: bold;
}

.about-me-text-content .read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #9d0202;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.about-me-text-content .read-more:hover {
  background-color: #9d0202;
}

.about-me-image-container {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  padding: 20px; /* Space for the blocks */
}

.about-me-image {
  max-width: 100%;
  height: auto;
  display: block;
  z-index: 2;
  position: relative;
}

.red-block-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: #9d0202; /* Red color */
  z-index: 1;
}

.white-block-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: #f0f0f0; /* Light grey/white color */
  z-index: 1;
}

@media (max-width: 992px) {
  .about-me-content {
    flex-direction: column;
  }
  .about-me-content {gap: 10px;}

  .about-me-text-content {
    text-align: center;
  }

  .about-me-text-content .background-number {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-me-image-container {
    margin-top: 0;
        padding: 0;
  }
  .library-section h1 {font-size: 25px;margin-bottom: 10px;;}
.about-me-section {padding:20px 0;}
  .red-block-bottom-right,
  .white-block-top-left {
    display: none; /* Hide on smaller screens if they cause layout issues */
  }
}

@media (max-width: 576px) {
  .about-me-text-content h2 {
    font-size: 2rem;
  }

  .about-me-text-content .background-number {
    font-size: 7rem;
    top: -30px;
  }

  .about-me-text-content p {
    font-size: 1rem;
            margin: 0;
  }
}

.library-section {
  background-image: url("images/book.jpg"); /* Replace with your collage image */
  background-size: cover;
  background-position: center;
  height: 100vh; /* Adjust height as needed */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.library-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.library-section h1 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Josefin Sans", sans-serif;
}

.library-section .quote {
  color: #ffffff;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.library-section .button.primary-button {
  background-color: #9d0202;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 5px;
  border: none; /* Remove border */
  transition: 0.3s ease;
}

.library-section .button.primary-button:hover {
  background-color: #9d0202;
  color: #fff;
}

.library-section .button.primary-button::after {
  content: " \2192"; /* Right arrow character */
  margin-left: 8px;
}

/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 50px;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  background-color: #f1f1f1;
  transition: background-color 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  background-color: #e9e9e9;
}

.faq-question span {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #9d0202; /* Red color for the plus/minus icon */
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg); /* Rotates the plus to a cross */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  background-color: #ffffff;
}

.faq-answer p {
  padding: 0 20px 20px 50px; /* Adjust padding to align with question text */
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  text-align: left;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content height */
  /* A large value to ensure it expands fully, consider using JS to calculate auto height */
}

/* Contact Us Section Styles */
.contact-us-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-us-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-left img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-right {
  flex: 1.2;
  min-width: 300px;
  text-align: left;
  position: relative;
  padding: 20px;
}

.contact-right h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 5px;
  font-family: "Josefin Sans", sans-serif;
}

.contact-right .get-in-touch {
  font-size: 0.9rem;
  color: #9d0202;
  margin-bottom: 30px;
}

.contact-right .background-number {
  position: absolute;
  top: -20px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem; /* Large number */
  color: rgba(0, 0, 0, 0.05); /* Very light grey */
  font-weight: bold;
  z-index: 0;
  font-family: "Josefin Sans", sans-serif;
  pointer-events: none;
}

.contact-right h3 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "Josefin Sans", sans-serif;
}

.contact-right p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-right p a {
  color: #9d0202;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-right p a:hover {
  color: #9d0202;
}

.social-icons {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #555;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #9d0202;
}

.contact-map {
  flex: 1.5;
  min-width: 300px;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-left,
  .contact-right,
  .contact-map {
    width: 100%;
    max-width: 600px;
    min-width: unset;
  }

  .contact-right .background-number {
    top: -10px;
    font-size: 6rem;
  }
}

@media (max-width: 576px) {
  .contact-right h2 {
    font-size: 2rem;
  }

  .contact-right h3 {
    font-size: 1.1rem;
  }

  .contact-right .background-number {
    font-size: 5rem;
  }
}

/* Our Values Section Styles */
.our-values-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.our-values-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.Animal-sec {
    margin: 0px auto;
    padding: 40px 20px;
}

.Animal-sec p {
    font-size: 16px;
    font-family: 'Josefin Sans';
    color: #555555;
    margin: 0;
    padding: 0;
    text-align: justify;
    letter-spacing: 0;
    text-transform: inherit;
}
.our-values-section h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 50px;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.value-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 0 30px;
}
.setcenter {
    width: 75%;
    margin: 0 auto;
}
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.value-number {
  font-size: 3rem;
  color: rgba(230, 0, 0, 0.1);
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
  position: absolute;
  top: -10px;
  left: 10px;
  z-index: 0;
}

.value-item h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 15px;
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  z-index: 1;
}

.value-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Chatbot styles */
.chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #9d0202;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.chatbot-window {
  position: fixed;
  bottom: 90px; /* Above the toggle button */
  right: 20px;
  width: 350px;
  height: 450px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: none; /* Hidden by default */
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}

.chatbot-header {
  background-color: #9d0202;
  color: white;
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  margin: 0;
  color: white;
  font-size: 1.1rem;
}

.chatbot-close {
  font-size: 1.5rem;
  cursor: pointer;
}

.chatbot-body {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.chatbot-message {
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  max-width: 80%;
  line-height: 1.4;
}

.bot-message {
  background-color: #e0e0e0;
  align-self: flex-start;
  margin-right: auto;
}

.user-message {
  background-color: #dcf8c6;
  align-self: flex-end;
  margin-left: auto;
}

.chatbot-footer {
  display: flex;
  padding: 10px;
  border-top: 1px solid #eee;
  background-color: #f1f1f1;
}

.chatbot-footer input {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 0.9rem;
}

.chatbot-footer button {
  background-color: #9d0202;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.chatbot-footer button:hover {
  background-color: #9d0202;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .chatbot-toggle {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 15px;
    right: 15px;
  }

  .chatbot-window {
    width: calc(100% - 30px); /* Full width minus margin */
    height: 70%; /* Adjust height for smaller screens */
    bottom: 75px;
    right: 15px;
    left: 15px; /* Center it horizontally */
    margin: auto;
  }

  .chatbot-header h3 {
    font-size: 1rem;
  }

  .chatbot-close {
    font-size: 1.3rem;
  }

  .chatbot-message {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100% - 20px);
    right: 10px;
    left: 10px;
  }

  .chatbot-toggle {
    bottom: 10px;
    right: 10px;
  }
.container1
 {
    gap:40px;
}
.flogo-imag {
    margin: 0 0 15px;
}



}

.audio-intro {
  margin-top: 30px;
  text-align: center;
}

.audio-intro h4 {
  font-size: 1.2rem;
  color: #9d0202;
  margin-bottom: 10px;
  font-family: "Josefin Sans", sans-serif;
}

.audio-intro audio {
  width: 100%;
  max-width: 500px;
  outline: none;
}

.contact-us-section1 {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.contact-content1 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; /* Always stack content vertically */
  gap: 40px;
}

.contact-left1,
.contact-right1 {
  width: 100%; /* Ensure each section takes full width */
  max-width: 700px; /* Limit overall width for readability */
  margin: 0 auto; /* Center individual sections */
}

.contact-form1 {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%; /* Make form responsive to its parent */
  max-width: none; /* Allow form to take max-width of its parent */
  margin: 0 auto; /* Center the form within its container */
}

.contact-form1 h3 {
  font-size: 1.5rem;
  color: #9d0202;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 10px;
}

.contact-form1 input,
.contact-form1 textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Josefin Sans", sans-serif;
}

.contact-form1 button {
  padding: 12px;
  background-color: #9d0202;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form1 button:hover {
  background-color: #9d0202;
}

.contact-right1 h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #9d0202;
  font-family: "Josefin Sans", sans-serif;
}

.contact-right1 p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}
.contact-right1 p a {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}
.contact-map1 {
  width: 100%;
  height: 300px;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-map1 iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  /* No specific flex-direction needed here for .contact-content1 as it's always column */
  .contact-content1 {
    align-items: center; /* Ensure horizontal centering on larger screens */
    justify-content: center; /* Ensure vertical centering (if height allows) */
  }
  /* Remove redundant width and max-width definitions for contact-left1 and contact-right1 */
  

}
@media only screen and (min-device-width : 576px) and (max-device-width : 768px) {
  .container1 {gap:415px;}
}
@media only screen and (min-device-width : 769px) and (max-device-width : 991px) {
  .logo img {
    width: 100px;
    height: 50px;
  }
}
@media only screen and (min-device-width : 992px) and (max-device-width : 1024px) {
}
/* Team Page Styles */
.main-content-team {
  max-width: 1200px; /* Make this section wider */
  margin: 2rem auto; /* Center it */
  padding: 0 20px; /* Add some padding */
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin: 2rem 0;
  /* Removed fixed width */
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.member-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  order: 1;
}

.member-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.member-content {
  flex: 1;
  order: 2;
}

.member-content h4 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

.qualifications,
.artistic-achievements {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.qualifications h5,
.artistic-achievements h5 {
  font-size: 1.3rem;
  color: #444;
  margin-bottom: 1.2rem;
  text-align: center;
}

.qualifications ul,
.artistic-achievements ul {
  list-style: none;
  padding-left: 1.5rem;
}

.qualifications ul li,
.artistic-achievements ul li {
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.6;
}

.qualifications ul li:before,
.artistic-achievements ul li:before {
  content: "•";
  color: #666;
  position: absolute;
  left: -1.5rem;
}

.qualifications ul ul {
  margin-top: 0.8rem;
}

.member-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-member {
    flex-direction: column;
  }

  .member-image {
    flex: 1; /* Allow image container to be flexible */
    max-width: 100%; /* Ensure it doesn't exceed its container */
  }
}

/* CTA Button Styles */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #9d0202;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #9d0202;
  margin: 20px 0;
  margin-left: 130px;
}

.cta-button:hover {
  background-color: #9d0202;
  border-color: #9d0202;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.end-image {
  text-align: center; /* Center the image within this container */
}

/* Social Media Icons in Footer */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: center; /* Center the social media icons */
}

.social-links a {
  color: #333;
  font-size: 24px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #9d0202;
  transform: translateY(-3px);
}

.social-links i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover i {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Approach Page Styles */
.approach-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.8;
  text-align: justify;
}

.approach-content h3 {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 2rem;
}

.approach-content p {
  margin-bottom: 1.5rem;
  color: #444;
  font-size: 1.1rem;
}

.approach-content ul {
  list-style: none;
  padding-left: 2rem;
  margin: 1.5rem 0;
}

.approach-content ul li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.approach-content ul li:before {
  content: "•";
  color: #9d0202;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.approach-content strong {
  color: #333;
  font-weight: 600;
}
.onimg-text {
    position: relative;
    z-index: 0;
}
.onimg-text:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    z-index: 0;
    visibility: hidden;
    opacity: 0;
}

.gallery-item:hover .bghover {
  opacity: 1;
  visibility: visible;
}
.bghover {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.onimg-text p {
  display: none;
  visibility: hidden;
    position: absolute;
    top: 0;
    left: 0; 
    text-align: center; 
    font-size: 14px;
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.gallery-item:hover .onimg-text p {visibility:visible;}
/* Brand Name Style */
.brand-name {
  color: #9d0202;
  font-weight: 600;
}

.founder-gallery {
  margin: 2rem 0;
  text-align: center;
}

.gallery-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-container {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem 0;
}

.cta-container .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.events-workshops-content .full-width-image {
  width: 600px;
  height: 600px;
  object-fit: cover;
  display: block;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-gallery-section {
  margin: 4rem 0;
  text-align: center;
}

.image-gallery-section h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #333;
}

.image-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1200px;
}

.image-row .gallery-image {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 0 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-row .gallery-image:hover {
  transform: scale(1.05);
}

.skills-section {
  padding: 1rem 0;
}

.skills-header-image {
  margin-bottom: 2rem;
  text-align: center;
}

.skills-header-image .header-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.skills-intro {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.skill-category {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skill-category h4 {
  color: #9d0202;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.skill-category ul {
  list-style: none;
  padding-left: 0;
}

.skill-category ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}

.skill-category .sub-list {
  margin: 0.75rem 0 0.75rem 1.5rem;
}

.skill-category .sub-list li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
  font-style: italic; /* Make text italic */
  position: relative;
  padding-left: 1.2em; /* Space for bullet */
}

.skill-category .sub-list li::before {
  content: "\2022"; /* Unicode for a bullet point */
  color: #9d0202; /* Red color for bullet */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.2em;
}

.blog-header-image {
  margin-bottom: 3rem;
  text-align: center;
}

.blog-header-image .header-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services-cta {
  margin-top: 2rem;
  text-align: center;
  width: 100%;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #9d0202;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.desktop-hide {display:none;}
.cta-button:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .banner-section.slideshow-container {
    height: 20vh;
  }

  .mySlides img {
    object-fit: contain;
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .banner-section.slideshow-container {
        margin-top:192px;
  }

  .mySlides img {
    object-fit: contain;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .image-row {
    flex-direction: column;
    align-items: center;
  }

  .image-row .gallery-image {
    width: 90%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .events-workshops-content .full-width-image {
    width: 90%; /* Adjust width for mobile */
    height: auto; /* Maintain aspect ratio */
  }
}

@media (min-width: 768px) {
  .contact-content1 {
    flex-direction: column; /* Ensure elements stack in a column on larger screens */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically (if height allows) */
  }

  .contact-left1,
  .contact-right1 {
    width: 100%; /* Take full width for each row */
    max-width: 700px; /* Limit overall width for readability, similar to form */
    margin: 0 auto; /* Center individual sections */
  }

  .contact-form1 {
    width: 100%;
    max-width: none; /* Allow form to take max-width of its parent (.contact-left1) */
  }
}

/* Overlaid Content Styling */
.overlaid-content {
  position: absolute;
  top: 80%; /* Adjusted to move buttons significantly lower */
  left: 70%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 60%;
  max-width: 900px;
}
.overlaid-content1 {
  position: absolute;
  top: 80%; /* Adjusted to move buttons significantly lower */
  left: 37%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 60%;
  max-width: 900px;
}
@media (max-width: 768px) {
  .overlaid-content,
  .overlaid-content1 {
    display: none;
  }
}

.inner-leap-text {
  display: none; /* Hide this text */
}

.red-line {
  display: none; /* Hide the red line */
}

.overlaid-content h1 {
  display: none; /* Hide the main heading */
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-button-red {
  background-color: #9d0202;
  color: white;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1em;
  border: 2px solid white;
}

.banner-button-red:hover {
  background-color: #9d0202;
  transform: translateY(-2px);
  color: #fff;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
  .overlaid-content h1 {
    font-size: 3.5em;
  }

  .banner-button-red {
    padding: 15px 30px;
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .overlaid-content {
    width: 90%;
    top: 85%; /* Maintain lower position for smaller screens */
  }

  .overlaid-content h1 {
    font-size: 2.8em;
    margin-bottom: 30px;
  }

  .inner-leap-text {
    font-size: 1em;
  }

  .banner-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .banner-button-red {
    width: 80%;
    margin: 0 auto;
    padding: 12px 25px;
    font-size: 0.85em;
  }
}

@media (max-width: 576px) {
  .overlaid-content h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .inner-leap-text {
    font-size: 0.9em;
  }

  .red-line {
    height: 40px;
    margin-bottom: 15px;
  }

  .banner-button-red {
    width: 90%;
    padding: 10px 20px;
    font-size: 0.8em;
  }
}

/* Book Table Styles */
.books-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px;
  margin-bottom: 2rem;
}
.books-table-header {
  display: grid;
  grid-template-columns: 100px 240px 200px 1fr;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}
.books-table-header {
  background: #f5f5f5;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  margin-bottom: 8px;
  border-bottom: 2px solid #9d0202;
  color: #9d0202;
  text-align: center;
}
.books-table-row {
  display: grid;
  grid-template-columns: 100px 240px 200px 1fr;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
  min-height: 100px;
  text-align: left;
}
.books-table-row:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.books-table-col {
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  word-break: break-word;
  height: 100%;
  box-sizing: border-box;
}
.books-cover-col {
  justify-content: center;
  min-width: 80px;
  max-width: 100px;
}
.books-title-col {
  font-weight: 600;
  color: #222;
  min-width: 180px;
  max-width: 240px;
}
.books-author-col {
  color: #444;
  min-width: 160px;
  max-width: 200px;
}
.books-overview-col {
  color: #555;
  font-size: 0.98rem;
  min-width: 180px;
}
.books-table-header .books-table-col {
  font-size: 1.08rem;
  color: #9d0202;
  background: #f5f5f5;
  justify-content: center;
  text-align: center;
}
.book-cover {
  width: 70px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .books-table-header,
  .books-table-row {
    grid-template-columns: 80px 1fr 1fr 2fr;
  }
  .books-title-col,
  .books-author-col,
  .books-overview-col {
    font-size: 0.95rem;
    min-width: 100px;
    max-width: 1fr;
  }
}
@media (max-width: 700px) {
  .books-table-header,
  .books-table-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }
  .books-table-col {
    padding: 6px 0;
    width: 100%;
    justify-content: flex-start;
  }
  .books-table-header .books-table-col {
    border-bottom: none;
    background: none;
    color: #9d0202;
    font-weight: bold;
    text-align: left;
  }
  .books-cover-col {
    justify-content: flex-start;
    margin-bottom: 8px;
  }
}

.textsss {
  color: #000;
  text-align: left;
}
@media (max-width: 768px) {
  .li {
    margin-left: 0px;
  }
}

#image-trigger-section {
  height: 200vh; /* so there's space to scroll while image is visible */
  position: relative;
}

.scroll-popup-image {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: auto;
  max-width: 80vw;
  max-height: 90vh;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s ease;
  pointer-events: none;
}

.scroll-popup-image.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05); /* optional slight pop */
  pointer-events: auto;
}

.scroll-popup-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed !important;
  width: 100%;
  z-index: 999;
}

.container1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
  padding: 15px 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 10px;
}

.nav-link {
  text-decoration: none !important;
  color: #333 !important;
  font-weight: bold !important;
  position: relative !important;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  min-width: 180px;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f2f2f2;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.buttonssss {
  background: #9d0202;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.buttonssss:hover {
  background: white;
  color: #9d0202;
  border: 2px solid #9d0202;
}

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100; /* 🔥 Make sure it's above nav-links */
  position: relative; /* Required for z-index to work */
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    transition: 0.3s ease;
    z-index: 998;
  }

  .nav-links.active {
    left: 0;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
/* HAMBURGER X TOGGLE ANIMATION */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.4s;
}

/* MOBILE DROPDOWN TOGGLE */
@media (max-width: 768px) {
      .dropdown-content {
        display: none;
        flex-direction: column;
        padding: 0;
        margin: 15px 0;
    }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .dropbtn {
    width: 100%;
    text-align: center;
    cursor: pointer;
  }

  .dropdown-content a {
    border-top: 1px solid #eee;
    padding: 10px 0;
  }
}

.top-bar {
  width: 100%;
  background-color: #9d0202; /* Tailwind-style orange (or #ff6a00 / #fd7e14) */
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
}

.top-bar-content {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
  white-space: nowrap;
}

.top-bar marquee {
  display: block;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fefaf2;
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  font-family: "Poppins", sans-serif;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.popup-logo {
  width: 120px;
  margin: 0 auto 20px;
  display: block;
}

.popup-heading {
  font-size: 24px;
  text-align: center;
  color: #331a12;
  margin-bottom: 10px;
}

.popup-subtext {
  font-size: 15px;
  text-align: center;
  color: #444;
  margin-bottom: 25px;
}

.popup-form input,
.popup-form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}

.popup-submit {
  width: 100%;
  background-color: #4b100b;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-submit:hover {
  background-color: #631913;
}
.whatsapp-cta {
  position: fixed;
  bottom: 20px;
  left: 20px; /* 👈 Changed from right: 20px */
  z-index: 99999;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Add your other popup styles here */

.whatsapp-cta:hover {
  transform: scale(1.1);
}

.whatsapp-cta img {
  width: 28px;
  height: 28px;
}
.lies {
  margin-left: 130px;
}

@media (max-width: 768px) {
  .lies {
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .cta-button {
    margin-left: 0px;
  }
}

.career-section {
  padding: 40px 20px;
  margin-top: 160px;
}

.career-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  justify-content: space-between;
}

.career-left {
  flex: 1;
  min-width: 300px;
}

.career-logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.2em;
  color: #400000;
  margin: 0 0 10px;
}

.subtext {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.cta-btn {
  background: #400000;
  color: white;
  border: none;
  padding: 10px 24px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 25px;
}

.features {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}

.desc {
  font-size: 1em;
  color: #333;
  margin-bottom: 25px;
}

h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-weight: 600;
}

.values h4 {
  width: 100%;
  color: #400000;
}

.career-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.career-dog {
  width: 90%;
  max-width: 320px;
  margin-bottom: 20px;
}

.job-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  text-align: left;
}

.job-card h4 {
  margin-top: 0;
  color: #400000;
}

.job-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.read-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #000;
  background: white;
  cursor: pointer;
  font-weight: bold;
}

.note {
  font-size: 0.9em;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .career-container {
    flex-direction: column;
    align-items: center;
  }

  .career-left,
  .career-right {
    text-align: center;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .values {
    justify-content: center;
  }
}

/* Hero Section */
.career-section {
  padding: 40px 20px;
}

.career-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  justify-content: space-between;
}

.career-left {
  flex: 1;
  min-width: 300px;
}

.career-logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.2em;
  color: #400000;
  margin: 0 0 10px;
}

.subtext {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.cta-btn {
  background: #400000;
  color: white;
  border: none;
  padding: 10px 24px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 25px;
}

.features {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.desc {
  font-size: 1em;
  color: #333;
  margin-bottom: 25px;
}

h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-weight: 600;
}
.carrer-value {
    gap: 0 30px;
}
.carrer-value h4 {
    margin: 10px 0 0px;
    font-size: 23px;
}
.values h4 {
  width: 100%;
  color: #400000;
}

.career-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.career-dog {
  width: 90%;
  max-width: 320px;
  margin-bottom: 20px;
}

.job-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  text-align: left;
}

.job-card h4 {
  margin-top: 0;
  color: #400000;
}

.job-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.read-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #000;
  background: white;
  cursor: pointer;
  font-weight: bold;
}

.note {
  font-size: 0.9em;
  color: #555;
}

/* Job Form Section */
.job-form-section {
  background: #f8f8f8;
  padding: 50px 20px;
}

.form-wrapper {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #400000;
}

form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

form input[type="text"],
form input[type="email"],
form input[type="file"],
form select,
form textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form select {
  background: #fff;
}

form textarea {
  width: 100%;
  resize: vertical;
}

form label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

form button[type="submit"] {
  background-color: #400000;
  color: white;
  padding: 12px 30px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .career-container {
    flex-direction: column;
    align-items: center;
  }

  .career-left,
  .career-right {
    text-align: center;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .values {
    justify-content: center;
  }

  form .row {
    flex-direction: column;
  }
}
.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #9d0202; /* deep blue */
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #002c5c; /* darker blue on hover */
}



/*Animation*/


@layer base {
  html {
    --nav-block-size: 74px;
    --brand-gradient: linear-gradient(227deg,
        #1400c7 0%,
        #00bbff 100%);

    @media (prefers-reduced-motion: no-preference) {
      scroll-behavior: smooth;
    }
  }

  
}

@layer demo {
  .navbar {
    min-block-size: var(--nav-block-size);
    display: grid;
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    background-color: white;
    z-index: var(--layer-3);
    place-items: center end;
    padding-block: var(--size-3);
    padding-inline: var(--size-5);

    @media (width >=600px) {
      padding-inline: 6dvi;
    }
  }

  .nav-cta-btn {
    font-size: var(--font-size-1);
    font-weight: var(--font-weight-7);
    inline-size: max-content;
    white-space: nowrap;
    text-decoration: none;
    padding-block: var(--size-3);
    padding-inline: var(--size-7);
    border: var(--border-size-2) solid transparent;
    color: black;
    position: relative;
    isolation: isolate;

    background: linear-gradient(white, white) padding-box,
      var(--brand-gradient) border-box;
    border-radius: var(--radius-6);
    overflow: hidden;

    &::before {
      content: '';
      display: block;
      position: absolute;
      inset: 0;

      background: var(--brand-gradient);
      mix-blend-mode: screen;
    }

    &:hover {
      color: white;

      &::before {
        background: var(--brand-gradient) padding-box,
          var(--brand-gradient) border-box;
        background-repeat: no-repeat;
        background-size: contain;
        mix-blend-mode: normal;
        z-index: -1;
      }
    }
  }

  .anim-sec {
    /*--section-block-size: max(400px, 100dvb);*/
    --section-block-size: max(400px, 0dvb);
    display: grid;
    background-color: white;
    min-block-size: var(--section-block-size);
    position: relative;
    block-size: 100%;
    display: grid;

    >* {
      grid-area: 1/1;
    }
  }

  .section-wrapper {
    position: relative;
    display: grid;

    @media (width >=960px) {
      grid-template-columns: 1fr 1fr;
    }

    @media (width < 960px) {
      padding-block-start: calc(var(--nav-block-size) + var(--size-7));
      padding-block-end: var(--size-7);
    }
  }

  .video {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    position: relative;
    z-index: -1;
  }


  .meta {
    display: grid;
    gap: var(--size-3);
  }

  .content {
    display: grid;
    inline-size: 100%;
    place-items: center;
    padding-block: var(--size-7);
    padding-inline: var(--size-5);

    @media (width >=960px) {
      padding: var(--size-10);
      min-block-size: 100cqb;
      place-items: center end;
    }

    @media (width < 960px) {
      gap: var(--size-5);
    }
  }

  .mobile-visual {
    inline-size: 100%;
    aspect-ratio: var(--ratio-square);

    @media (width >=960px) {
      display: none;
    }
  }

  .headline {
    font-size: var(--font-size-7);
    font-weight: var(--font-weight-4);
    max-inline-size: var(--size-content-1);
    text-wrap: pretty;

    @media (width < 960px) {
      font-size: var(--font-size-6);
    }
  }

  .desc {
    font-size: var(--font-size-4);
    line-height: 1.5;
    max-inline-size: 40ch;
    text-wrap: pretty;

    @media (width < 960px) {
      font-size: var(--font-size-3);
    }
  }

  .visual {
    display: grid;
    position: sticky;
    block-size: var(--section-block-size);
    inset-block-start: 0;
    container-type: size;

    @media (width < 960px) {
      display: none;
    }
  }

  .video-visual {
    inline-size: 100%;
    block-size: var(--section-block-size);
    display: block;
    position: sticky;
    inset-block-start: 0;
    isolation: isolate;
    filter: hue-rotate(210deg);
  }

  .card-wrapper {
    container-type: size;
    display: grid;
    place-items: center;
    overflow: clip;

    >* {
      grid-area: 1/1;
    }
  }

  .card {
    aspect-ratio: var(--ratio-square);
    inline-size: 70cqi;
    border-radius: var(--radius-3);
    scale: 0.4;
  }

  .card-img {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
  }
  .card-4 {
    translate: 45cqi 40cqb;
    opacity: 0.5;
  }
 
}


/*  */

.slider{
    width: 1300px;
    max-width: 100vw;
    height: 800px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}
@media screen and (max-width: 768px){
    .slider{
        height: 400px;
    }
}
/* Add these styles to your existing CSS */


.gall{
  margin-left: 700px;
  font-size: 38px;
  color: #9d0202;
}
@media (max-width: 768px) {
  .gall{
    margin-left: 25px;
    font-size: 38px;
    color: #9d0202;
  }
  
}



/*Start Contact Section in Home page*/
.contact-box {
    padding: 27px 29px 22px 29px;
    background: #ffffff;
    box-shadow: 0px 0px 100px 0px rgba(226, 228, 231, 1);
    border-radius: 20px;
    margin-top: 25px;
    transition: all 0.3s ease-in-out;
}
.contact-box figure {
    padding-top: 3px;
    text-align: center;
}
.contact-box h4 {
    font-size: 22px;
    font-family: 'PoppinsMedium';
    color: #000;
    text-transform: capitalize;
    margin: 0 0 5px;
}
.contact-box .d-block {
    font-size: 16px;
    line-height: 26px;
    color: #606480;
    font-family:"Josefin Sans", sans-serif;
    text-transform: inherit;
    letter-spacing: 0.02em;
    cursor: pointer;
}
.gridcolm {
    display:flex;
    flex-direction:row;
    gap:2rem;
}
.contact-box h4 {
    font-size: 22px;
    font-family: "Josefin Sans", sans-serif;
    color: #000;
    text-transform: capitalize;
    margin: 0 0 5px;
}
.contact-box .d-block a {
    font-size: 16px;
    line-height: 26px;
    color: #606480;
    font-family:"Josefin Sans", sans-serif;
    text-transform: inherit;
    letter-spacing: 0.02em;
    cursor: pointer;
}
.contact-box .d-block a:hover {color:#9D0202;}
.home-contfrm a:hover {color:rgba(255,255,255,0.7);}
.social-cont-div {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}
.contact-box .d-block:hover {color:#9D0202;}
.contact-box:hover {
    transform: translateY(-5px);
}
.home-social-icon a {
    background: #9d0202;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
}
.home-social-icon a:hover {background:#000;color:#fff;}
.home-social-icon {
    gap: 20px;
    display: none;
}
.home-contfrm {margin-top:20px;}
.pemail {
    font-weight: 800;
    font-size: 17px;
}

/*End Contact Section in Home page*/
.m-version {
    display:none;
}

.content-with-video {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

.left-content {
  flex: 1 1 60%;
  min-width: 300px;
}

.right-video {
  flex: 1 1 35%;
  min-width: 250px;
  margin: auto;
}

.program-video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
