*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  color: #fff;
  font-family: Arial, sans-serif;
}

.loading-text {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  animation: fade 1.5s infinite;
}

@keyframes fade {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

 body.loaded .preloader {
  display: none;
}

.preloader {
  background:url("./image/loading page.jpg") no-repeat center center fixed;
  background-size: cover;
}

.mode-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  z-index: 999;
  background: rgba(255,255,255,0.2);
  padding: 10px 14px;
  border-radius: 50%;
  transition: 0.3s;
}

.mode-toggle:hover {
  background: rgba(255,255,255,0.4);
}


/*Section Header */

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  
}


.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #f1c40f;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #f1c40f;
}

.nav-links li a:hover::after {
  width: 100%;
}


.loginbtn {
  padding: 8px 20px;
  border: none;
  border-radius: 25px;
  background: #f1c40f;
  color: #2c3e50;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;

}

.loginbtn:hover {
  background: #fff;
  color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);

}


.menu-icon {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;

}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  list-style: none;
  padding: 10px 0;
  z-index: 1001;
}


.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  color: #f1c40f;
  border-radius: 5px;
}


.dropdown:hover .dropdown-menu {
  display: block;
}

#homeLink {
  display: inline-block;
  transition: transform 0.3s ease;
}

.dropdown:hover #homeLink {
  transform: rotate(180deg);
}




@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    flex-direction: column;
    width: 240px;
    padding: 25px 20px;
    border-radius: 0 0 12px 12px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .menu-icon {
    display: block;
  }
}

/* Section Main */

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(2, 25, 79, 0.8), rgba(0, 8, 19, 0.8)),
              url("./image/hero.jpg") no-repeat center center/cover;
  color: #fff;
  line-height: 1.5;
}

.main-content {
  max-width: 800px;
    
}

.top {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  color: #f1c40f;
  background: rgba(255, 255, 255, 0.06);
  font-family: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  
}

.main h1 {
  font-size: 55px;
  margin-bottom: 16px;
  line-height: 1.2;

}

.main h1 strong {
  color: #f1c40f;
}

.maintitle {
  font-size: 18px;
  color: aliceblue;
  margin-bottom: 24px;

}

.btn {
text-decoration: none;
padding: 10px 22px;
border-radius: 30px;
font-weight: 600 ;
background: #f1c40f;
color: #2c3e50;

}

.btn:hover {
  background: #fff;
  color: #2563eb;
}

.avgs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 35px;

}

.avg {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 110px;
}

.num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #f1c40f;

}

.label {
  font-size: 14px;
  color: aliceblue;
}



@media (max-width: 991px) {
  .main h1 {
    font-size: 45px;
  }

  .maintitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .avgs {
    gap: 15px;
  }

  .avg {
    min-width: 90px;
    padding: 10px 16px;
  }

  .num {
    font-size: 20px;
  }

  .label {
    font-size: 13px;
  }
}


@media (max-width: 767px) {
  .main {
    padding: 30px 15px;
  }

  .main h1 {
    font-size: 35px;
  }

  .maintitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .btn {
    padding: 6px 16px;
    font-size: 13px;
  }

  .avgs {
    flex-direction: column;
    gap: 12px;
  }

  .avg {
    min-width: 100%;
    padding: 10px 12px;
  }

  .num {
    font-size: 18px;
  }

  .label {
    font-size: 12px;
  }
}

/* section category */

.categories {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.topsub {
  display: inline-block;   
  font-size: 14px;
  letter-spacing: 2px;
  color: rgb(98, 186, 244);             
  background: white;     
  margin-bottom: 10px;
  padding: 6px 14px;       
  border-radius: 6px;
  border: 2px solid rgb(98, 186, 244);      

}


.toptitle {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 40px;
  line-height: 1.4;
}


.scroll {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.scrolltrack {
  display: flex;
  gap: 20px;
  animation: scroll-left 25s linear infinite;
}

.card img {
  width: 90%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  position: relative;
  top: 15px;
  transition: transform 0.4s ease;
}
.card:hover img {
  transform: scale(1.05);
}

.card {
  min-width: 250px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;  

}

.cardcontent {
  padding: 20px;
}

.cardcontent h3 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 8px;
}

.courses {
  font-size: 14px;
  color: white;
  font-weight: 600;
  display: inline-block;
  margin-top: 5px;
  background: rgb(64, 179, 251);
  padding: 5px 12px;
  border-radius: 8px;
}



@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .toptitle {
    font-size: 24px;
  }
  .scrolltrack {
    gap: 15px;
  }
  .card {
    min-width: 200px;
  }
}


/* commit section */
.commit {
  padding: 80px 20px;
  background: url("./image/commit.jpg") no-repeat center center/cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.commit-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.image {
  position: relative;
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 15px;
}

.image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}


.image:hover img {
  transform: scale(1.05);
}

