*,
*::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;
}

.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);
}

*.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;
}

.mobile-social {
  display: none;
}


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

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

}
/* hero content eka*/
.hero-container {
  display: flex;
  height: 100vh;
  position: relative;
}

.left-section {
  flex: 2;
  background: white;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.right-section {
  flex: 5;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
  overflow: hidden;
}

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

.carousel-slide {
  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-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg, 
      rgba(16, 21, 44, 0.3) 0%, 
      rgba(66, 133, 244, 0.2) 50%, 
      rgba(37, 99, 235, 0.3) 100%
  );
  z-index: 1;
}

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

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

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

.dot.active::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: pulse 2s infinite;
}

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

.main-heading {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 0.85;
  margin-top: 20px;
  letter-spacing: 6px;
  position: relative;
  font-family: 'Jost', sans-serif;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 160px;
  margin-bottom: -10px;
}

.exam-text {
  color: #2c2c2c;
  width: 600px;
  display: flex;
  align-items: center;
}

.genius-text {
  color: white;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.9);
  position: absolute;
  right: -500px;
  top: 0;
  z-index: 4;
  font-size: 5.5rem;
  font-weight: 800;
  width: 600px;
  display: flex;
  align-items: center;
}

.subheading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 15px;
  letter-spacing: 2px;
  font-family: 'Barlow', sans-serif;
  display: block;
  flex-direction: column;
  gap: 0;
  min-height: 100px;
  position: relative;
  margin-bottom: -5px;
}

.discver {
  color: #737373;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 5px;
  width: 500px;
  display: flex;
  align-items: center;
  margin-top: -52px;
}

.Succeed {
  color: white;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.9);
  position: absolute;
  right: -400px;
  top: 0;
  z-index: 2;
  font-size: 3rem;
  width: 500px;
  display: flex;
  align-items: center;
  letter-spacing: 5px;
  margin-top: -52px;
}

.des {
  margin-top: 1.5rem;
}

.descriptionhead {
  color: #64748b;
  font-size: 18px;
  line-height: 1.5;
  max-width: 500px;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 1.5rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  width: 500px;
}

.register-button {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #2563eb);
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
  margin-top: 1.5rem;
  margin-left: 200px;
  position: relative;
}

.register-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
}

.arrow-icon {
  font-size: 1.2rem;
  transform: rotate(-45deg);
  margin-top: 5px;
}

.carousel-nav {
  position: static;
  margin-top: 1.5rem;
  display: flex;
  gap: 15px;
  align-items: center;
}

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

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

/* Responsive Design */
@media (max-width: 1400px) and (max-height: 800px) {
  .left-section {
      padding: 6rem 0rem 6rem 3rem;
  }
  
  .main-heading {
      font-size: 4rem;
      letter-spacing: 3px;
      margin-top: 15px;
      min-height: 140px;
  }
  
  .genius-text {
      font-size: 4rem;
      right: -380px;
  }
  
  .subheading {
      font-size: 2rem;
      letter-spacing: 1.5px;
      margin-top: 10px;
      min-height: 80px;
  }
  
  .Succeed {
      letter-spacing: 2px;
      right: -280px;
      font-size: 2rem;
  }
  
  .register-button {
      width: 8rem;
      height: 8rem;
      font-size: 0.85rem;
      margin-left: 150px;
      margin-top: 1rem;
  }

  .des {
      margin-top: 1rem;
  }

  .descriptionhead {
      margin-bottom: 1rem;
      min-height: 50px;
      
  }
}

