:root {
    --primary: #1a45a1;
    --secondary: #1a45a1;
    --accent: #1a45a1;
    --dark: #1f2937;
    --light: #f9fafb;
    --gray: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #1f29372c);
}

.container {
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 20px;
    
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-image: linear-gradient(to bottom, #1a45a1, #366bdf);
}

header.scrolled {
    background-image: linear-gradient(to bottom, #1a45a1, #366bdf);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: white;
}
.logo img{
    transition: all 0.3s;
    /* width: 35vmin;
    height: 18vmin; */
}

@media (max-width: 480px){
    .logo img{
        /* height: 20vmin; */
        width: 50vw;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0%;
height: 3px;
background: linear-gradient(to right, var(--primary), var(--secondary));
border-radius: 2px;
transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 40px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    /* margin-bottom: 60px; */
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--gray);
}

/* Sections */
section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Courses */
.courses {
    background: white;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray);
}

.course-rating {
    display: flex;
    gap: 2px;
}

.course-rating i {
    color: #fbbf24;
}

/* Features */
.features {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.features .section-title h2 {
    color: white;
}

.features .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons.center {
    justify-content: center;
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links a{
        color: var(--primary);
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
}

.courses {
    background: white;
}


.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray);
}

.course-rating {
    display: flex;
    gap: 2px;
}

.course-rating i {
    color: #fbbf24;
}

.contact-section {
    padding: 70px 20px 100px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
  }
  .contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .contact-info p { margin-bottom: 15px; color: var(--gray); }
  .contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--dark);
  }
  .contact-info .info-item i {
    font-size: 1.2rem;
    color: var(--primary);
  }

  .contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  .contact-form h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
  }
  .form-group textarea { resize: none; height: 120px; }
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.4);
  }

  #messages{
    padding: 5px;
    background-color: #20ae00;
    color: white;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
  }
  .cs{
    font-size: 55px;
    width: 98vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .detail{
    padding-left: 20px;
  }
  #box{
    display: flex;
    max-height: fit-content;
}

@media (max-width: 480px) {
    #box{
        display: flex;
        flex-direction: column;
    }
    #box img{
        width: 100%;
    }
  }

  .contactpopup{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    z-index: 5500;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
  }

  .wrapper{
    background-color: white;
    border-radius: 10px;
    width: 50vw;
    height: 70vh;
    transition: all 0.4s;
    box-shadow: 4px 0px 15px black;
    transform: scale(0);
  }
  .wrapper .titlebar{
    display: flex;
    justify-content: flex-end;
    padding: 10px;
  }
  .contact_container{
    display: flex;
    height: 85%;
    padding: 10px;
  }
  .s1, .s2{
    width: 50%;
    height: 100%;
  }
  .s1{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    background-color: var(--secondary);
    color: white;
    border-radius: 6px;
  }
  .s2{
    padding: 10px;
  }
  .contact_container h2{
    text-align: center;
  }
  .s2 input{
    border: none;
    background-color: white;
    width: 82%;
    border-bottom: 2px solid blue;
    padding: 4px;
    font-size: 16px;
    margin: 6px;
    outline: none;
}

.s2 select{
      border: none;
      background-color: white;
      width: 82%;
      border-bottom: 2px solid blue;
      padding: 4px;
      font-size: 16px;
      margin: 6px;
      outline: none;
}
.s2 input[type="submit"]{
    width: 50%;
    border: none;
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
    padding: 8px;
}
.s2 input[type="submit"]:hover{
    background-color: green;
    cursor: pointer;
}

@media (max-width: 480px){
    .wrapper{
        width: 80vw;
        height: fit-content;
        transition: all 0.8s;
        box-shadow: 4px 0px 15px black;
        
      }
      .contact_container{
        display: flex;
        flex-direction: column;
        height: 85%;
      }
      .s1, .s2{
        width: 100%;
        height: 100%;
      }
      .s1{
        font-size: 25px;
      }
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  width: 100vw;

}

.slide-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}


.slider-description {
  width: 50%;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 120px;
}

.slider-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary);
}

.slider-list ul {
  list-style: disc;
  padding-left: 1.5rem;
  font-size: 1.2rem;
  color: #b6860c;
  font-weight: bold;
}

.slider-image {
  width: 50%;
  text-align: right;
}

.slider-image img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

@media (max-width: 768px) {
  .slide-content {
    flex-direction: column-reverse;
    padding: 1rem;
  }

  .slider-description,
  .slider-image {
    width: 100%;
    padding: 0;
    margin-left: 0;
  }

  .slider-title {
    font-size: 1.5rem;
  }

  .slider-list ul {
    padding-left: 1rem;
    font-size: 1rem;
  }

  .slider-image img {
    max-height: 50vh;
  }
}
.syllabus{
    text-decoration: none;
    color: white;
    background-color: blueviolet;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s;
    
}
.syllabus:hover{
    box-shadow: 0px 4px 12px gray;
    background-color: rgb(114, 26, 197);
}