.overlay h1 {
  color: #ff6600;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);  
  color: #fff;
  padding: 70px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
  line-height: 1.6;
}


.image:hover .overlay {
  opacity: 1;
}



.commit-content {
  flex: 1;
  min-width: 300px;
}

.commit-content h2 {
  font-size: 45px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #1a1a1a;
}

.commit-content p {
  font-size: 16px;
  line-height: 2.7;
  margin-bottom: 35px;
  color: #555;
}


.counts {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.count h3 {
  font-size: 55px;
  color: #ff6600;
  margin-bottom: 5px;
}

.count p {
  font-size: 16px;
  color: black;
}


@media (max-width: 991px) {
  .commit {
    padding: 60px 15px;
  }

  .commit-container {
    gap: 40px;
  }

  .commit-content h2 {
    font-size: 38px;
  }

  .commit-content p {
    font-size: 15px;
    line-height: 2.5;
  }

  .counts {
    gap: 30px;
  }

  .count h3 {
    font-size: 45px;
  }

  .count p {
    font-size: 15px;
  }

  .overlay {
    padding: 50px;
  }
}


@media (max-width: 767px) {
  .commit {
    padding: 40px 10px;
  }

  .commit-container {
    flex-direction: column;
    gap: 30px;
  }

  .commit-content h2 {
    font-size: 30px;
    text-align: center;
  }

  .commit-content p {
    font-size: 14px;
    line-height: 2.2;
    text-align: center;
  }

  .counts {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .count h3 {
    font-size: 35px;
  }

  .count p {
    font-size: 14px;
  }

  .overlay {
    padding: 30px;
  }
}

@media (max-Width: 426px) {
  .overlay {
    font-size: 13px;
  }
}

@media (max-Width: 375px) {
  .overlay {
    font-size: 11px;
  }
}




/* Section latest course */
.latest {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url("./image/background.jpg") no-repeat center center/cover;
  background-attachment: fixed;

}


.latestsub {
  color: rgb(98, 186, 244);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  background: white;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid rgb(98, 186, 244);

}


.latesttitile {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #f1c40f;

}



.latestcard {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;

}


.la-cards {
  display: flex; 
  align-items: center;
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 

}

.la-cards:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #055072, #ff8787);
  /* background: linear-gradient(135deg, #34d2ea, #caf1f9); */
  
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ff6b6b, #ff8787);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  flex-shrink: 0;
  margin-right: 20px; 

}


.text {
  display: flex;
  flex-direction: column; 

}


.la-cards h3 {
  font-size: 20px;
  color: black;
  margin: 0 0 5px 0;
  font-weight: 600;

}


.la-cards p {
  font-size: 15px;
  color: black;
  margin: 0;
}


@media (max-width: 600px) {
  .la-cards {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .flex {
    margin-right: 0;
    margin-bottom: 10px;
  }
}


.course-slider {
  width: 90%;
  margin: auto;
  padding: 20px 0;

}

.course-card {
  width: 300px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  font-family: Arial, sans-serif;
  margin: 10px;

}

.courseimg img {
  width: 90%;
  height: 220px;
  object-fit: cover;
  position: relative;
  left: 20px;
  margin-top: 15px;
  border-radius: 10px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px 0;
  color: #f39c12;
  font-size: 14px;
}

.rating span {
  color: #333;
  font-weight: 500;
}

.instructor {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;

}

.instructor img {
  width: 40px;
  height: 40px;
  border-radius: 50%;

}

.instructor h4 {
  margin: 0;
  font-size: 16px;
  color: #333;

}

.instructor .role {
  margin: 0;
  font-size: 13px;
  color: #777;

}

.course-title {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 15px;
  color: #111;

}

.course-info {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px 15px;
  font-size: 14px;
  color: #555;

}

.course-info i {
  margin-right: 5px;
  color: #3498db;

}

@media (max-width: 376px) {
  .courseimg img {
  width: 90%;
  height: 220px;
  left: 13.5px;
  margin-top: 15px;
  border-radius: 10px;
}

}

@media (max-width: 376px) {
  .courseimg img {
  width: 90%;
  height: 200px;
  left: 12px;
  margin-top: 15px;
  border-radius: 10px;
}


}


/* section monitor */

.monitorbody {
  background: linear-gradient(200deg, rgb(237, 246, 143), #f197e5);

}

.live h1 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  color: #ff6600; 
  letter-spacing: 1px;
  /* margin-top: 50px; */ 
  position: relative;
  top: 30px;
}


.monitor {
  width: 800px;
  height: 500px;
  background: #333;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  margin: 50px auto;
  

}

.monitor::after {
  content: '';
  width: 100px;
  height: 20px;
  background: #555;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;

}

.screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
  box-sizing: border-box;
  background: url("./image/background.jpg") no-repeat center center/cover;
  background-attachment: fixed;

}

.imgcontainer {
  position: relative;
  overflow: hidden;
  border-radius: 10px;

}

.imgcontainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s;

}

