*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #f9f9f9;
    position: relative;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(16, 21, 44, 0.37);
    transition: all 0.3s ease;
    padding: 15px 30px;
    z-index: 9999;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(7, 7, 24, 0.466);
    padding: 6px 40px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.295);
    transform: translateY(-2px);
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 20px;
    z-index: 10;
}

.logo-container img {
    height: 50px;
    width: 50px;
    background: #4285f4;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: white;
    margin-left: 10px;
}

.logo-text .title {
    font-size: 20px;
    font-weight: bold;
}
/*
.menu-toggle {
    display: flex;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    position: relative;
}*/

.navbar-links2 {
    display: flex;
    gap: 40px;
    padding: 20px 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
}

.navbar-links2 a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 5px 0;
}

.navbar-links2 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.navbar-links2 a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    background-color: rgba(34, 34, 34, 0.24);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* media query */


/* Smartphones (up to 576px) */
@media (max-width: 576px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .navbar-links {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    margin-left: 0;
  }

  .logo-container {
    flex-direction: column;
    align-items: flex-start;
  }

  *.social-icons {
    display: none;

  }
}


/* Mobile styles */
@media (max-width: 768px) {
  /* Show hamburger toggle */
  .menu-toggle {
    display: block;
  }

  .logo-text {
    display: none;
  }

  /* Navbar layout stack */
  .navbar {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }

  .logo-container {
    display: flex;
    align-items: center;
  }

  .navbar-links {
    display: none; /* Keep hidden by default */
    width: 100%; /* Make it full width */
    left: 0; /* Position from the left edge */
    top: 80px; /* Adjust if needed */
    right: 0; /* Remove right for full width */
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
  
}

  *.navbar-links a {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .navbar-links.active {
    display: flex;
  }

  .allcon {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }
}


/* hero section*/

.hero-container {
  position: relative;
  height: 100vh;
  width: 100%;
}

.carousel-container1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.1);
}

.carousel-slide1.active1 {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg, 
      rgba(25, 30, 54, 0.6) 0%, 
      rgba(57, 102, 173, 0.4) 50%, 
      rgba(17, 76, 204, 0.6) 100%
  );
  z-index: 1;
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 80px;
  z-index: 10;
  color: white;
}

.main-heading {
  font-size: 8rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 30px;
  font-family: 'Jost', sans-serif;
  margin-bottom: 40px;
  text-shadow: 3px 3px 12px rgba(0,0,0,0.8);
  transition: all 0.6s ease;
}

.subheading {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 9px;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  transition: all 0.6s ease;
}

.descriptionhead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 40px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  transition: all 0.6s ease;
}

.pagination-dots1 {
  display: flex;
  gap: 12px;
  z-index: 15;
  position: absolute;
  bottom: 60px;
  right: 60px;
}

.dot1 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.dot1.active1 {
  background: white;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.dot1.active1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulsee 2s infinite;
}

@keyframes pulse {
  0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
  }
  100% {
      transform: translate(-50%, -50%) scale(1.5);
      opacity: 0;
  }
}

.carousel-nav1 {
  position: absolute;
  bottom: 60px;
  left: 60px;
  display: flex;
  gap: 15px;
  align-items: center;
  z-index: 15;
}