#rtopic{
    margin-left: 40px;
    /* list-style-type: none; */
}
#rtopic a{
    text-decoration: none;
    
}

#syllabusContainer ul li::marker {
    content: "✔️";
  }

  #syllabusContainer ul li{
    margin-left: 50px;
  }
  

  .whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  
  .whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    background: #20c357;
  }
  
  .whatsapp-float:active {
    transform: translateY(0);
  }
  .topcapController{
    margin-top: 100px;
  }
  
  @media (max-width: 480px) {
    .whatsapp-float {
      right: 14px;
      bottom: 14px;
      width: 52px;
      height: 52px;
    }
    .topcapController{
        margin-top: 70px;
    }
  }
.viewmore{
    text-decoration: none;
    color: white;
    background-color: rgb(11, 163, 11);
    padding: 5px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    top: 15px;
}
.courses {
    background-color: #f5f7fa;
    padding:20px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 30px;
  }
  
  .section-title h2 {
    font-size: 2rem;
    color: #023e8a;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .section-title p {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  

  /*.courses-grid {*/
  /*  display: flex;*/
  /*  flex-wrap: wrap;*/
  /*  flex-direction: row;*/
  /*  gap: 20px;*/
  /*  cursor: pointer;*/
  /*  user-select: none;*/
  /*}*/
  

  /*.course-card {*/
  /*  background-color: #ffffff;*/
  /*  border-radius: 10px;*/
  /*  overflow: hidden;*/
  /*  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
  /*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
  /*  width: 100%;*/
  /*  max-width: 28vw;   */
  /*  display: flex;      */
  /*  flex-direction: row;*/
  /*  align-items: center;*/
  /*  height: 80px;*/
  /*}*/
  
  /*.course-card:hover {*/
  /*  transform: translateY(-6px);*/
  /*  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);*/
  /*}*/
  
  /* Image left side */
  /*.course-img {*/
  /*   flex: 0 0 20%;    */
  /*  height: 80px;*/
  /*  width: 30%;*/
    /*overflow: hidden;*/
  /*  display: flex;*/
  /*  align-items: center;*/
  /*  justify-content: center;*/
  /*}*/
  
  /*.course-img img {*/
    /*object-fit: fit-content;*/
  /*  width: 140px;*/
  /*  height: 80px;*/
  /*  transition: transform 0.4s ease;*/
  /*}*/
  
  /*.course-card:hover .course-img img {*/
  /*  transform: scale(1.05);*/
  /*}*/
  
  /* Text right side */
  /*.course-content {*/
  /*  padding: 20px;*/
  /*  flex: 1;*/
  /*  text-align: left;*/
  /*}*/
  
  /*.course-content h3 {*/
  /*  font-size: 1rem;*/
  /*  color: #0077b6;*/
  /*  margin-bottom: 10px;*/
  /*  font-weight: 600;*/
  /*  text-transform: uppercase;*/
  /*}*/
  
  /*.course-content p {*/
  /*  font-size: 0.95rem;*/
  /*  color: #555;*/
  /*  margin-bottom: 15px;*/
  /*}*/
  
  /*.course-content .btn {*/
  /*  background-color: #00b4d8;*/
  /*  color: #fff;*/
  /*  padding: 8px 14px;*/
  /*  border-radius: 5px;*/
  /*  text-decoration: none;*/
  /*  font-weight: 500;*/
  /*  transition: background-color 0.3s ease;*/
  /*}*/
  
  /*.course-content .btn:hover {*/
  /*  background-color: #0077b6;*/
  /*}*/
  

  /*@media (max-width: 768px) {*/
  /*  .course-card {*/
  /*    flex-direction: row; */
  /*    max-width: 100%;*/
  /*  }*/
  /*  .course-img {*/
  /*    width: 30%;*/
  /*    height: 80px;*/
  /*  }*/
  /*  .course-content {*/
  /*    text-align: center;*/
  /*  }*/
  /*  .course-img img {*/
  /*      width: 120px;*/
  /*      height: 80px;*/
  /*}*/
  /*}*/



  .module {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    padding: 10px;
    width: 50%;
  }
  
  .module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .toggle-btn {
    cursor: pointer;
    padding: 5px 10px;
    font-size: 16px;
  }

  @media (max-width: 768px) {
    .module {
        width: 100%;
      }
  }


.course-blocks{
    display: flex;
    flex-direction: column;
}
.section-title h2{
    padding: 8px;
    margin-left: 7vw;
}

.courses-grid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.course-img{
    /*background-color: rgb(214, 214, 245);*/
    margin-right: 10px;
     width: 80px;
    height: 79px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-card{
    display: flex;
    flex: 0 0 23vw;
    border: 1px solid rgb(212, 207, 207); 
    align-items: center;
    height: 80px;

}
.course-content {
    flex: 1;        /* take remaining space */
    padding: 0 10px;
    display: flex;
    align-items: center; /* vertically center text */
}

@media (max-width:1280px){
    .course-card{
        flex: 0 1 45vw;
    }
    
} 
@media (max-width:500px){
    .course-card{
        flex: 1 0 90vw;
    }

}


.course-card img{
    width: 65px;
    height: 65px;
}






  .containerLogin{
    font-family: Arial, sans-serif;
      background: linear-gradient(135deg, #74ebd5, #9face6);
      height: 70vh;
      display: flex;
      justify-content: center;
      align-items: center;

  }



  .login-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 350px;
  }

  .login-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  .login-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
  }

  .login-container input[type="text"],
  .login-container input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }

  .login-container button {
    width: 100%;
    padding: 12px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .login-container button:hover {
    background: #0056b3;
  }

  /* Responsive tweaks */
  @media (max-width: 400px) {
    .login-container {
      padding: 20px;
    }
    .login-container h2 {
      font-size: 20px;
    }
  }


  .loginHead{
    background: #fff;
    /* border-top-right-radius: 8px;
    border-top-left-radius: 8px; */
    border-radius: 8px;
  }
  .loginHead legend{
    text-align: center;
  }
    .login-form {
      display: flex;
      gap: 10px;
      background: #fff;
      padding: 15px;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
      flex-wrap: wrap; /* allows wrapping on small screens */
    }
    .login-form input {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      flex: 1;
      min-width: 150px;
    }
    .login-form button {
      padding: 10px 20px;
      border: none;
      background: #007bff;
      color: #fff;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .login-form button:hover {
      background: #0056b3;
    }
    @media (max-width: 600px) {
      .login-form {
        flex-direction: column;
      }
      .login-form input, .login-form button {
        width: 100%;
      }
    }

    .cert-section {
      background: #f4f6f9;
      padding: 10px 15px;
      border-bottom: 1px solid #ddd;
      text-align: center;
    }
    
    .cert-heading {
      margin: 0 0 8px 0;
      font-size: 16px;
      font-weight: 600;
      color: #222;
    }
    
    .cert-bar {
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap; /* allows wrapping on smaller screens */
      font-size: 14px;
      color: #333;
    }
    
    .cert-bar span {
      display: inline-block;
      font-weight: 500;
    }
    
    @media (max-width: 600px) {
      .cert-bar {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
      }
    }
    
    
        .sidesocialicon{
    display: block;
    position: fixed;
    display: flex;
    right: 0;
    /*width: 5vw;*/
    top: 50%;
    transform: translateY(-50%);
    /*transform: translateX(-50%);*/
    flex-direction: column;
    width: fit-content;
    border-radius: 6px;
}
.sidesocialicon a{
    background-color: rgb(114, 114, 232);
    color: white;
    text-decoration: none;
    padding: 8px;
    border: 1px solid rgb(139, 139, 238);
}
@media (max-width: 600px) {
      .sidesocialicon {
        transform: translateX(0);
      }
    }
    
    
    .navbar {
        
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: var(--primary);
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 5px 0;
      visibility: hidden;
    }
    .navbar a {
      text-decoration: none;
    }
    .navbar svg {
      width: 28px;
      height: 28px;
      fill: #fff;
      cursor: pointer;
      transition: 0.3s;
    }
    .navbar svg:hover {
      fill: #25D366; /* WhatsApp green hover effect */
    }


@media (max-width: 600px){
    .connect-toggle{
        display: none;
    }
}
@media (max-width: 600px){
    .navbar{
        visibility: visible;
    }
}


.container1 {
      width: 100%;
      text-align: center;
    }
    .container1 .slider-wrapper {
      position: relative;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow: 0 25px 45px -12px rgba(0, 20, 40, 0.35),
                  inset 0 1px 4px rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(8px);
    }
    
    .slider-track {
      background-image: linear-gradient(to bottom, #366bdf, #1a45a1);
      display: flex;
      overflow: hidden;
      user-select: none;
      gap: 0;
    }

    .slide-group {
      display: flex;
      flex-shrink: 0;
      align-items: center;
      justify-content: flex-start;
      gap: 5px;
      padding-left: 0.5rem;
      animation: scrollInfinite 70s linear infinite;
      will-change: transform;
    }

    .slider-wrapper:hover .slide-group {
      animation-play-state: paused;
    }

    .text-item {
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.85rem;
      border-right: 1px solid #ced8e8;
      padding: 2px;
      transition: all 0.2s ease;
      color: white;
    }

    @keyframes scrollInfinite {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