@media (max-width: 767px) {
  body {
      overflow: auto;
  }

  .hero-container {
      flex-direction: column;
      overflow-y: auto;
  }

  .left-section {
      flex: none;
      height: auto;
      padding: 30px 30px;
      min-height: 60vh;
      text-align: center;
  }

  .right-section {
      flex: none;
      height: 40vh;
      min-height: 300px;
  }

  .main-heading {
      font-size: 3rem;
      text-align: center;
      position: relative;
      letter-spacing: 2px;
      margin-top: 10px;
      margin-bottom: 5px;
      min-height: auto;
  }

  .genius-text {
      position: static;
      margin-left: 0;
      color: #333;
      text-shadow: none;
      font-size: 3rem;
  }

  .subheading {
      font-size: 1.5rem;
      text-align: center;
      position: static;
      color: #666;
      text-shadow: none;
      letter-spacing: 1px;
      margin-bottom: 15px;
      margin-top: 5px;
      min-height: auto;
  }

  .discver, .Succeed {
      position: static;
      color: #666;
  }

  .descriptionhead {
      font-size: 16px;
      margin-bottom: 25px;
      max-width: none;
      text-align: center;
      min-height: auto;
     
  }

  .register-button {
      margin: 15px auto;
      width: 120px;
      height: 120px;
      font-size: 0.9rem;
  }

  .carousel-nav {
      bottom: 30px;
      left: 30px;
      margin-top: 1rem;
  }

  .nav-arrow {
      width: 35px;
      height: 35px;
      font-size: 1rem;
  }

  .pagination-dots {
      bottom: 30px;
      right: 30px;
  }

  .des {
      margin-top: 0.5rem;
  }
}

/* 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;
  opacity: 0;
}

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

/* 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;
  }

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


}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
      padding: 15px 20px;
  }
}
/*
  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;  
  }
  
  h1:hover, p:hover {
    color: #4093ff;
  }
    
/* navbar and togle video 

.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-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;
}

/* end */


  .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;
}
  
.container {
  display: flex;
  max-width: 1000px;
  margin-left: 90px;
  margin-top: 52px;
  padding: 20px;
  justify-content: space-between;
}
.text-content {
  max-width: 500px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}
.text-content h1 {
  font-size: 40px;
  font-weight: 350;
  color: #A2A5B5;
}
.text-content h1 span {
  color:#2565E1;
  font-weight: 350;
}
.text-content p {
  font-size: 16px;
  line-height: 1.6;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: rgb(197, 197, 197);
  margin: 20px 0;
}
.cta {
  font-size: 24px;
  color: #0F257A;
  font-weight: bold;
  margin-bottom: 24px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.btn {
  background-color: #2565E1;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn:hover {
  background-color: rgb(80, 80, 116);
}
.image-container img {
  width: 550px;
  height: 300px;
  border-radius: 15px;
  margin-left: 100;
  margin-top: 48px;
}
@media (max-width: 650px) {
  .container {
      flex-direction: column;
      text-align: center;
  }
  .image-container img {
      width: 100%;
  }
}

.phara-btn{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 88px;
  margin-left: 188px;
}

.text-phara{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 18px;
  color: #7B8097;
  gap: 16px;
  width: 450px;
  
}

.intro {
  position: relative;
  width: 100%;
  display: block;
  background: url("../image/image/newintroimg.png");
  display: flex;
  padding: 100px;
  background-size: cover;
  background-position: center;
  flex-direction: column;
  margin-top: 72px;
  margin-bottom: 180px;
}

.heading1{
  font-size: 38px;
  font-family: calibri;
  font-weight: 400;
  text-align: left;
  font-variant: normal;
  width: 55%;
  margin-bottom: 24px;
  justify-content: space-between;
  color: rgb(255, 255, 255);
 
}
.left-phara{
  width: 50%;
  font-family: calibri;
  font-size: 18px;
  margin-bottom: 24px;
  color: rgb(214, 214, 211);  
}
.heading2{
  font-size: 42px;
  font-family: calibri;
  font-weight: 400;
  text-align: left;
  font-variant: normal;
  width: 50%;
  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;
  width: 50px;
  color:#7a7e8f;
}

.right-content{
  font-size: 16px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #e7e7e7;
  width: 39%;
  font-style: italic;
  font-weight: 50; 
}

.intro3{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: auto;
}

.slider {
  max-width: 55%;
  position: relative;
  top: -120px;
  
}
.carasol {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  background-color: #e8eaf0;
  padding: 32px;
  
}

.imgwrapper {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}
.slideimage {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.splide {
  width: 80%;
  max-width: 800px;
  position: relative;
  /* height: 350px; */
}
.splide__slide img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}
.custom-placement-wrapper {
  position: relative;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid rgba(37, 100, 225, 0.4);
  height: 44px;
}
.custom-arrows {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}
.custom-arrows button {
  border: none;
  padding: 10px;
  cursor: pointer;
  background-color: transparent;
  width: 44px;
  height: 44px;
}
.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.custom-pagination button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #999;
  padding: 12px;
  border-bottom: 2px solid #2564e100;
}
.custom-pagination button.active {
  /* color: #2565E1; */
  font-weight: bold;
  border-bottom: 2px solid #2565E1;
}
.company-para{
  max-width: 500px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 18px;
  color: #5c5a5a;
}
.values-1{
    margin-top: 32px;

}
.slider-title{
    margin-bottom: 32px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40px;
    color: #444343;
}