.nav-arrow1 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow1:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Text animation classes */
.text-fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.text-fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1400px) {
  .content-overlay {
      padding: 0 60px;
  }
  
  .main-heading {
      font-size: 5.7rem;
      letter-spacing: 18px;
  }
  
  .subheading {
      font-size: 3rem;
      letter-spacing: 4.8px;
  }
  
  .register-button {
      width: 120px;
      height: 120px;
      font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .content-overlay {
      padding: 0 40px;
      align-items: center;
      text-align: center;
  }
  
  .main-heading {
      font-size: 5rem;
      letter-spacing: 15px;
  }
  
  .subheading {
      font-size: 2.5rem;
      letter-spacing: 4px;
  }
  
  .descriptionhead {
      text-align: center;
      max-width: 600px;
  }
}

@media (max-width: 768px) {
  body {
      overflow: auto;
  }
  
  .hero-container {
      height: 100vh;
  }
  
  .content-overlay {
      padding: 0 30px;
      justify-content: center;
  }
  
  .main-heading {
      font-size: 3.5rem;
      letter-spacing: 8px;
      margin-bottom: 30px;
  }
  
  .subheading {
      font-size: 1.8rem;
      letter-spacing: 3px;
      margin-bottom: 30px;
  }
  
  .descriptionhead {
      font-size: 16px;
      margin-bottom: 30px;
  }
  
  .register-button {
      width: 100px;
      height: 100px;
      font-size: 0.8rem;
  }
  
  .carousel-nav {
      bottom: 30px;
      left: 30px;
  }
  
  .nav-arrow {
      width: 45px;
      height: 45px;
      font-size: 1rem;
  }
  
  .pagination-dots {
      bottom: 30px;
      right: 30px;
  }
}

@media (max-width: 480px) {
  .content-overlay {
      padding: 0 20px;
  }
  
  .main-heading {
      font-size: 2.5rem;
      letter-spacing: 4px;
  }
  
  .subheading {
      font-size: 1.4rem;
      letter-spacing: 2px;
  }
  
  .descriptionhead {
      font-size: 14px;
  }
  
  .register-button {
      width: 80px;
      height: 80px;
      font-size: 0.7rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.main-heading, .subheading, .descriptionhead, .register-button {
  animation: fadeInUp 0.8s ease forwards;
}

.subheading {
  animation-delay: 0.2s;
}

.descriptionhead {
  animation-delay: 0.4s;
}

.register-button {
  animation-delay: 0.6s;
}

/* end header*/


  h1, p {
    cursor: none;
  }
  
  .cursor {
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: #170252;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.2s ease-out;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }
  
  .cursor-hover {
    width: 35px;
    height: 35px;
    background-color: #4093ff; /* Color on hover */
  }
  
  h1:hover, p:hover {
    color: #4093ff;
  }
    
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: white;
  }
  
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5) contrast(1.2) hue-rotate(200deg);
    z-index: 0;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(32, 40, 146, 0.795), rgba(34, 70, 148, 0.281), rgba(37, 99, 214, 0.103));
    z-index: 1;
  }
  
  
  /*
  .navbar {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(16, 21, 44, 0.37); 
    transition: all 0.3s ease; 
    padding: 10px 30px;
    z-index: 9999;
    
      }

      
  
      .navbar.scrolled {
        background: rgba(7, 7, 24, 0.466); 
        padding: 4px 30px;              
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.295); 
      }
  
      .navbar {
        transform: translateY(0);
      }
      .navbar.scrolled {
        transform: translateY(-2px);
      }
  
  
  .navbar-links {
    display: flex;
    gap: 40px;
    padding: 20px 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    margin-left: 20rem;
    
  }
  .navbar-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 5px 0;
  }
  .navbar-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
  }
  .navbar-links a:hover::after {
    width: 100%;
  }
  
  
  .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: 4px;
  }
  
  .phone img {
    width: 14px;
    height: 14px;
  }
  
  .social-icons img {
    width: 18px;
    height: 18px;
  }
  
  */
  
  .contact-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .phone {
    
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    
  }
  .divider {
    width: 100px;
    height: 1px;
    background-color: white;
    opacity: 0.5;
  }
  .social-icons {
    display: flex;
    gap: 4px;
    margin-top: 4px;
    margin-right: 48px;
  }
  .social-icons a {
    color: rgba(128, 128, 128, 0.192);
    font-size: 20px;
    background-color: #2222223d;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
    gap: 4px;
  }
  .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.205);
    color: rgba(0, 0, 0, 0.089);
  }
  
  .logo img {
    height: 50px;
  }
  /*
  .hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-40%);
    text-align: left;
    padding: 0 120px;
    max-width: 1200px;
  }
  
  .hero-content h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  .hero-content h2 {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.4;
    color: #ffffff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  .hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
  }
  
  .hero-buttons a {
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  .btn-primary {
    background: white;
    color: #103d99;
  }
  
  .btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
  }
  
  .hero-buttons a:hover {
    opacity: 0.85;
  }
  */
  
  
  
  
  .logo-container {
    display: flex;
    align-items: center;
   
  }
  
  .logo-container img {
    height: 50px;
    width: auto;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    color: white;
    margin-left: 10px;
  }
  
  .logo-text .title {
    font-size: 18px;
    font-weight: bold;
  }
  
  .logo-text .subtitle {
    font-size: 12px;
  }
  
  .social-icons {
    display: flex;
    gap: 8px;
    
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
  }
  
  .social-icons img {
    width: 20px;
    height: 20px;
  }

  .nav-links {
    display: flex;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-size: 16px;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    background-color: #575757;
    border-radius: 5px;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    margin-left: 100px;
    margin-top: 62px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.nav a {
    text-decoration: none;
    font-size: 18px;
    color: #A2A5B5;
    font-weight: normal;
}
.nav a.active {
    color: #1B1C22;
    font-weight: bold;
    position: relative;
}
.nav a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: blue;
    margin-top: 5px;
}
.nav .separator {
    color: blue;
    font-size: 18px;
}
  