.imgcontainer:hover img {
  transform: scale(1.05);
}

.overtext {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.imgcontainer:hover .overtext {
  opacity: 1;
}


@media (max-width: 1024px) {
  .monitor {
    width: 90%;
    height: 400px;
    padding: 15px;
  }

  .screen {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
  }

  .overtext {
    font-size: 14px;
    padding: 8px;
  }
}


@media (max-width: 600px) {
  .monitor {
    width: 95%;
    height: auto; 
    padding: 10px;
  }

  .screen {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 150px); 
    gap: 5px;
  }

  .imgcontainer img {
    height: 100%;
  }

  .overtext {
    font-size: 12px;
    padding: 6px;
  }
}

@media (max-width: 375px) {
  .live h1 {
    font-size: 20px;
  }

  .imgcontainer img {
    height: 100%;
  }

  
}

/* section reviews */

.reviews {
  padding: 60px 40px;
  background: #f9fafc;
  text-align: center;
}


.reviewsubtitle {
  margin-bottom: 40px;
}

.reviewtitle {
  font-size: 18px;
  color: #4a90e2;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.reviewsub {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}


.testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}


.reviewcard {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviewcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  background: linear-gradient(200deg, rgb(237, 246, 143), #f197e5);


}


.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quotebadge {
  font-size: 28px;
  color: #4a90e2;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}


.card-text {
  margin: 15px 0;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}


.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: #222;
  font-size: 17px;
}

.author-role {
  font-size: 14px;
  color: #777;
}

.stars span {
  font-size: 18px;
  color: gold;
}

.stars .muted {
  color: #ccc;
}


@media (max-width: 1024px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials {
    grid-template-columns: 1fr;
  }

  .reviewsub {
    font-size: 28px;
  }
}


/* section newsletter */

.news {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* background: linear-gradient(to right, #e0f2f1, #bbdefb, #90caf9); */
  background: url("./image/background.jpg") no-repeat center center/cover;
  background-attachment: fixed;

  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.letter {
  background: linear-gradient(to right, #e0f2f1, #bbdefb, #90caf9);
  max-width: 650px;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.letter:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}


.letter h2 {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
}

.letter h2 .highlight {
  color: #2d6cdf; 
}


.benefits {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: #333;
  font-size: 16px;
  font-weight: 500;

}

.benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefits i {
  color: #009688;
  font-size: 17px;
}



.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.newsletter-form input {
  padding: 10px 15px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 250px;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #4c6ef5;
}

.newsletter-form input:invalid {
  border-color: #e63946; 
}

.newsletter-form input:valid {
  border-color: #2ecc71; 
}

.btn-subscribe {
  background: #4c6ef5;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: backg 0.3s ease;
}

.btn-subscribe:hover {
  background: #3b5bdb;
}



@media (max-width: 500px) {
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form input,
  .btn-subscribe {
    width: 100%; 
  }
}




/* section footer */

.footer {
  background: linear-gradient(135deg, rgba(2, 25, 79, 0.8), rgba(0, 8, 19, 0.8)),
              url("./image/footer.jpg") no-repeat center center/cover;
  color: white;
  padding: 60px 20px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.footcontainer {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}


.footting img {
  width: 160px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footting p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: white;
}

.social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social a:hover {
  background: rgb(5, 241, 162);
  color: #1e293b;
  transform: scale(1.1);
}


.footlink h4,
.footercol h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
  position: relative;
}


.footlink h4::after,
.footercol h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: rgb(5, 241, 162);
  margin-top: 6px;
  border-radius: 2px;
}


.footlink ul,
.footercol ul {
  list-style: none; 
  padding: 0;
  margin: 0;
}


.footlink ul li,
.footercol ul li {
  margin-bottom: 10px;
}


.footlink ul li a,
.footercol ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block; 
}


.footlink ul li a:hover,
.footercol ul li a:hover {
  color: rgb(5, 241, 162);
  /* text-decoration: underline; */
}

.footercol p {
  font-size: 14px;
  margin-bottom: 10px;
  color: white;
}

.footercol p i {
  margin-right: 8px;
  color: rgb(5, 241, 162);
}


.applinks {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.applinks img {
  height: 38px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.applinks img:hover {
  transform: scale(1.08);
}

.footerbottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 16px;
  color: white;
  position: relative;
  left: 390px;
}

.footerbottom span {
  color: rgb(5, 241, 162);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .footerbottom {
    left: 200px; 
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  .footerbottom {
    left: 0; 
    font-size: 14px;
    text-align: center;
  }
}


@media (max-width: 992px) {
  .footcontainer {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  
}

@media (max-width: 600px) {
  .footcontainer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social a {
    margin: 5px;
  }
  .applinks {
    justify-content: center;
  }

  .footlink h4::after,
  .footercol h4::after {
 display: none;
}

  
}