h1, p {
  cursor: none;
}

.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: 500px; 
  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%) 
}

.timeline-section {
  padding: 60px 20px;
  background: rgba(0, 0, 50, 0.6); /* transparent overlay */
  background: url('../image/image/abimg.png') no-repeat center center fixed;
}

.timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-header h1 {
  font-size: 58px;
  margin-bottom: 16px;
  margin-top: 52px;
  font-weight: 400;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: hsl(0, 0%, 97%);

}

.timeline-header p {
  font-size: 16px;
  color: #ccc;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item .circle {
  position: absolute;
  top: 25px;
  width: 14px;
  height: 14px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.left .circle {
  right: -7px;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item.right .circle {
  left: -7px;
}

.timeline-item h3 {
  margin: 0;
  font-size: 18px;
  color: white;
}

.timeline-item p {
  margin-top: 5px;
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item .circle {
    left: 20px;
    right: auto;
  }
}
/* 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 */




@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 screen and (max-width: 768px) {
  .intro {
    padding: 30px 20px;
  }

  .intro3 {
    flex-direction: column;
    gap: 20px;
  }

  .left-phara, .right-content {
    font-size: 0.95rem;
    padding: 0;
  }

  .intro .heading1 h4 {
    font-size: 1.4rem;
  }
}

/* ✅ Optional for very small phones */
@media screen and (max-width: 480px) {
  .intro .heading1 h4 {
    font-size: 1.2rem;
  }

  .left-phara, .right-content {
    font-size: 0.9rem;
  }
}


@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) */


/* 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;
  }
}
@media screen and (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-left: 30px; /* 👈 Reset the desktop margin */
    margin-top: 30px; /* Optional: adjust if needed */
  }

  .separator {
    display: none;
  }

  .nav a {
    font-size: 14px;
  }
}


/* Tablets and below */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
    gap: 30px;
  }

  .text-content {
    width: 100%;
    text-align: center;
  }

  .text-content h1 {
    font-size: 1.6rem;
  }

  .text-content span {
    font-size: 1.6rem;
    color: #0056d2;
  }

  .image-container img {
    max-width: 100%;
    height: auto;
  }

  .phara-btn {
    width: 100%;
    padding: 0 10px;
    margin-top: 20px;
  }

  .text-phara p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .cta {
    font-weight: bold;
    margin-bottom: 10px;
  }

  .btn {
    width: 100%;
    max-width: 248px;
    margin: 0 auto;
    display: block;
  }
}
/* Extra small devices */
@media (max-width: 480px) {

  .container ,.text-content , .image-container , .phara-btn , .text-phara {
    flex-direction: column;
    text-align: center;
    width: 100%;
    gap: 4px;
    margin-left: 0px; /* 👈 Reset the desktop margin */
    margin-top: 30px; /* Optional: adjust if needed */
  }

  .text-content h1 {
    font-size: 1.5rem;
  }

  .text-phara p {
    font-size: 0.85rem;
    
  }

  .cta {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 30px;
    padding-right: 20px;
    margin-bottom: 30px;
  }

  .timeline-item .circle {
    left: 0;
    right: auto;
  }

  .timeline-item .content {
    margin-left: 30px;
    text-align: left;
  }
}

/* ✅ Extra responsive for phones */
@media screen and (max-width: 480px) {
  .timeline-header h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .timeline-header p {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 10px;
  }

  .timeline-item .content {
    font-size: 0.9rem;
    padding: 15px;
  }
}





/* media query naV video  */


/* Smartphones (up to 576px) */
@media (max-width: 576px) {
  .hero-content {
    padding: 0 20px;
    text-align: center;
    transform: translateY(-30%);
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content h4 {
    font-size: 18px;
  }

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

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .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;
  }

  .hero-content {
    padding: 0 80px;
  }

  .hero-content h2 {
    font-size: 48px;
  }

  .hero-content h4 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .hero-content h4 {
    font-size: 1.2rem;
  }

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

  .hero-buttons a {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 0;
  }
}

/* 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;
  }
}