/* footer */

.intro2 {
  position: relative;
  width: 100%;
  display: block;
  background: url("../image/image/newintroimg.png");
  display: flex;
  padding: 50px;
  background-size: cover;
  background-position: center;
  flex-direction: column;
}



.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #fff;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  margin-right: 15px;
}

.footer-logo-text .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 14px;
}

.footer-social h4 {
  margin-bottom: 15px;
  color: #dbdee0;
}

.social-icons {
  display: flex;
  gap: 8px;
  
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 15px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-icon img {
  width: 20px;
  height: 20px;
}

.contact-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-links a::before {
  content: '→';
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  margin-right: 12px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 0 20px;
  background: #314faf;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #314faf;
}


.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

.footer-col .footer-contact h4 {
  margin-bottom: 15px;
  color: #dbdee0;
}

:root {
  --primary: #3a86ff;
  --secondary: #8338ec;
  --dark: #212121;
  --light: #f8f9fa;
  --gray: #6c757d;
  --footer-bg: #0f172a;
}



/* end */

.ceo-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
  padding: 60px 8%;
  background-color: #f9f9f9;
  color: #ccc;
  flex-wrap: wrap;
}

.ceo-content {
  flex: 1;
  max-width: 50%;
}

.ceo-content h2 {
  font-size: 2rem;
  color: #4A4A4A;
  margin-bottom: 10px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.ceo-content h4 {
  font-weight: bold;
  font-size: 1rem;
  color: #4A4A4A;
  margin-bottom: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.ceo-content p {
  line-height: 1.6;
  font-size: 1rem;
  color: #7B8097;
  margin-bottom: 30px;
}

.ceo-image {
  flex: 1;
  max-width: 45%;
  text-align: center;
}

.ceo-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.card {
  width: 300px;
  border-radius: 15px;
  overflow: hidden;
  background: #e9ebee;
  text-align: center;
  box-shadow: 0 6px 10px rgba(63, 63, 63, 0.2);
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 20px;
  
}

.name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.position {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.description1{
  color: #A2A5B5;
  font-size: 15px;
  margin-bottom: 32px;
  padding: 10px;
  
}
.description {
  font-size: 14px;
  color: #242424;
  line-height: 1.4;
  margin-bottom: 15px;
  justify-content: center;
  display: flex;
  padding-left: 10px;
}


.divsection{
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-bottom: 72px;
}

.testomial-container { 
    display: flex; 
    width: 100%; 
    height: 60vh; 
    margin-bottom: 200px;
  } 
  
  .para-section { 
    font-size: 42px;
    color:#0F257A;
    font-family: calibri;
    font-weight: 400;
    text-align: left;
    width: 45%;
    margin-top: 84px;
    margin-left: 100px;
    margin-bottom: 32px;
    
     } 

.para-sectionparagraph {
  font-size: 18px;
  font-family: calibri;
  font-weight: 500;
  text-align: left;
  margin-top: 32px;
  margin-left: 0px;
  margin-bottom: 32px;
  
}

.image { 
    position: relative; 
    padding: 32px; 
    flex: 1; 
  } 
  .image-01 {
    max-width: 380px; 
    position: absolute;
    width: 100%; 
    height: auto; 
    top: 90%; 
    left: 50%; 
    transform: translate(-50%, -50%);
  } 

  .review {
    max-width: 350px; 
    font-size: 18px;
    color:#4058B0;
    font-family: calibri;
    background: white; 
    padding: 24px; 
    border-radius: 30px; 
    position:absolute; 
    top: 95%; 
    left: -50%; 
    transform: translateX(50%) 
  }
  

  /* Container */
.container {
    padding: 50px 25px;
    background:  url("../image/image/services-bg.png");}
  
  /* Heading */
  
  .description {
    color: #ccc;
    font-size: 16px;
    margin-top: 16px;
    width: 65%;
  }
  
  /* Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto;
  }
  
  /* Service Card */
  .service-card {
    background-color: #1e293b;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .service-number {
    background-color: white;
    color: rgb(209, 209, 209);
    font-weight: bold;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #276EF1;
    font-weight: bold;
    font-size: 16px;
  }
  
  .icon {
    font-size: 32px;
    color: #276EF1;
    margin-top: 24px;
    
  }
  
  .service-card h3 {
    font-size: 18px;
    margin: 16px 0;
    color: #ffffff;
  }
  
  .service-card p {
    font-size: 14px;
    color: #bbb;
  }
  .service-headline{
    margin-left: 100px;
  }

  .headline {
    color: #ffffff;
    font-family: calibri;
    font-size: 42px;
    text-align: left;
    width: 45%;
  }
  
  .heading {
    font-size: 26px;
    font-weight: lighter;
    font-family: calibri;
    color: #0F257A;
    padding-top: 32px;
    padding-left: 100px;
  
  }

  



  .product-section {
    display: flex;
    justify-content: space-between;
    padding: 80px 10%;
    background-color: #f4f7fc;
    flex-wrap: wrap;
  }
  
  .product-content {
    flex: 1;
    max-width: 50%;
  }
  
  .product-content h2 {
    color: #0a197d;
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .tabs {
    display: flex;
    gap: 40px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #999;
  }
  
  .tab {
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
  }
  
  .tab.active {
    color: #0a197d;
  }
  
  .tab.active::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background: #0a197d;
    bottom: 0;
    left: 0;
  }
  
  .product-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin: 25px 0 10px;
    color: #0a197d;
  }
  
  .product-description {
    color: #999;
    line-height: 1.6;
    max-width: 90%;
  }
  
  .resources h4 {
    margin-top: 40px;
    margin-bottom: 10px;
    color: #0a197d;
  }
  
  .resource {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .resource:hover .arrow {
    transform: translateX(5px);
  }
  
  .arrow {
    font-size: 1.2rem;
    transition: 0.3s ease;
  }
  
  .product-image {
    flex: 1;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product-image img {
    max-width: 100%;
    height: auto;
  }


  .stats-section {
    background-color: #1B1C22;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
  }

  .stats-section h2 {
    font-size: 2.5rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    margin-bottom: 30px;
  }

  .stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .stat-label {
    font-size: 1rem;
    color: #d1d1d1;
  }

  .benefits-section {
    background-color: #f1f1f1;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .benefit-card {
    background-color: white;
    width: 200px;
    padding: 40px 20px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
  }

  .benefit-card::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 25px solid white;
    position: absolute;
    top: -25px;
    left: calc(50% - 25px);
  }

  .icon-circle {
    background-color: #D9D9D9;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }

  .benefit-title {
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.1rem;
    color: #4A4A4A;
  }

  @media (max-width: 768px) {
    .stats-container {
      flex-direction: column;
      gap: 20px;
    }

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


  .heading2{
    font-size: 42px;
    font-family: calibri;
    font-weight: 400;
    text-align: left;
    font-variant: normal;
    width: 55%;
    margin-top: 84px;
    margin-left: 100px;
    margin-bottom: 32px;
    justify-content: space-between;
    color: #0F257A;
    
  }
  .left-phara2{
    width: 60%;
    font-family: calibri;
    font-size: 18px;
    margin-left: 100px;
    margin-bottom: 32px;
    color:#7a7e8f;
  }
  


  .testimonials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding-top: 48px;
  }

  .card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
  }

  .user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .user-details h4 {
    margin: 0;
    font-size: 1.1rem;
  }

  .user-details p {
    margin: 0;
    font-size: 0.9rem;
    color: gray;
  }

  .message {
    font-size: 0.9rem;
    margin: 15px 0;
    color: #333;
  }

  .rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .stars {
    color: orange;
  }

  @media (max-width: 768px) {
    .hero-content h4 {
      font-size: 1.2rem;
    }
  
    .hero-heading h2 {
      font-size: 1.8rem;
    }
  
    .buttons {
      flex-direction: column;
      gap: 15px;
    }
  
    .buttons a {
      padding: 10px 25px;
      font-size: 1rem;
      max-width: 150px;
    }
  }
  
  /* Extra Small Mobile Styles */
  @media (max-width: 480px) {
    .hero-content h4 {
      font-size: 1rem;
    }
  
 
  
    .buttons a {
      padding: 8px 20px;
      font-size: 0.9rem;
      max-width: 130px;
    }
  }
  
  
  @media (max-width: 1024px) {
    .seo-section {
      gap: 30px;
      padding: 50px 30px;
    }
  
    .left-content h1 {
      font-size: 2rem;
    }
  
    .left-content h2 {
      font-size: 1.3rem;
    }
  
    .right-content p {
      font-size: 0.95rem;
    }
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .seo-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
    }
  
    .left-content,
    .right-content {
      width: 100%;
    }
  
    .left-content h1 {
      font-size: 1.8rem;
    }
  
    .left-content h2 {
      font-size: 1.2rem;
    }
  
    .right-content p {
      font-size: 0.95rem;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 480px) {
    .left-content h1 {
      font-size: 1.6rem;
    }
  
    .left-content h2 {
      font-size: 1rem;
    }
  
    .right-content p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .image-container {
        padding-right: 0;
        margin-bottom: 15px;
    }
  }
  
  @media (max-width: 992px) {
    .intro {
      padding: 0 30px;
    }
  
    .heading1 h4 {
      font-size: 24px;
    }
  
    .left-phara {
      font-size: 15px;
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    .intro {
      padding: 0 20px;
    }
  
    .heading1 h4 {
      font-size: 20px;
    }
  
    .left-phara {
      font-size: 14px;
      text-align: center;
    }
  }
  
  
  @media (max-width: 992px) {
    .card {
      width: 45%;
    }
  }
  
  /* Small Screens - Mobiles */
  @media (max-width: 576px) {
    .divsection {
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
    }
  
    .card {
      width: 100%;
      max-width: 340px;
    }
  }
  
  
  @media (max-width: 1024px) {
    .testomial-container {
      gap: 20px;
      padding: 50px 40px;
    }
  
    .para-section h4 {
      font-size: 1.8rem;
    }
  
    .para-sectionparagraph p {
      font-size: 1rem;
    }
  
    .review p {
      font-size: 0.95rem;
    }
  }
  
  /* Tablets (≤768px) */
  @media (max-width: 768px) {
    .testomial-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 30px;
    }
  
    .para-section,
    .para-sectionparagraph,
    .image {
      width: 100%;
     
    }
  
    .para-section h4 {
      font-size: 1.6rem;
    }
  
    .para-sectionparagraph p,
    .review p {
      font-size: 0.95rem;
    }
  }
  
  /* Mobile (≤480px) */
  @media (max-width: 480px) {
    .para-section h4 {
      font-size: 1.2rem;
    }
  
    .para-sectionparagraph p,
    .review p {
      font-size: 0.9rem;
      line-height: 1.6;
     
    }
  
    .testomial-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-right: 70px;
     
    }
  }
  
  
  @media (max-width: 1024px) {
  
    .container {
      gap: 50px;
      padding: 50px 30px;
    }
  
  
  
    .service-headline {
      padding: 50px 30px;
      text-align: center;
    }
  
    .service-headline .headline {
      font-size: 2rem;
    }
  
    .service-headline .description {
      font-size: 1rem;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      padding: 0 30px;
    }
  
    .service-card {
      padding: 20px;
    }
  
    .service-card h3 {
      font-size: 1.2rem;
    }
  
    .service-card p {
      font-size: 0.95rem;
    }
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
  
    .container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
      
    }
  
    .service-headline {
      padding-top:170px;
      text-align: center;
      
    }
  
    .service-headline .headline {
      font-size: 1.8rem;
      width: 100%;
      align-items: center;
      text-align: center;
    }
  
    .service-headline .description {
      font-size: 0.95rem;
      width: 100%;
      align-items: center;
      text-align: center;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 0 20px;
    }
  
    .service-card {
      padding: 20px;
      text-align: center;
    }
  
    .service-card h3 {
      font-size: 1.1rem;
    }
  
    .service-card p {
      font-size: 0.9rem;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 480px) {
  
    .service-headline {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 50px;
    }
  
    .service-headline .headline {
      font-size: 1.6rem;
    }
  
    .service-headline .description {
      font-size: 0.9rem;
    }
  
    .service-card h3 {
      font-size: 1rem;
    }
  
    .service-card p {
      font-size: 0.85rem;
    }
  }
  
  
  @media (max-width: 1024px) {
    .heading2 h4 {
      font-size: 1.8rem;
    }
  
    .left-phara2 p {
      font-size: 1rem;
      padding: 0 30px;
    }
  }
  
  /* Tablets (≤768px) */
  @media (max-width: 768px) {
    .heading2 h4 {
      font-size: 1.6rem;
      padding: 0 20px;
    }
  
    .left-phara2 p {
      font-size: 0.95rem;
      padding: 0 20px;
    }
  }
  
  /* Mobile Devices (≤480px) */
  @media (max-width: 480px) {
    .heading2 h4 {
      font-size: 1.4rem;
    }
  
    .left-phara2 p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 1024px) {
    .address-section {
      gap: 30px;
      padding: 30px 40px;
    }
  
    .heading {
      font-size: 1.6rem;
    }
  
    .contact-list li {
      font-size: 0.95rem;
    }
  }
  
  /* Tablets & Small Devices */
  @media (max-width: 768px) {
    .address-section {
      flex-direction: column;
      align-items: left;
      text-align: left;
      padding: 30px 20px;
    }
  
    .heading {
      font-size: 1.4rem;
    }
  
  
    .address {
      max-width: 90%;
    }
  
    .contact-list li {
      font-size: 0.95rem;
    }
  }
  
  /* Mobile Devices */
  @media (max-width: 480px) {
    .heading {
      font-size: 1.3rem;
    }
  
    .contact-list li {
      font-size: 0.9rem;
    }
  }
  
  
  
  /* Tablet View */
  @media (max-width: 768px) {
    .slider {
      max-width: 90%;
    }
  
    .slider-title {
      font-size: 1.3em;
    }
  
    .company-para {
      font-size: 0.95em;
    }
  }
  
  /* Mobile View */
  @media (max-width: 480px) {
    .slider {
      max-width: 100%;
    }
  
    .slider-title {
      font-size: 1.1em;
    }
  
    .company-para {
      font-size: 0.9em;
    }
  
    .custom-placement-wrapper {
      flex-direction: column;
    }
  }
  
  
  .cursor {
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: #170252;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.2s ease-out;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }
  
  .cursor-hover {
    width: 35px;
    height: 35px;
    background-color: #4093ff; /* Color on hover */
  }
  
  h1:hover, p:hover {
    color: #4093ff;
  }
  
  
  /* Hamburger menu (hidden by default) */
  .hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 65px;
      right: 0;
      background-color: rgba(0, 0, 0, 0.9);
      width: 100%;
      padding: 10px 0;
      z-index: 999;
    }
  
    .nav-links a {
      padding: 15px;
      margin: 0;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
  
    .hamburger {
      display: block;
    }
  
    .navbar {
      flex-wrap: wrap;
    }
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: rgba(0, 0, 0, 0.9);
      position: absolute;
      top: 70px;
      right: 0;
      width: 100%;
      padding: 20px;
      text-align: right;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  
  /* Tablet & Medium Screens */
  @media (max-width: 1024px) {
    .image {
      gap: 20px;
      padding: 30px;
    }
  
    .image-01 {
      max-width: 250px;
    }
  
    .review p {
      font-size: 0.95rem;
    }
  }
  
  /* Small Devices (Tablets & Mobiles) */
  @media (max-width: 768px) {
    .image {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
    }
  
    .image-01 {
      max-width: 80%;
    }
  
    .review {
      max-width: 100%;
    }
  
    .review p {
      font-size: 0.95rem;
      padding: 0 10px;
    }
  }
  
  /* Extra Small Devices */
  @media (max-width: 480px) {
    .image-01 {
      max-width: 100%;
    }
  
    .review p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 1024px) {
    .map {
      padding: 40px 30px;
      text-align: center;
      
    }
  
    .map iframe {
      max-width: 100%;
      height: auto;
    }
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .map {
      padding: 30px 20px;
    }
  
    .map iframe {
      width: 100%;
      height: auto;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 480px) {
    .map {
      padding: 20px 10px;
    }
  
    .map iframe {
      width: 100%;
      height: auto;
    }
  }
  
  @media (max-width: 1024px) {
    .footer {
      padding: 50px 40px;
    }
  }
  
  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-section {
      
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 480px) {
   
    .footer {
      padding: 30px;
    }
  
    .footer-section {
      margin-bottom: 25px;
    }
  
    .footer h3 {
      font-size: 1rem;
    }
  
    .footer li,
    .footer a,
    .company-description {
      font-size: 0.9rem;
    }
  }

  

  
/* Smartphones (up to 576px) */
@media (max-width: 576px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .navbar-links {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    margin-left: 0;
  }

  .logo-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icons {
    display: none;

  }
}


/* Tablets (between 577px and 768px) */
/* Show hamburger toggle on mobile */
/* Default hamburger menu hidden */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 10000;
  margin-left: auto;
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Show hamburger toggle */
  .menu-toggle {
    display: block;
  }

  .logo-text {
    display: none;
  }

  /* Navbar layout stack */
  .navbar {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .logo-container {
    display: flex;
    align-items: center;
  }

  .navbar-links {
    display: none; /* Keep hidden by default */
    width: 100%; /* Make it full width */
    left: 0; /* Position from the left edge */
    top: 80px; /* Adjust if needed */
    right: 0; /* Remove right for full width */
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
  
}

  .navbar-links a {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .navbar-links.active {
    display: flex;
  }

  .allcon {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }
}



/* Small desktops and laptops (between 769px and 1024px) */
@media (max-width: 1024px) {
  .navbar-links {
    gap: 20px;
    flex-direction: column;
    background: black;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
  }
}


/* Tablet view (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero-content h4 {
    font-size: 1.4rem;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-buttons a {
    padding: 11px 22px;
    font-size: 1.1rem;
    border-radius: 0;
  }
}

/* Desktop view (1025px and above) 
@media (min-width: 1025px) {
  .hero-content h4 {
    font-size: 1.5rem;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .hero-buttons a {
    padding: 12px 25px;
    font-size: 1.2rem;
    border-radius: 0;
  }
}*/

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(to bottom, rgba(32, 40, 146, 0.795), rgba(34, 70, 148, 0.281), rgba(37, 99, 214, 0.103));
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px;
    text-align: right;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


.container3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 72px;

}

.carousel-title3 {
  color: #1e3a8a;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.carousel-container3 {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .carousel-slide {
      flex-direction: row;
  }
}

.carousel-image {
  flex: 1;
  width: 100%;
}

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

.carousel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 32px;
  padding: 20px 0;
}

.intro-text {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.quote-text {
  color: #4A4A4A;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 56px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.date-text {
  color: #6b7280;
  font-size: 12px;
  margin-bottom: 32px;
}

.description-text {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  width: 85%;
  margin-bottom: 20px;
}

.continue-reading {
  display: flex;
  align-items: center;
  color: #2563eb;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  background: none;
  border: none;
  margin-top: 15px;
  text-decoration: none;
}

.continue-reading:hover {
  color: #1d4ed8;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  margin-left: 5px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.nav-button {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: white;
}

.nav-button-prev {
  margin-left: 10px;
}

.nav-button-next {
  margin-right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.dot {
  height: 8px;
  width: 8px;
  background-color: #d1d5db;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 32px;
  background-color: #2563eb;
  border-radius: 4px;
}

.carousel-phara {
color: #999ea5;
font-size: 16px;
line-height: 1.6;
margin-bottom: 56px;
font-weight: lighter;
width: 60%;
}