:root {
            --primary-color: #1a73e8;
            --secondary-color: #4394ff;
            --bg-color: #ffffff;
            --nav-bg-color: #f8f9fa;
            --text-color: #202124;
            --dropdown-bg: #ffffff;
            --dropdown-shadow: rgba(0, 0, 0, 0.15);
            --active-color: #1a73e8;
            --primary-bg: #1a2634;
  --secondary-bg: #2c3e50;
  --accent-color: #4394ff;
  --footer-text-color: #ecf0f1;
  --hover-color: #1a73e8;
  --border-color: #34495e;
  --primary: #1a73e8;       /* Main theme blue */
  --accent: #4394ff;        /* Slightly darker for contrast (hover, highlights) */
  --light-bg: #ffffff;      /* Pure white background */
  --soft-white: #f9f9f9; 
 --text-color:#222; 
 --transition: 0.4s;
 --font-family : 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --gradient-bg: linear-gradient(135deg, #2563eb, #60a5fa);
    --box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    --transition: 0.3s ease;
     --landing-bg: #ffffff;
            --landingsec-bg: #ffffff;
            --accentsec-color: #10b981;
            --borderlan-color: #e2e8f0;
             --hover-color: #1d4ed8;
        }

        



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

        body {
            font-family:var(--font-family);
            background-color: var(--bg-color);
        }

a {
            color: var(--text-color);
            text-decoration: none;
        }

        img {
            max-width: 100%;
        }

     .header {
            display: flex;
            align-items: center;
            position: relative;
            padding: 20px 40px;
            min-height: 56px;
            background-color: var(--soft-white);
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .header__logo {
          display: grid;
          grid-template-columns: 1fr 5fr;
          gap: 5px;
            max-width: 600px;
            flex-shrink: 0;
        }
        .header__logo img{
          width: 50px;
          height: 50px;
        }
        .header__logo p{
            font-size: 40px;
            font-weight: 600;
            place-content: center;
        }

        .header__wrapper {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header__navigation-wrapper {
            display: flex;
            width: auto;
        }

        .header__list {
            display: flex;
            align-items: center;
            gap: 80px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .header__list-item {
            display: flex;
            padding: 30px 0 50px;
            margin-bottom: -20px;
            gap: 8px;
            font-size: 16px;
        }

        .header__list-item > a {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .header__list-item > a i {
            color: var(--text-color);
            transition: var(--transition);
        }

        .header__list-item.active a,
        .header__list-item.active a i {
            color: var(--accent);
        }

        .header__list-item .submenu-wrapper {
            position: absolute;
            min-width: 60%;
            top: 100%;
            left: 35%;
            border-radius: 33px;
            padding: 30px;
            background-color: var(--soft-white);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: var(--transition);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .submenu-list__title {
            width: 100%;
            margin-bottom: 25px;
            font-size: 12px;
            text-transform: uppercase;
            color: rgba(0, 0, 0, 0.6);
        }

        .submenu-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 295px;
            padding-left: 0;
            margin: 0;
            list-style: none;
        }

        .submenu-list__item {
            display: flex;
            padding-right: 100px;
            margin-right: -100px;
            cursor: pointer;
        }

        .submenu-list__item-wrapper {
            width: 100%;
            display: flex;
            align-items: center;
            padding: 6px 16px 6px 6px;
            gap: 16px;
            border-radius: 14px;
            transition: var(--transition);
        }

        .submenu-list__item-wrapper > i {
            margin-left: auto;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            color: var(--text-color);
        }

        .submenu-list__wrapper {
            position: relative;
            width: 100%;
        }

        .submenu-content {
            position: absolute;
            left: 30%;
            top: 0;
            max-width: calc(100% - 365px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: var(--transition);
        }

        .submenu-list__item.has-submenu.active .submenu-content {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .submenu-list__item.has-submenu.active .submenu-list__item-wrapper {
            background-color: rgba(0, 0, 0, 0.04);
        }

        .submenu-list__item.has-submenu.active .submenu-list__item-wrapper > i {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .submenu-list__item-link {
          position: relative;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .submenu-list__item-title {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-color);
        }

        .submenu-list__item-icon {
            display: flex;
        }

        .submenu-list__item-icon i {
            font-size: 24px;
            color: var(--primary);
        }

        .submenu-list__item-subtile {
            font-size: 12px;
            font-weight: 400;
            color: rgba(0, 0, 0, 0.6);
        }

        .submenu-content__title {
            width: 100%;
            margin-bottom: 25px;
            font-size: 12px;
            text-transform: uppercase;
            color: rgba(0, 0, 0, 0.6);
        }

        .submenu-content__list {
            min-width:400px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .submenu-content__list-item {
            display: block;
            border-radius: 20px;
            background-color: var(--light-bg);
            cursor: auto;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .submenu-content__link {
            display: flex;
            flex-direction: column;
            border-radius: 20px;
            padding: 10px 10px 20px;
            border: 1px solid transparent;
            transition: var(--transition);
        }

        .submenu-content__link-title {
            padding: 0 10px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-color);
            margin-bottom: 12px;
        }

        .submenu-content__link-text {
            padding: 0 10px;
            font-size: 12px;
            color: rgba(0, 0, 0, 0.6);
        }

        .submenu-content-mobile {
            display: none;
        }

        .submenu-content-mobile__back {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            background: none;
            border: none;
            font-size: 16px;
            color: var(--text-color);
            cursor: pointer;
            margin: 0 0 20px;
            width: 100%;
            text-align: left;
            transition: background-color var(--transition);
        }

        .submenu-content-mobile__back:hover {
            background-color: rgba(0, 0, 0, 0.04);
        }

        .submenu-content-mobile__back i {
            color: var(--text-color);
        }

        .submenu-content-mobile__title {
            display: block;
            margin: 0 15px 25px;
            font-size: 12px;
            text-transform: uppercase;
            color: rgba(0, 0, 0, 0.6);
        }

        .submenu-content-mobile__list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding: 0 15px;
            margin: 0;
            list-style: none;
        }

        .submenu-content-mobile__list-item {
            display: block;
            border-radius: 12px;
            background-color: var(--light-bg);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .submenu-content-mobile__link {
            display: flex;
            flex-direction: column;
            padding: 10px 10px 15px;
            border-radius: 12px;
            transition: background-color var(--transition);
        }

        .submenu-content-mobile__link:hover {
            background-color: rgba(0, 0, 0, 0.04);
        }

        .submenu-content-mobile__link-title {
            padding: 0 10px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .submenu-content-mobile__link-text {
            padding: 0 10px;
            font-size: 12px;
            color: rgba(0, 0, 0, 0.6);
        }

        .header__burger {
            display: none;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
            width: 24px;
            cursor: pointer;
        }

        .header__burger i {
            width: 100%;
            height: 2px;
            background-color: var(--text-color);
            border-radius: 13px;
            transition: var(--transition);
        }

        .header__burger.active i:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }

        .header__burger.active i:nth-child(2) {
            opacity: 0;
        }

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

        @media (hover: hover) and (pointer: fine) {
            .header__list-item:hover .submenu-wrapper {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .header__list-item:hover > a,
            .header__list-item:hover > a i {
                color: var(--accent);
            }

            .header__list-item:hover > a i.fa-chevron-down::before {
                content: "\f077"; /* Font Awesome fa-chevron-up */
            }

            .submenu-list__item.has-submenu:hover .submenu-list__item-wrapper {
                background-color: rgba(0, 0, 0, 0.04);
            }

            .submenu-list__item.has-submenu:hover .submenu-content,
            .submenu-list__item.has-submenu:hover .submenu-list__item-wrapper > i {
                opacity: 1;
                visibility: visible;
            }

            .submenu-content__list-item:hover .submenu-content__link {
                border-color: rgba(0, 0, 0, 0.2);
            }
        }

        @media screen and (max-width: 1280px) {
            .header__navigation-wrapper {
                width: auto;
            }

            .submenu-list {
                max-width: 250px;
            }

            .submenu-content {
                max-width: calc(100% - 270px);
            }
        }

        @media screen and (max-width: 1024px) {
            .header {
                min-height: 56px;
                padding: 10px 10px;
            }

            .header__wrapper {
                justify-content: space-between;
                align-items: center;
            }

            .header__burger {
                display: flex;
                margin-left: auto;
                z-index: 1002;
            }

            .header__navigation-wrapper {
                flex-direction: column;
                align-items: flex-start;
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 400px;
                height: 100%;
                padding: 20px 0;
                background-color: var(--soft-white);
                opacity: 0;
                visibility: hidden;
                transition: right var(--transition), opacity var(--transition);
                box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                overflow-y: auto;
            }

            .header__navigation-wrapper.open {
                right: 0;
                opacity: 1;
                visibility: visible;
            }

            .header__navigation {
                width: 100%;
            }

            .header__list {
                flex-direction: column;
                gap: 15px;
                margin: 20px 0 0;
                padding: 0 15px;
            }

            .header__list-item {
                flex-direction: column;
                width: 100%;
                padding: 0;
                margin: 0;
                gap: 0;
            }

            .header__list-item > a {
                padding: 10px 0;
                width: 100%;
            }

            .header__list-item .submenu-wrapper {
                position: static;
                width: 90%;
                padding: 0 15px;
                max-height: 0;
                border-radius: 0;
                opacity: 1;
                visibility: visible;
                pointer-events: all;
                overflow: hidden;
                transition: max-height var(--transition);
                box-shadow: none;
            }

             .submenu-content__list {
            min-width:300px;
            grid-template-columns: 1fr;
            margin: 0 auto;
        }
        .submenu-content__list-item{
          width: 300px;
        }

            .submenu-list__wrapper {
                margin-top: 15px;
            }

            .submenu-list {
                width: 100%;
                max-width: 100%;
                gap: 10px;
            }

            .submenu-list__item {
                width: 100%;
                padding: 0;
                margin: 0;
            }

            .submenu-list__item-wrapper {
                padding: 8px 12px;
            }

            .submenu-list__item:active .submenu-list__item-wrapper,
            .submenu-list__item.active .submenu-list__item-wrapper {
                background-color: rgba(0, 0, 0, 0.04);
            }

            .submenu-list__item.active .submenu-list__item-wrapper > i,
            .submenu-list__item:active .submenu-list__item-wrapper > i {
                opacity: 1;
                visibility: visible;
            }

            .submenu-list__title {
                display: none;
            }

            .submenu-content {
                display: none;
            }

            .submenu-content-mobile {
                display: block;
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 400px;
                height: 100%;
                padding: 20px 0;
                background-color: var(--soft-white);
                transition: right var(--transition);
                box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
                z-index: 2000;
                overflow-y: auto;
            }

            .submenu-content-mobile.active {
                right: 0;
            }
        }
          @media screen and (max-width: 1280px) {
 .header__logo h1{
                font-size: 30px;
                place-content: center;
            }
             .header__list {
                gap: 40px;
            }
          }

        @media screen and (max-width: 767.9px) {
            .header__navigation-wrapper,
            .submenu-content-mobile {
                max-width: none;
                width: 100%;
            }
            .header__logo h1{
                font-size: 20px;
                place-content: center;
            }

            .header {
                padding: 10px;
            }

            .header__list {
                padding: 0 10px;
            }

            .header__list-item > a {
                padding: 8px 0;
            }

            .submenu-wrapper {
                padding: 0 10px;
            }

            .submenu-list__wrapper {
                margin-top: 10px;
            }

            .submenu-list {
                gap: 8px;
            }

            .submenu-list__item-wrapper {
                padding: 6px 10px;
            }

            .submenu-content-mobile__list {
                padding: 0 10px;
            }

            .submenu-content-mobile__back {
                padding: 8px 10px;
                margin-bottom: 15px;
            }

            .submenu-content-mobile__title {
                margin: 0 10px 20px;
            }
        }
/* Footer tag styles */

/* General Footer Styling */
footer {
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
  color: var(--footer-text-color);
  padding: 60px 20px 20px;
  
  line-height: 1.6;
}

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-section {
  display: grid;
  gap: 15px;
  text-align: center;
}

.footer-section h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: auto;
}

.footer-section ul li a {
  color: var(--footer-text-color);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--hover-color);
  transform: translateX(5px);
}

/* Social Media Section */
.social-media-links ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}


.social-media-links ul li a svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-color);
  transition: fill 0.3s ease, transform 0.3s ease;
}

.social-media-links ul li a:hover svg {
  fill: var(--hover-color);
  transform: scale(1.2);
}

.social-media-links ul li a span {
  font-size: 0.85rem;
}

/* Contact Us Section */

.contact-us {
  grid-column: 5 / 7;
}
.contact-us ul li a {
      display: grid;
    grid-template-columns: 30px 1fr;
  margin-bottom: 6px;
  text-align: left;
  gap: 10px;
}

.contact-us svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-color);
  transition: fill 0.3s ease;
}

.contact-us a:hover svg {
  fill: var(--hover-color);
}


/* Newsletter Section */

/* Footer Bottom Section */
.footer-down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.company-logo a{
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 10px;
}
.company-logo img {
  height: 40px;
  transition: opacity 0.3s ease;
}
.company-logo a span{
  color: white;
  text-decoration: none;
  place-content: center;
  
}

.company-logo img:hover {
  opacity: 0.8;
}

.copyright {
  color: var(--footer-text-color);
  opacity: 0.8;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .contact-us{
    grid-area: 2 / 2 / 3 / 4;
  }
}

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

  .footer-down {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .contact-us{
    grid-area: 3 / 1 / 4 / 3;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .social-media-links ul {
            grid-template-columns: 40px 40px;
        place-content: center;
  }

  .social-media-links ul li a span {
    display: none;
  }

  .social-media-links ul li a svg {
    width: 28px;
    height: 28px;
    margin: auto;
  }
  .contact-us ul li a{
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

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

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    max-width: 300px;
  }
}


/* Home-intro section */
.home-intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 60px 40px;
  background-color: #f0f8ff;
}
.hero-left{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  
}

.hero-left h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.hero-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  text-align: center;
  animation: fadeIn 1s ease-in-out 0.3s;
  animation-fill-mode: both;
}
.hero-left-book-demo{
  display: flex;
  justify-content: center;
  gap: 10px;
  height: 100px;
  padding: 30px;
}
.hero-left-book-demo input{
  width: 300px;
  height: 40px;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid var(--accent-color)

}
.hero-left-book-demo button{
  width: 100px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  cursor: pointer;
}


.hero-right {
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: grid;
  place-items: center;
}


.lottie{
  width: 100%;
  height: 100%;
}

.home-about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 40px;
  align-items: center;
  padding: 60px;
  background-color: #f9f9f9;
}

.about-left {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.about-left img {
  width: 100%;
  object-fit: cover;
  height: 500px;
  border-radius: 40px;
  animation: slideInLeft 1s ease-in-out;
}

.about-right h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  animation: fadeIn 1s ease-in-out;
}

.about-right h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #3498db;
  border-radius: 2px;
}

.about-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  animation: fadeIn 1s ease-in-out 0.3s;
  animation-fill-mode: both;
}
@media (max-width: 992px){
.hero-right {
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
}
@media (max-width: 768px) {
  .hero-right {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
  .home-intro-section {
    grid-template-columns: 1fr;
    padding: 30px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1rem;
  }
  .hero-right img{
    height: 300px;
  }

  .home-about-section {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-right h2 {
    font-size: 1.6rem;
  }
  .about-left img{
    height: auto;
  }

  .about-right p {
    font-size: 1rem;
  }
  .hero-left-book-demo{
    align-items: center;
    padding: 0px;
  }
  .hero-left-book-demo input{
    width: 150px;
  }
  .hero-left-book-demo button{
    width: 100px;
    font-size:medium;
  }
}
@media (max-width: 480px) {

.hero-right {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

    /* Home-why-choose section */
.home-whychoose-section {
  padding: 60px 40px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.home-whychoose-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s; /* Smooth transition for visibility */
}

.home-whychoose-section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #3498db;
  border-radius: 2px;
}

.home-whychoose-section h2.animate {
  animation: fadeInScale 1s ease-in-out forwards;
}

.why-choose-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.why-box {
  background-color: #f0f6ff;
  border-radius: 12px;
  padding: 20px 25px;
  display: grid;
  grid-template-columns: 70px auto;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  opacity: 0; /* Initially hidden */
}

.why-box.animate {
  animation: slideInBox 1s ease-in-out forwards;
}

.why-box:nth-child(1) { animation-delay: 0.2s; }
.why-box:nth-child(2) { animation-delay: 0.4s; }
.why-box:nth-child(3) { animation-delay: 0.6s; }
.why-box:nth-child(4) { animation-delay: 0.8s; }

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-box img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  object-fit: cover;
  background-color: #ffffff;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.why-box:hover img {
  animation: bounce 0.5s ease-in-out;
}

.why-box p {
  margin-left: 20px;
  font-size: 17px;
  color: #333333;
}

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

  .why-box {
    grid-template-columns: 60px auto;
  }
  .why-box p{
    font-size: 14px;
  }
}

@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes slideInBox {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

    /* Home-services-section */
.home-services-section {
  padding: 60px;
  background-color: #eef8ff;
}

.home-services-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  opacity: 0; /* Initially hidden */
}

.home-services-section h2.animate {
  animation: fadeInUp 1s ease-in-out forwards;
}

.home-services-section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #3498db;
  border-radius: 2px;
}

.home-service-section-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.services-left {
  position: relative;
  width: 300px;
  height: 300px;
  margin: auto;
}

.central-circle {
  width: 200px;
  height: 200px;
  background-color: #3498db;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 17%;
  left: 17%;
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  opacity: 0; /* Initially hidden */
}

.central-circle.animate {
  animation: fadeInScale 1s ease-in-out forwards;
}

.connector-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  display: grid;
  place-items: center;
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  top: 50%;
  left: 50%;
  margin: -30px;
  transform: rotate(var(--angle)) translateY(-130px) rotate(calc(-1 * var(--angle)));
  opacity: 0; /* Initially hidden */
}

.service-icon.animate {
  animation: rotateInBounce 1s ease-in-out forwards;
}

.service-icon[data-index="0"].animate { animation-delay: 0.2s; }
.service-icon[data-index="1"].animate { animation-delay: 0.3s; }
.service-icon[data-index="2"].animate { animation-delay: 0.4s; }
.service-icon[data-index="3"].animate { animation-delay: 0.5s; }
.service-icon[data-index="4"].animate { animation-delay: 0.6s; }
.service-icon[data-index="5"].animate { animation-delay: 0.7s; }

.service-icon img {
  width: 30px;
  height: 30px;
}

.service-icon:hover {
  transform: rotate(var(--angle)) translateY(-140px) rotate(calc(-1 * var(--angle))) scale(1.1);
}

.service-icon.active {
  background-color: #2980b9;
  transform: rotate(var(--angle)) translateY(-140px) rotate(calc(-1 * var(--angle))) scale(1.5);
  box-shadow: 0 0 15px rgba(41, 128, 185, 0.7);
}

.services-right {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0; /* Initially hidden */
}

.services-right.animate {
  animation: slideInRight 1s ease-in-out forwards;
}

.services-right h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.services-right p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.services-right button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.services-right button:hover {
  background-color: #2980b9;
}
@keyframes rotateInBounce {
  0% { opacity: 0; transform: rotate(var(--angle)) translateY(-125px) rotate(calc(-1 * var(--angle))) scale(0.5); }
  60% { opacity: 1; transform: rotate(var(--angle)) translateY(-140px) rotate(calc(-1 * var(--angle))) scale(1.5); }
  100% { opacity: 1; transform: rotate(var(--angle)) translateY(-140px) rotate(calc(-1 * var(--angle))) scale(1); }
}

@media (max-width: 768px) {
  .home-services-section {
    padding: 30px;
  }
  .home-service-section-details {
    grid-template-columns: 1fr;
  }
  .central-circle {
    font-size: 16px;
    width: 150px;
    height: 150px;
    top: 25%;
    left: 25%;
  }
  .service-icon {
    width: 50px;
    height: 50px;
    margin: -25px;
    transform: rotate(var(--angle)) translateY(-100px) rotate(calc(-1 * var(--angle)));
  }
  .service-icon:hover {
    transform: rotate(var(--angle)) translateY(-110px) rotate(calc(-1 * var(--angle))) scale(1.1);
  }
  .service-icon.active {
    transform: rotate(var(--angle)) translateY(-110px) rotate(calc(-1 * var(--angle))) scale(1.3);
  }
  .service-icon img {
    width: 24px;
    height: 24px;
  }
  .services-right h3 {
    font-size: 20px;
  }
  .services-right p {
    font-size: 14px;
  }
  @keyframes rotateInBounce {
  0% { opacity: 0; transform: rotate(var(--angle)) translateY(-105px) rotate(calc(-1 * var(--angle))) scale(0.5); }
  60% { opacity: 1; transform: rotate(var(--angle)) translateY(-105px) rotate(calc(-1 * var(--angle))) scale(1.5); }
  100% { opacity: 1; transform: rotate(var(--angle)) translateY(-105px) rotate(calc(-1 * var(--angle))) scale(1); }
}

}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}



@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}
    /* home product section */

    .home-products-section {
            width: 100%;
            height: 90vh;
            max-height: 1000px;
            background: var(--card-background);
            border-radius: 25px;
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            padding: 60px 60px 40px 60px;
            flex-direction: column;
        }
        .home-products-section h2{
      font-size: 32px;
      color: #1a1a1a;
      position: relative;
      display: inline-block;
    }
.home-products-section h2::after{
     content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 4px;
      background-color: #3498db;
      border-radius: 2px;
    }

        .product-container {
            display: flex;
            width: 100%;
            height: 100%;
            padding: 40px 0px;
        }

        /* Left Panel: Main Viewer */
        .main-view {
          background-color: #dfdfdf;
            flex: 1.2;
            padding: 40px;
            border-radius: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .viewer-bg {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background-size: cover;
            background-position: center;
            filter: blur(20px) brightness(0.9);
            opacity: 0.5;
            transition: background-image 0.7s ease-in-out;
            z-index: -1;
        }

        .main-image-container {
            width: 80%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 25px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease, opacity 0.6s ease;
        }

        .product-info {
            text-align: center;
            height: 20%;
            overflow: hidden;
        }

        .product-info h3, .product-info p {
            transition: transform 0.6s ease, opacity 0.6s ease;
        }

        .product-info h3 {
            margin: 10px 0;
            font-size: 32px;
            font-weight: 700;
        }

        .product-info p {
            margin: 0;
            color: var(--secondary-color);
            font-size: 16px;
        }

        .info-enter {
            transform: translateY(20px);
            opacity: 0;
        }

        .progress-bar-container {
            width: 80%;
            height: 4px;
            background-color: rgba(0,0,0,0.1);
            border-radius: 2px;
            margin-top: 25px;
        }

        .progress-bar {
            width: 0%;
            height: 100%;
            background-color: var(--primary-color);
            border-radius: 2px;
            transition: width 0.1s linear;
        }

        .controls {
            display: flex;
            gap: 20px;
            margin-top: 15px;
        }

        .controls button {
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px var(--secondary-color);
        }

        .controls button:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 20px var(--active-color);
        }

        .controls button svg {
            width: 26px;
            height: 26px;
        }

        /* Right Panel: Thumbnail Strip (3D Scroller) */
        .thumbnail-strip {
            flex: 0.8;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            perspective: 1000px;
        }

        .scroller {
            display: flex;
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .thumbnail-item {
            position: absolute;
            left: calc(50% - 100px);
            top: calc(50% - 100px);
            width: 200px;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
        }

        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        /* Media Query for Tablets (768px) */
        @media screen and (max-width: 768px) {
            .home-products-section {
                flex-direction: column;
                height: auto;
                max-height: none;
                padding: 20px;
            }

            .product-container {
                flex-direction: column;
            }

            .main-view {
                flex: none;
                padding: 20px;
                width: 100%;
            }

            .main-image-container {
                height: 300px;
                margin-bottom: 20px;
            }

            .product-info h3 {
                font-size: 24px;
            }

            .product-info p {
                font-size: 14px;
            }

            .progress-bar-container {
                width: 90%;
                margin-top: 15px;
            }

            .controls button {
                width: 45px;
                height: 45px;
            }

            .controls button svg {
                width: 20px;
                height: 20px;
            }

            .thumbnail-strip {
                flex: none;
                width: 100%;
                height: 250px;
                padding: 20px 0;
            }

            .thumbnail-item {
                width: 150px;
                height: 150px;
                left: calc(50% - 75px);
                top: calc(50% - 75px);
            }
        }

        /* Media Query for Mobile (480px) */
        @media screen and (max-width: 480px) {
            .home-products-section {
                padding: 15px;
                border-radius: 15px;
            }

            .main-view {
                padding: 15px;
            }

            .main-image-container {
                height: 200px;
                border-radius: 10px;
            }

            .product-info h3 {
                font-size: 20px;
                margin: 5px 0;
            }

            .product-info p {
                font-size: 12px;
            }

            .progress-bar-container {
                width: 100%;
                margin-top: 10px;
                height: 3px;
            }

            .controls {
                gap: 15px;
            }

            .controls button {
                width: 40px;
                height: 40px;
            }

            .controls button svg {
                width: 18px;
                height: 18px;
            }

            .thumbnail-strip {
                height: 200px;
            }

            .thumbnail-item {
                width: 120px;
                height: 120px;
                left: calc(50% - 60px);
                top: calc(50% - 60px);
            }

            .viewer-bg {
                filter: blur(15px) brightness(0.8);
            }
        }

    /* Aboutnoxlay - about us page */

.about-section {
      padding: 1rem;
      max-width: 1800px;
      margin: auto;
      background: white;
    }

    .about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.about-block-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
}

.about-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  opacity: 0; /* Initially hidden */
}

.about-block-image img.animate {
  animation: slideInLeft 1s ease-in-out forwards;
}

.about-block:nth-child(2) .about-block-image img.animate {
  animation: slideInRight 1s ease-in-out forwards;
}

.about-block:nth-child(3) .about-block-image img.animate {
  animation: slideInLeft 1s ease-in-out forwards;
}

.about-block-image img:hover {
  transform: scale(1.05);
}

.about-text h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  opacity: 0; /* Initially hidden */
}

.about-text h2.animate {
  animation: fadeInScale 1s ease-in-out forwards;
}

.about-text p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
  opacity: 0; /* Initially hidden */
}

.about-text p.animate {
  animation: fadeInUp 1s ease-in-out 0.3s forwards;
}

@media (max-width: 768px) {
  .about-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

    .vm-section-whole {
      margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.6s;
  animation-play-state: paused; /* Pause until triggered */
}

.vm-section-whole h2 {
  font-size: 2rem;
  color:var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.4s;
  animation-play-state: paused;
}

.vm-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vm-box {
  display: flex;
  gap: 1rem;
  background: #eff6ff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.vm-box img {
  width: 200px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  opacity: 0;
  animation: scaleRotateIn 1s ease-out 0.8s forwards;
  animation-play-state: paused;
}

.vm-box h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: slideInLeft 0.8s ease-out 1s forwards;
  animation-play-state: paused;
}

.vm-box p {
  font-size: 1rem;
  color: #4b5563;
  opacity: 0;
  animation: fadeZoomIn 1s ease-out 1.2s forwards;
  animation-play-state: paused;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleRotateIn {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.1); /* Start slightly zoomed in */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* Return to normal size */
  }
}

   .team-section {
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.8s;
  animation-play-state: paused; /* Pause until triggered */
}

.team-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: linear-gradient(135deg, #f0f9ff, #ffffff);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* Contain blobs */
  overflow: hidden; /* Prevent blobs from overflowing */
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2; /* Above blobs */
}

.team-card h4 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2; /* Above blobs */
}

.team-card span {
  display: block;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2; /* Above blobs */
}

.team-card p {
  font-size: 0.95rem;
  color: #4b5563;
  position: relative;
  z-index: 2; /* Above blobs */
}

.team-card .blob1 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100px; /* Smaller for balance */
  height: 100px;
  border-radius: 50%;
  background-color: #1e40af33; /* Theme blue, subtle */
  opacity: 0.7;
  filter: blur(10px);
  animation: blob-bounce 5s infinite ease;
  animation-play-state: paused; /* Pause until triggered */
}

.team-card .blob2 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 80px; /* Smaller for variety */
  height: 80px;
  border-radius: 50%;
  background-color: #6b728033; /* Gray to match span color */
  opacity: 0.6;
  filter: blur(8px);
  animation: blob-circle 6s infinite ease-in-out;
  animation-play-state: paused; /* Pause until triggered */
}

.team-card .blob3 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 90px; /* Medium size */
  height: 90px;
  border-radius: 50%;
  background-color: #4b556333; /* Gray to match p color */
  opacity: 0.65;
  filter: blur(9px);
  animation: blob-zigzag 4s infinite ease;
  animation-play-state: paused; /* Pause until triggered */
}

/* Blob animations */
@keyframes blob-bounce {
  0% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
  }
  25% {
    transform: translate(-50%, -50%) translate3d(80%, 0, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate3d(80%, 80%, 0);
  }
  75% {
    transform: translate(-50%, -50%) translate3d(0, 80%, 0);
  }
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
  }
}

@keyframes blob-circle {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translate(60px) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translate(60px) rotate(-360deg);
  }
}

@keyframes blob-zigzag {
  0% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
  }
  25% {
    transform: translate(-50%, -50%) translate3d(70%, -70%, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate3d(-70%, 70%, 0);
  }
  75% {
    transform: translate(-50%, -50%) translate3d(70%, -70%, 0);
  }
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .about-block,
      .vm-section {
        grid-template-columns: 1fr;
      }

      .about-block-image {
        height: 200px;
      }

      .vm-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .about-text h2,
      .team-section h2,
      .vm-section-whole h2 {
        font-size: 1.5rem;
      }

      .about-text p,
      .team-card p,
      .vm-box p {
        font-size: 0.9rem;
      }

      .team-cards {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .about-section {
        padding: 2rem 1rem;
      }

      .about-block {
        padding: 1.5rem;
      }

      .team-card img {
        max-width: 150px;
      }
    }


    /* about Noxlay testimonial page */

    @keyframes zoomIn {
            0% {
                opacity: 0;
                transform: scale(2);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* General Styles */
        .testimonial-section {
            padding: 6rem 1rem;
            max-width: 1800px;
            margin: auto;
            background: #fff;
            
        }

        .testimonial-grid-wrapper {
            min-height: 500px; /* Adjusted for 2 rows of testimonials */
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            align-items: stretch;
        }

        .testimonial-box {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 1.5rem;
            width: 100%;
            min-height: 200px;
            background: #f9fafb;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .testimonial-box.visible {
            visibility: visible;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .testimonial-box:hover {
            transform: translateY(-5px);
        }

        .testimonial-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            opacity: 0;
        }

        .testimonial-box.visible .testimonial-image {
            animation: zoomIn 0.6s ease-in-out 0.2s forwards;
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-content {
            display: grid;
            grid-template-rows: auto auto 1fr;
            align-content: start;
            opacity: 0;
        }

        .testimonial-box.visible .testimonial-content {
            animation: fadeInUp 0.6s ease-out 0.4s forwards;
        }

        .testimonial-content h3 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin: 0;
        }

        .testimonial-content span {
            font-size: 0.9rem;
            color: #6b7280;
            margin: 0.5rem 0;
        }

        .testimonial-content p {
            font-size: 1rem;
            color: #4b5563;
            margin: 0;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Pagination Styles */
        .pagination-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
            gap: 15px;
        }

        .page-btn, .nav-btn {
            border: none;
            background-color: #e9ecef;
            color: #495057;
            padding: 10px 18px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            font-size: 1em;
            transition: all 0.3s ease;
        }

        .nav-btn {
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        .page-btn:hover, .nav-btn:hover {
            background-color: #1e40af;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
        }

        .page-btn.active {
            background: linear-gradient(45deg, #1e40af, #1e40af);
            color: #ffffff;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
            transform: scale(1.1);
        }

        .nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
            background-color: #e9ecef;
            color: #6c757d;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-box {
                grid-template-columns: 150px 1fr;
                height: auto;
                place-items: center;
            }

            .testimonial-content {
                text-align: start;
            }

            .testimonial-content h3,
            .testimonial-content span,
            .testimonial-content p {
                font-size: 0.9rem;
            }

            .testimonial-grid-wrapper {
                min-height: auto;
            }
        }

        @media (max-width: 480px) {
            .testimonial-section {
                padding: 5rem 1rem 2rem 1rem;
            }

            .testimonial-box {
                grid-template-columns: 1fr;
                height: auto;
            }

            .testimonial-image {
                width: 100px;
                height: 100px;
            }

            .page-btn, .nav-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }
        }


/* Contact us -page */

.contactus-hero-banner {
            background: url('../heroimages/contacthero.webp');
            background-size: cover;
            background-position: center;
            display: grid;
            place-items: center;
            height: 50vh;
            color: #ffffff;
            animation: fadeIn 1s ease-out;
        }

        .contactus-hero-banner h1 {
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.8s ease-out 0.2s both;
        }

        .contactus-main-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            animation: fadeIn 1s ease-out 0.4s both;
        }

        .contactus-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideRight 0.8s ease-out 0.6s both;
}

.contactus-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-align: center;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.contactus-form-section h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: expandWidth 0.8s ease-out 1s both;
}

.contactus-form-section form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.inputBox {
    position: relative;
    width: 100%;
}

.inputBox input,
.inputBox textarea {
    width: 100%;
    padding: 12px;
    outline: none;
    border: none;
    color: #000;
    font-size: 1rem;
    background: transparent;
    border-left: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
    transition: border-color 0.3s ease, transform 0.3s ease;
    border-bottom-left-radius: 8px;
    animation: slideUp 0.6s ease-out calc(0.8s + var(--i) * 0.2s) both;
}

.inputBox textarea {
    resize: vertical;
    min-height: 120px;
}

.inputBox span {
    position: absolute;
    left: 0;
    transform: translateY(-4px);
    margin-left: 10px;
    padding: 10px;
    pointer-events: none;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 3px;
    border-radius: 8px;
}

.inputBox input:valid~span,
.inputBox input:focus~span,
.inputBox textarea:valid~span,
.inputBox textarea:focus~span {
    transform: translateX(100px) translateY(-15px);
    font-size: 0.8em;
    padding: 5px 10px;
    background: var(--primary-color);
    letter-spacing: 0.2em;
    color: #fff;
    border: 2px solid var(--primary-color);
}

.inputBox input:valid,
.inputBox input:focus,
.inputBox textarea:valid,
.inputBox textarea:focus {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(30, 64, 175, 0.2);
    transform: scale(1.02);
}

.enter {
    height: 45px;
    width: 200px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    background-color: transparent;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 500;
    animation: slideUp 0.6s ease-out 1.4s both;
    justify-self: start;
}

.enter:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
}

/* Retain your existing animations */
@keyframes slideRight {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

        .contactus-info-section {
            display: grid;
            gap: 20px;
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            animation: slideLeft 0.8s ease-out 0.6s both;
        }

        .contactus-info-section h2 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            position: relative;
            text-align: center;
            animation: slideUp 0.8s ease-out 0.8s both;
        }

        .contactus-info-section h2::after {
            content: '';
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            position: absolute;
            bottom:5px;
            left: 50%;
            transform: translateX(-50%);
            animation: expandWidth 0.8s ease-out 1s both;
        }

        .contactus-info-item {
            display: grid;
            grid-template-columns: 30px 1fr;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            animation: slideRight 0.6s ease-out calc(1.2s + var(--i) * 0.2s) both;
        }

        .contactus-info-item svg {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        .contactus-info-item:hover svg {
            transform: scale(1.2);
        }

        .contactus-social-icons {
            display: grid;
            grid-template-columns: repeat(4, 40px);
            gap: 15px;
            justify-content: center;
        }

        .contactus-social-icons a {
            display: grid;
            place-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e2e8f0;
            color: var(--primary-color);
            text-decoration: none;
            transition: background 0.3s ease, transform 0.2s ease;
            animation: popIn 0.6s ease-out calc(1.6s + var(--i) * 0.2s) both;
        }

        .contactus-social-icons a:hover {
            background: var(--primary-color);
            color: #ffffff;
            transform: scale(1.1);
        }

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

        .contactus-map-section {
            display: grid;
            place-items: center;
            padding: 40px 20px;
            background: #f1f5f9;
            animation: fadeIn 1s ease-out 1.8s both;
        }
        .contactus-map-section h2 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            position: relative;
            margin-bottom: 20px;
            text-align: center;
            animation: slideUp 0.8s ease-out 0.8s both;
        }

        .contactus-map-section h2::after {
            content: '';
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            animation: expandWidth 0.8s ease-out 1s both;
        }

        .contactus-map-section iframe {
            width: 100%;
            max-width: 1200px;
            height: 400px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            animation: slideUp 0.8s ease-out 2s both;
        }

        .contactus-apply-section {
            display: grid;
            place-items: center;
            background: url('../heroimages/contactbottomhero.webp');
            background-size: cover;
            background-position: center;
            padding: 60px 20px;
            color: #ffffff;
            text-align: center;
            animation: fadeIn 1s ease-out 2.2s both;
        }

        .contactus-apply-section h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-color);
            animation: slideUp 0.8s ease-out 2.4s both;
        }

        .contactus-apply-section p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            max-width: 600px;
            color: var(--text-color);
            animation: slideUp 0.8s ease-out 2.6s both;
        }

        .contactus-apply-section a {
            display: grid;
            grid-template-columns: auto auto;
            align-items: center;
            gap: 10px;
            background: var(--primary-color);
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: background 0.3s ease, transform 0.2s ease;
            animation: popIn 0.6s ease-out 2.8s both;
        }

        .contactus-apply-section a:hover {
            background: #7091ff;
            transform: translateY(-2px) scale(1.05);
        }

        /* Keyframe Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes slideRight {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideLeft {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes popIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 80px; }
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .contactus-main-wrapper {
                grid-template-columns: 1fr;
            }

            .contactus-hero-banner {
                height: 20vh;
            }
            .contactus-hero-banner h1 {
                font-size: 2.5rem;
            }

            .contactus-map-section iframe {
                height: 300px;
            }

            .contactus-apply-section {
                padding: 40px 20px;
                height: 300px;
            }
            .contactus-info-section h2::after{
              bottom: -10px;
            }
        }

        @media (max-width: 480px) {
            .contactus-hero-banner h1 {
                font-size: 1.5rem;
            }

            .contactus-form-section h2,
            .contactus-info-section h2,
            .contactus-apply-section h2 {
                font-size: 1.5rem;
            }
            .contactus-apply-section {
              height: 250px;
            }

            .contactus-form-section,
            .contactus-info-section {
                padding: 20px;
            }

            .contactus-social-icons {
                grid-template-columns: repeat(4, 35px);
            }

            .contactus-social-icons a {
                width: 35px;
                height: 35px;
            }

            .contactus-social-icons svg {
                width: 18px;
                height: 18px;
            }
            .contactus-info-section h2::after{
              bottom: -10px;
            }

            .contactus-map-section iframe {
                height: 250px;
            }
        }
        

/* Internship page  */

.internship-page-section {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 40px;
    padding: 20px;
    animation: fadeIn 1s ease-out;
}

.internship-page-hero-banner {
    background: url('../internship/internshiphero.webp');
    background-size: cover;
    background-position: center;
    display: grid;
    gap: 20px;
    place-items: center;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    height: 400px;
    animation: fadeIn 1s ease-out 0.2s both;
}


.internship-page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.8s ease-out 0.4s both;
}

.internship-page-hero-text {
    font-size: 1.2rem;
    max-width: 600px;
    color: var(--text-color);
    animation: slideUp 0.8s ease-out 0.6s both;
}

.internship-page-hero-button {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 10px;
    background: var(--primary-color, #1e40af);
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    animation: popIn 0.6s ease-out 0.8s both;
}

.internship-page-hero-button:hover {
    background: #7394ff;
    transform: translateY(-2px) scale(1.05);
}

.intern-container {
    display: grid;
    place-items: center;
    min-height: 70vh;
    background: #f5f5f5;
}

.intern-card {
    display: grid;
    place-items: center;
    min-height: 600px;
    width: 100%;
    max-width: 1000px;
    gap: 35px;
    border-radius: 15px;
    background: var(--bg-color, #ffffff);
    box-shadow: 16px 16px 32px #c8c8c8, -16px -16px 32px #fefefe;
    padding: 20px;
    animation: slideUp 0.6s ease-out 1s both;
}

.intern-signup {
    color: var(--primary-color, #1e40af);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: x-large;
    text-align: center;
    position: relative;
    animation: slideUp 0.6s ease-out 1.2s both;
}

.intern-signup::after {
    content: '';
    width: 80px;
    height: 3px;
    background: var(--primary-color, #1e40af);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: expandWidth 0.6s ease-out 1.4s both;
}

.intern-form {
    display: grid;
    gap: 20px;
    width: 100%;
    animation: fadeIn 0.8s ease-out 1.6s both;
}

.intern-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.intern-left, .intern-right {
    display: grid;
    gap: 35px;
}

.intern-inputBox {
    position: relative;
    width: 100%;
    animation: slideUp 0.6s ease-out calc(1.8s + var(--i, 0) * 0.2s) both;
}

.intern-inputBox input,
.intern-inputBox select {
    width: 100%;
    padding: 10px;
    outline: none;
    border: none;
    color: black;
    font-size: 1em;
    background: transparent;
    border-left: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
    transition: 0.1s;
    border-bottom-left-radius: 8px;
}

.intern-inputBox span {
    margin-top: 5px;
    position: absolute;
    left: 0;
    transform: translateY(-4px);
    margin-left: 10px;
    padding: 10px;
    pointer-events: none;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 3px;
}

.intern-inputBox input:valid~span,
.intern-inputBox input:focus~span,
.intern-inputBox select:valid~span,
.intern-inputBox select:focus~span {
    transform: translateX(150px) translateY(-15px);
    font-size: 0.8em;
    padding: 5px 10px;
    background: var(--primary-color, #1e40af);
    letter-spacing: 0.2em;
    color: #fff;
    border: 2px solid var(--primary-color, #1e40af);
    border-radius: 8px;
    animation: popIn 0.4s ease-out;
}

.intern-inputBox input:valid,
.intern-inputBox input:focus,
.intern-inputBox select:valid,
.intern-inputBox select:focus {
    border: 2px solid var(--primary-color, #1e40af);
    box-shadow: 0 0 8px rgba(30, 64, 175, 0.2);
    border-radius: 8px;
}

.intern-file-upload-container {
    width: 100%;
    animation: slideUp 0.6s ease-out calc(1.8s + var(--i, 0) * 0.2s) both;
}

.intern-file-upload {
    position:relative;
    border: 2px dashed #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: transparent;
    transition: background-color 0.3s ease-in-out;
}

.intern-file-upload:hover {
    background-color: #d3d3d3;
}

.intern-file-input {
    display: none;
}

.intern-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.intern-upload-icon {
    font-size: 40px;
    color: #000;
    margin-bottom: 10px;
    animation: popIn 0.6s ease-out calc(2s + var(--i, 0) * 0.2s) both;
}

.intern-file-upload p {
    margin: 0;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intern-file-upload.dragover {
    background-color: #000;
}

.intern-file-upload.dragover p,
.intern-file-upload.dragover .intern-upload-icon {
    color: #fff;
}

.intern-enter {
    height: 45px;
    width: 250px;
    border-radius: 5px;
    border: 2px solid var(--primary-color, #1e40af);
    cursor: pointer;
    background-color: transparent;
    transition: 0.5s;
    text-transform: uppercase;
    color: var(--primary-color, #1e40af);
    font-size: 15px;
    margin: 0 auto;
    display: block;
    animation: popIn 0.6s ease-out 2.6s both;
}

.intern-enter:hover {
    background-color: var(--primary-color, #1e40af);
    color: #fff;
    transform: translateY(-2px) scale(1.05);
}

.internship-page-closing-banner {
    background: url('../internship/internshipexplore.webp');
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    padding: 60px 20px;
    height: 300px;
    animation: fadeIn 1s ease-out 3s both;
}

.internship-page-closing-button {
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    animation: popIn 0.6s ease-out 3.2s both;
}
.internship-page-closing-button a{
  color: #ffffff;
}

.internship-page-closing-button:hover {
    background: #7394ff;
    transform: translateY(-2px) scale(1.05);
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

@media (max-width: 1024px) {
  .internship-page-hero-banner{
    height: auto;
  }
}
/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .internship-page-section {
        gap: 30px;
        padding: 15px;
    }

    .internship-page-hero-banner {
        padding: 40px 15px;
        height: auto;
    }

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

    .internship-page-hero-text {
        font-size: 1.1rem;
        max-width: 80%;
    }

    .internship-page-hero-button {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .intern-container {
        min-height: auto;
        padding: 10px;
    }

    .intern-card {
        max-width: 90%;
        min-height: auto;
        padding: 15px;
        gap: 25px;
    }

    .intern-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .intern-left, .intern-right {
        width: 100%;
        gap: 25px;
    }

    .intern-inputBox input,
    .intern-inputBox select {
        font-size: 0.9em;
        padding: 8px;
    }

    .intern-inputBox span {
        font-size: 10px;
        padding: 8px;
    }

    .intern-inputBox input:valid~span,
    .intern-inputBox input:focus~span,
    .intern-inputBox select:valid~span,
    .intern-inputBox select:focus~span {
        transform: translateX(100px) translateY(-12px);
        font-size: 0.7em;
        padding: 4px 8px;
    }

    .intern-file-upload {
        padding: 15px;
    }

    .intern-upload-icon {
        font-size: 30px;
    }

    .intern-file-upload p {
        font-size: 12px;
    }

    .intern-enter {
        width: 200px;
        height: 40px;
        font-size: 14px;
    }

    .internship-page-closing-banner {
        padding: 40px 15px;
        height: 250px;
    }

    .internship-page-closing-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .internship-page-section {
        gap: 20px;
        padding: 10px;
    }

    .internship-page-hero-banner {
        height: 300px;
        padding: 30px 10px;
    }

    .internship-page-hero-title {
        font-size: 1.5rem;
    }

    .internship-page-hero-text {
        font-size: 1rem;
        max-width: 90%;
    }

    .internship-page-hero-button {
        padding: 8px 16px;
        font-size: 0.9rem;
        grid-template-columns: auto auto;
        gap: 5px;
    }

    .internship-page-hero-button svg {
        width: 20px;
        height: 20px;
    }

    .intern-card {
        max-width: 95%;
        padding: 20px;
        gap: 20px;
    }

    .intern-signup {
        font-size: large;
    }

    .intern-signup::after {
        width: 60px;
        height: 2px;
    }

    .intern-inputBox input,
    .intern-inputBox select {
        font-size: 0.85em;
        padding: 6px;
    }

    .intern-inputBox span {
        font-size: 9px;
        padding: 6px;
    }

    .intern-inputBox input:valid~span,
    .intern-inputBox input:focus~span,
    .intern-inputBox select:valid~span,
    .intern-inputBox select:focus~span {
        transform: translateX(80px) translateY(-10px);
        font-size: 0.65em;
        padding: 3px 6px;
    }

    .intern-file-upload {
        padding: 10px;
    }

    .intern-upload-icon {
        font-size: 24px;
    }

    .intern-file-upload p {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .intern-enter {
        width: 180px;
        height: 35px;
        font-size: 12px;
    }

    .internship-page-closing-banner {
        height: 200px;
        padding: 30px 10px;
    }

    .internship-page-closing-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Terms and Conditions Section */
.it-terms-conditions {
  background-color: var(--nav-bg-color);
  padding: 60px 20px;
  
  line-height: 1.7;
  color: var(--text-color);
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--dropdown-shadow);
}

.terms-container h1 {
  font-size: 2.5rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.last-updated {
  text-align: center;
  color: #5f6368;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.terms-content h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 20px 0 10px;
  font-weight: 600;
}

.terms-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.terms-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.terms-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.terms-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1.2;
}

.terms-content a {
  color: var(--active-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-container {
    padding: 20px;
  }

  .terms-container h1 {
    font-size: 2rem;
  }

  .terms-content h2 {
    font-size: 1.3rem;
  }

  .terms-content p,
  .terms-content ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .terms-container {
    padding: 15px;
  }

  .terms-container h1 {
    font-size: 1.8rem;
  }

  .terms-content h2 {
    font-size: 1.2rem;
  }
}

.it-privacy-policy {
  background-color: var(--nav-bg-color);
  padding: 60px 20px;
  
  line-height: 1.7;
  color: var(--text-color);
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--dropdown-shadow);
}

.privacy-container h1 {
  font-size: 2.5rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.last-updated {
  text-align: center;
  color: #5f6368;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.privacy-content h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 20px 0 10px;
  font-weight: 600;
}

.privacy-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.privacy-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.privacy-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.privacy-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1.2;
}

.privacy-content a {
  color: var(--active-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-container {
    padding: 20px;
  }

  .privacy-container h1 {
    font-size: 2rem;
  }

  .privacy-content h2 {
    font-size: 1.3rem;
  }

  .privacy-content p,
  .privacy-content ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .privacy-container {
    padding: 15px;
  }

  .privacy-container h1 {
    font-size: 1.8rem;
  }

  .privacy-content h2 {
    font-size: 1.2rem;
  }
}


.it-cookie-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #333;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-policy-container {
  padding: 20px;
}

.cookie-policy-container h1 {
  font-size: 2.5em;
  color: #1a73e8;
  margin-bottom: 10px;
  text-align: center;
}

.last-updated {
  font-size: 0.9em;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

.cookie-policy-content h2 {
  font-size: 1.8em;
  color: #1a73e8;
  margin-top: 30px;
  margin-bottom: 15px;
}

.cookie-policy-content h3 {
  font-size: 1.4em;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}

.cookie-policy-content p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cookie-policy-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.cookie-policy-content ul li {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.cookie-policy-content a {
  color: #1a73e8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cookie-policy-content a:hover {
  color: #174ea6;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
  .it-cookie-policy {
    padding: 20px 10px;
  }

  .cookie-policy-container h1 {
    font-size: 2em;
  }

  .cookie-policy-content h2 {
    font-size: 1.5em;
  }

  .cookie-policy-content h3 {
    font-size: 1.2em;
  }

  .cookie-policy-content p,
  .cookie-policy-content ul li {
    font-size: 0.95em;
  }
}


.it-copyright-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #333;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.copyright-policy-container {
  padding: 20px;
}

.copyright-policy-container h1 {
  font-size: 2.5em;
  color: #1a73e8;
  margin-bottom: 10px;
  text-align: center;
}

.last-updated {
  font-size: 0.9em;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

.copyright-policy-content h2 {
  font-size: 1.8em;
  color: #1a73e8;
  margin-top: 30px;
  margin-bottom: 15px;
}

.copyright-policy-content h3 {
  font-size: 1.4em;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}

.copyright-policy-content p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.copyright-policy-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.copyright-policy-content ul li {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.copyright-policy-content a {
  color: #1a73e8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.copyright-policy-content a:hover {
  color: #174ea6;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
  .it-copyright-policy {
    padding: 20px 10px;
  }

  .copyright-policy-container h1 {
    font-size: 2em;
  }

  .copyright-policy-content h2 {
    font-size: 1.5em;
  }

  .copyright-policy-content h3 {
    font-size: 1.2em;
  }

  .copyright-policy-content p,
  .copyright-policy-content ul li {
    font-size: 0.95em;
  }
}


/* Sivakumar */

:root {
  --primary: #1a73e8;       /* Main theme blue */
  --accent: #1558d6;        /* Slightly darker for contrast (hover, highlights) */
  --light-bg: #ffffff;      /* Pure white background */
  --soft-white: #f9f9f9; 
 --text-color:#222; 
}

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

body {
  background: var(--light-bg);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
}

/* JOIN SECTION FOR SERVICE , PRODUCTS , COURSES */
.join-section {
  position: relative;
  min-height: 40vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}

.join-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.join-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
}

.join-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  transition: all 0.4s ease;
}

.join-section:hover .join-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.join-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.join-content p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
  color: var(--text-color);
}

.btn-primary {
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  background: var(--light-bg);
  color: var(--primary);
  border: none;
  box-shadow: 0 0 20px rgba(1, 24, 216, 0.3);
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: var(--light-bg);
  transform: none;
}

/* Responsive Media Queries */

@media (min-width: 768px) {
  .join-content h2 {
    font-size: 2.8rem;
  }

  .join-content p {
    font-size: 1.1rem;
  }

  .join-section {
    padding: 6rem 10%;
  }

  .btn-primary {
    font-size: 1.05rem;
    padding: 0.9rem 2rem;
  }
}

@media (min-width: 1024px) {
  .join-content h2 {
    font-size: 3.5rem;
  }

  .join-content p {
    font-size: 1.3rem;
  }

  .btn-primary {
    font-size: 1.05rem;
    padding: 0.9rem 2rem;
  }
}

@media (max-width: 768px) {
  .join-content h2 {
    font-size: 1.8rem;
  }

  .join-content p {
    font-size: 0.95rem;
    max-width: 90%;
  }

  .btn-primary {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .join-content h2 {
    font-size: 1.5rem;
  }

  .join-content p {
    font-size: 0.9rem;
    max-width: 95%;
  }

  .btn-primary {
    width: 100%;
    padding: 0.7rem 0;
    font-size: 1rem;
  }
}


/* HERO SECTION FOR SERVICE , PRODUCTS , COURSES  */


/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.3s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
 display: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  color: #fff;
  z-index: 3;
  max-width: 800px;
  display: none;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons .btn-primary {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-buttons .btn-primary:hover {
  background-color: #0056b3;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    height: auto;
    flex-direction: column;
  }

  .hero-img {
    position: relative;
    height: auto;
    object-fit: contain; /* ensures full image is visible */
  }

  .hero-overlay {
    position: static;
   display: none;
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons .btn-primary {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}



/* BANNER IMAGE FOR SERVICE-DETAILS , PRODUCT-DETAILS , COURSE-DETAILS */

/* Banner */
.banner-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.banner-container:hover .banner {
  transform: scale(1.05);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
  z-index: 1;
}

/* BREADCRUMBS FOR SERVICE-DETAILS , PRODUCT-DETAILS , COURSE-DETAILS */


/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 10%;
  font-size: 0.9rem;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  z-index: 2;
  position: relative;
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--text-color);
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 0.5rem;
  color: var(--text-color);
}



/* SERVICE CSS */

/* Services Section */
.service-heading {
  text-align: center;
  font-size: 3rem;
  margin-top: 3rem;
  color: var(--accent);
}





.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
  margin-bottom: 6rem;
}





/* Common Service Card Styles */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(1, 24, 216, 0.2);
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card:nth-child(even) {
  flex-direction: column;
  
}

.service-card.animate {
  opacity: 1 !important;
}

.service-image {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.service-image img {
  width: 100%;
  max-height: 266px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-image:hover img {
  transform: rotateX(5deg) rotateY(5deg);
}



.service-text {
  flex: 1;
  margin-top: 1.5rem;
}

.service-text h2 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}
.read-more-btn{
  
  width: 100%;
   justify-content: flex-start;
}

.service-card button {
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
/*   box-shadow: 0 0 15px var(--primary); */
}

.service-card button:hover {
  background: #fff;
  color: var(--primary);
  transform: scale(1.08);
  /* box-shadow: 0 0 25px var(--accent); */
  border: 1px solid var(--accent);
}

@media (min-width: 1280px) {
  .service-card {
    flex-direction: column;
    text-align: left;
  }

  .service-card:nth-child(even) {
    flex-direction: column;

  }

  .service-text {
    margin-top: 20px;
    padding: 0 1rem;
  }

  .service-text h2 {
    font-size: 1.4rem;
  }

  .service-text p {
    font-size: 1.1rem;
  }

  /* .service-image,
  .service-text {
    flex: 1;
  } */

  .card-left .service-image::before {
    left: -60px;
    width: 120px;
    height: 120px;
  }

  .card-right .service-image::before {
    right: -60px;
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 1300px){
  .service-text{
    margin-top: 20px;
    font-size: 1.3rem;
  }
 
}
@media (max-width: 1280px) {
.service-text h2 {
    font-size: 1.3rem;
  }
   
}
@media (max-width: 1024px) {
  .service-grid{
    grid-template-columns: 1fr 1fr;
  }
    .read-more-btn{
 
  justify-content: center;
}
}

@media (max-width: 768px) {
  .service-grid{
    grid-template-columns: 1fr 1fr;
  }
  .card-left .service-image::before {
    left: -40px;
    width: 80px;
    height: 80px;
  }

  .card-right .service-image::before {
    right: -40px;
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 567px) {
.service-grid{
    grid-template-columns: 1fr;
  }


}
@media (max-width: 480px) {

  .card-left .service-image::before {
    left: -30px;
    width: 60px;
    height: 60px;
  }

  .card-right .service-image::before {
    right: -30px;
    width: 60px;
    height: 60px;
  }

  .service-heading {
    font-size: 2rem;
  }
}


/* PRODUCTS CSS */



/* Products Section */
.product-heading {
  margin-top: 3rem;
  font-size: 3rem;
  text-align: center;
  color: var(--accent);
}

section#products {
  position: relative;
  z-index: 2;
}


/* #products{
  margin-bottom: 3rem;
} */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
  margin-bottom: 6rem;
}



/* Common Product Card Styles */
.product-card {
  display: flex;
  flex-direction: column;
 
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(1, 24, 216, 0.2);
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-card:nth-child(odd){
align-items: center;
}
.product-card:nth-child(even) {
  flex-direction: column;
  align-items: center;
}

.product-card.animate {
  opacity: 1 !important;
}

.product-image {
  width: 100%;
  max-width: 400px;

  position: relative;
}

.product-image img {
  width: 100%;
 max-height: 266px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.product-image:hover img {
  transform: rotateX(5deg) rotateY(5deg);
}


.product-text {
  flex: 1;
  margin-top: 1.5rem;
}

.product-text h2 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.product-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.product-card .product-read-more a {
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  color: #fff;
  background-color: var(--primary);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;

}

.product-card .product-read-more a:hover {
  background: var(--light-bg);
  color: var(--primary);
  transform: scale(1.08);
  border: 1px solid var(--accent);
}
.product-read-more{
  width: 100%;

  justify-content: flex-start;
}
@media (min-width: 1280px) {
  
  .product-card {
    flex-direction: column;
    text-align: left;
  }

  .product-card:nth-child(even) {
    flex-direction: column;
  }

  .product-text {
    margin-top: 20px;
    padding: 0 1rem;
  }

  .product-text h2 {
    font-size: 1.3rem;
  }

  .product-text p {
    font-size: 1.1rem;
  }

  

  .card-left .product-image::before {
    left: -60px;
    width: 120px;
    height: 120px;
  }

  .card-right .product-image::before {
    right: -60px;
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 1300px) {
 .product-text h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px){
  .product-grid{
    grid-template-columns: 1fr 1fr;
  }
  .product-read-more{
  justify-content: center;
}
}
@media (max-width: 768px) {

  .card-left .product-image::before {
    left: -40px;
    width: 80px;
    height: 80px;
  }

  .card-right .product-image::before {
    right: -40px;
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 567px){
 .product-grid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .card-left .product-image::before {
    left: -30px;
    width: 60px;
    height: 60px;
  }

  .card-right .product-image::before {
    right: -30px;
    width: 60px;
    height: 60px;
  }

  .product-heading {
    font-size: 2rem;
  }
}



/* PRODUCT-DETAILS CSS */



/* COURSE CSS */


/* Courses Section */
.course-heading {
  margin-top: 3rem;
  font-size: 3rem;
  text-align: center;
  color: var(--accent);
}

section#courses {
  position: relative;
  z-index: 2;
}



.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
  margin-bottom: 6rem;
}





/* Common Course Card Styles */
.course-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(1, 24, 216, 0.2);
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.course-card:nth-child(even) {
  flex-direction: column;
}

.course-card.animate {
  opacity: 1 !important;
}

.course-image {
  width: 100%;
  max-width: 400px;
   max-height: 266px;
  position: relative;
   object-fit: cover;
}

.course-image img {
  width: 100%;
   max-height: 266px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.course-image:hover img {
  transform: rotateX(5deg) rotateY(5deg);
}


.course-text {
  flex: 1;
  margin-top: 1.5rem;
}

.course-text h2 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.course-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.course-card .course-read-more a {
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;

}

.course-card .course-read-more a:hover {
  background: #fff;
  color: var(--primary);
  transform: scale(1.08);
 border: 1px solid var(--accent);
}
.course-read-more{
  width: 100%;
  justify-content: flex-start;
}
@media (min-width: 1280px) {
  .course-image img{
    height: 200px;
  }
  .course-card {
    flex-direction: column;
    text-align: left;
  }

  .course-card:nth-child(even) {
    flex-direction: column;
  }

  .course-text {
    margin-top: 20px;
    padding: 0 1rem;
  }

  .course-text h2 {
    font-size: 1.3rem;
  }

  .course-text p {
    font-size: 1.1rem;
  }

  

  .card-left .course-image::before {
    left: -60px;
    width: 120px;
    height: 120px;
  }

  .card-right .course-image::before {
    right: -60px;
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 1300px) {
.course-text h2 {
    font-size: 1.4rem;
  }
  .course-image img{
    height: 266px;
  }
}
@media (max-width: 1024px) {
.course-grid{
  grid-template-columns: 1fr 1fr;
}
.course-read-more{
  justify-content: center;

}
}
@media (max-width: 768px) {
  .card-left .course-image::before {
    left: -40px;
    width: 80px;
    height: 80px;
  }

  .card-right .course-image::before {
    right: -40px;
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 567px){
.course-grid{
  grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
  .card-left .course-image::before {
    left: -30px;
    width: 60px;
    height: 60px;
  }

  .card-right .course-image::before {
    right: -30px;
    width: 60px;
    height: 60px;
  }

  .course-heading {
    font-size: 2rem;
  }
}



/* COURSE-DETAILS CSS */




/* CARRER CSS */
.careers-hero-container {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.careers-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.3s ease;
}

.careers-hero-overlay {
  display: none;
  position: absolute;
  inset: 0;

  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.careers-hero-content {
  display: none;
  color: #fff;
  max-width: 800px;
  z-index: 3;
}

.careers-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.careers-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Responsive for smaller devices */
@media (max-width: 768px) {
  .careers-hero-container {
    min-height: auto;
    flex-direction: column;
  }

  .careers-hero-image {
    position: relative;
    height: auto;
    object-fit: contain; /* show full image */
  }

  .careers-hero-overlay {
    position: static;
 display: none;
    padding: 1.5rem;
  }

  .careers-hero-content h1 {
    font-size: 2rem;
  }

  .careers-hero-content p {
    font-size: 1rem;
  }

  .btn-primary {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Careers Section */
.careers-section {
  padding: 4rem 10%;
  position: relative;
  z-index: 2;
  text-align: center;
}

.careers-section h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 4rem;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
   row-gap: 3rem;
}

.job-card {
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1); /* transparent white */
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.2); /* soft blue glow */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* for Safari */
  border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
  transform: translateY(50px);
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: calc(0.2s * var(--index));
}


.job-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.job-card .cover {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s;
  transform-origin: 0;

  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: var(--light-bg);
  
}

.job-card:hover .cover {
  transform: rotateY(-80deg);
}

.job-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.job-card .cover h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent);
  background: var(--light-bg);
  padding: 0.5rem 1rem;
  width: 100%;
  text-align: center;
  z-index: 2;
  margin: 0;
   border-radius: 0px 0px 10px 10px;
}

.job-card .job-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
 background-color: var(--soft-white);
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.2); /* soft blue glow */
 border-radius: 20px;
}

.job-card .job-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.job-card .job-details .apply-form-btn{
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  font-weight: 600;
  background: var(--light-bg);
  color: var(--primary);
  border: none;
  box-shadow: 0 0 20px rgba(1, 24, 216, 0.3);
  text-decoration: none;
}

.job-card .job-details .apply-form-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(1, 24, 216, 0.5);
}

/* Application Form Section */
.apply-form-section {
  padding: 4rem 10%;
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(1, 24, 216, 0.2);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.apply-form-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.apply-form-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27, 86, 253, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  animation: floatBlob 20s infinite alternate ease-in-out;
}

.apply-form-section h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 20px;
  border: 1px solid var(--text-color);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(1, 24, 216, 0.3);
}

.error-message {
  color: #ff4d4d;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-group.error input,
.form-group.error select {
  border-color: #ff4d4d;
}

.apply-form-section .btn-primary {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: var(--light-bg);
  color: var(--primary);
  border: none;
  box-shadow: 0 0 20px rgba(1, 24, 216, 0.3);
  width: 100%;
}

.apply-form-section .btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(1, 24, 216, 0.5);
}

/* Responsive Design */
@media (min-width: 768px) {
  .careers-hero-content h1 {
    font-size: 3rem;
  }

  .careers-hero-content p {
    font-size: 1.2rem;
  }

  .careers-careers-section h2 {
    font-size: 2.5rem;
  }

  .apply-form-section h2 {
    font-size: 2.8rem;
  }

  .apply-form-section {
    padding: 6rem 10%;
  }

  .apply-form-section .btn-primary {
    font-size: 1.05rem;
    padding: 0.9rem 2rem;
    width: auto;
  }

  body::before,
  body::after {
    width: 500px;
    height: 500px;
  }

  .apply-form-section::before {
    width: 400px;
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .careers-hero-content h1 {
    font-size: 3.5rem;
  }

  .careers-hero-content p {
    font-size: 1.3rem;
  }

  .careers-section h2 {
    font-size: 3rem;
  }

  .apply-form-section h2 {
    font-size: 3.5rem;
  }

  body::before,
  body::after {
    width: 600px;
    height: 600px;
  }

  .apply-form-section::before {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1280px){
 .careers-grid {
    grid-template-columns: 1fr 1fr 1fr; /* Stack cards vertically */

    gap: 2rem;
  }

  .job-card {
    width: 300px;
    height: 400px;
  }
}
@media (max-width: 1024px) {
 .careers-grid {
    grid-template-columns: 1fr 1fr; /* Stack cards vertically */

    gap: 2rem;
  }

  .job-card {
    width: 300px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .careers-section,
  .apply-form-section {
    padding: 3rem 5%;
  }

  .careers-hero-content h1 {
    font-size: 2rem;
  }

  .careers-hero-content p {
    font-size: 1rem;
  }

  .careers-section h2 {
    font-size: 1.8rem;
  }

  .apply-form-section h2 {
    font-size: 1.8rem;
  }

  .apply-form-section .btn-primary {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }

  body::before,
  body::after {
    width: 300px;
    height: 300px;
  }

  .apply-form-section::before {
    width: 250px;
    height: 250px;
  }

 
}
@media (max-width: 567px) {
 .careers-grid {
    grid-template-columns: 1fr; /* Stack cards vertically */

    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .careers-section,
  .apply-form-section {
    padding: 2rem 5%;
  }

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

  .careers-hero-content p {
    font-size: 0.95rem;
  }

  .careers-section h2 {
    font-size: 1.5rem;
  }

  .apply-form-section h2 {
    font-size: 1.5rem;
  }

  .job-card {
    width: 300px;
    height: 400px;
  }

  .job-card .cover h3 {
    font-size: 1.2rem;
  }

  .job-card .job-details p {
    font-size: 0.9rem;
  }

  .job-card .job-details .btn-primary {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  body::before,
  body::after {
    width: 200px;
    height: 200px;
  }

  .apply-form-section::before {
    width: 200px;
    height: 200px;
  }
}






/* Application Form Section */
.form-container{
display: flex;
  justify-content: center;
  align-items: center;
}
.apply-form-section {
  padding: 4rem 10%;
  position: relative;
  z-index: 2;
  text-align: center;
  overflow: hidden; /* Contain animations */
}

.apply-form-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27, 86, 253, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  animation: floatBlob 20s infinite alternate ease-in-out;
}
.apply-form-section-img{
  height: 100%;
  min-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.side-image {
  width: 300px;
  height: 500px;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 1s ease;
  position: relative;
  z-index: -1; /* Start behind the form */
 
}

.left-image {
  transform: translateX(100%); /* Start off-screen to the left */
}

.right-image {
  transform: translateX(-100%); /* Start off-screen to the right */
}

.apply-form-section.visible .left-image {
  transform: translateX(50%); /* Slide in from left */
  opacity: 1;
}

.apply-form-section.visible .right-image {
  transform: translateX(-50%); /* Slide in from right */
  opacity: 1;
}




.apply-title {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  font-weight: bold;
  font-size: x-large;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  min-width: 500px;
  flex-direction: column;
  gap: 25px;
  background: var(--light-bg);
  box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.2), -16px -16px 32px rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 20px;
}

.Apply-inputBox {
  position: relative;
  width: 450px;
}

.Apply-inputBox input,
.Apply-inputBox select {
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
  color: var(--primary);
  font-size: 1em;
  background: transparent;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transition: 0.3s;
  border-bottom-left-radius: 8px;
}

.Apply-inputBox span {
  margin-top: 5px;
  position: absolute;
  left: 0;
  transform: translateY(-4px);
  margin-left: 10px;
  padding: 10px;
  pointer-events: none;
  font-size: 12px;
  color: var(--primary);
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 3px;
  border-radius: 8px;
}

.Apply-inputBox input:valid ~ span,
.Apply-inputBox input:focus ~ span,
.Apply-inputBox select:valid ~ span,
.Apply-inputBox select:focus ~ span {
  transform: translateX(300px) translateY(-15px);
  font-size: 0.8em;
  padding: 5px 10px;
  background: var(--primary);
  letter-spacing: 0.2em;
  color: var(--soft-white);
  border: 2px solid var(--primary);
}

.Apply-inputBox input:valid,
.Apply-inputBox input:focus,
.Apply-inputBox select:valid,
.Apply-inputBox select:focus {
  border: 2px solid var(--primary);
  border-radius: 8px;
}

.Apply-inputBox .error-message {
  color: #ff4d4d;
  font-size: 0.8rem;
  display: none;
  margin-top: 5px;
}

.Apply-inputBox.error .error-message {
  display: block;
}

.Apply-inputBox.error input,
.Apply-inputBox.error select {
  border-color: #ff4d4d;
}

.file-upload-container {
  min-width: 450px;
  position: relative;
}

.file-upload {
  position: relative;
  border: 2px dashed var(--primary);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background-color: var(--light-bg);
  transition: background-color 0.3s ease-in-out;
}

.file-upload:hover {
  background-color: var(--soft-white);
}

.file-input {
  display: none;
}

.file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.upload-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 10px;
}

.file-upload p {
  margin: 0;
  font-size: 14px;
  color: var(--primary);
}

.file-upload.has-file p {
  display: none;
}

.file-upload.dragover {
  background-color: var(--accent);
}

.file-upload.dragover .upload-icon,
.file-upload.dragover p {
  color: var(--soft-white);
}

.file-upload-message {
  display: none;
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: 10px;
  text-align: center;
}

.file-upload-message.show {
  display: block;
}

.file-upload-container .error-message {
  color: #ff4d4d;
  font-size: 0.8rem;
  display: none;
  margin-top: 5px;
}

.file-upload-container.error .error-message {
  display: block;
}

.file-upload-container.error .file-upload {
  border-color: #ff4d4d;
}

.enter {
  height: 45px;
  width: 200px;
  border-radius: 5px;
  border: 2px solid var(--primary);
  cursor: pointer;
  background-color: transparent;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 1em;
  color: var(--primary);
  font-weight: 600;
}

.enter:hover {
  background-color: var(--primary);
  color: var(--soft-white);
}

/* Responsive Design for Form Section */
@media (min-width: 768px) {
  .apply-form-section {
    padding: 6rem 10%;
  }

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

  .apply-form-section::before {
    width: 400px;
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .apply-title {
    font-size: 2.5rem;
  }

  .apply-form-section::before {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1024px) {
  .apply-form-section-img{
  height: 100%;
  min-width: 400px;
}
}
@media (max-width: 992px) {
 .side-image{
    display: none;
  }
}
@media (max-width: 768px) {
  
  .apply-form-section {
    padding: 3rem 5%;
  }

  .apply-title {
    font-size: 1.5rem;
  }

  .apply-form-section::before {
    width: 250px;
    height: 250px;
  }

  .card {
    width: 280px;
    min-height: 400px;
  }

  .Apply-inputBox,
  .file-upload-container {
    min-width: 230px;
  }

  .Apply-inputBox input:valid ~ span,
  .Apply-inputBox input:focus ~ span,
  .Apply-inputBox select:valid ~ span,
  .Apply-inputBox select:focus ~ span {
    transform: translateX(300px) translateY(-15px);
  }

  .file-upload {
    padding: 15px;
  }

  .upload-icon {
    font-size: 35px;
  }

  .file-upload p {
    font-size: 13px;
  }

  .file-upload-message {
    font-size: 0.85rem;
  }
  .side-image{
    display: none;
  }
}

@media (max-width: 480px) {
  .apply-form-section {
    padding: 2rem 5%;
  }

  .apply-title {
    font-size: 1.2rem;
  }

  .apply-form-section::before {
    width: 200px;
    height: 200px;
  }

  .card {
    min-width: 350px;
    min-height: 380px;
    margin: 0 auto;
  }

  .Apply-inputBox,
  .file-upload-container {
    width: 320px;
  }

  .Apply-inputBox input:valid ~ span,
  .Apply-inputBox input:focus ~ span,
  .Apply-inputBox select:valid ~ span,
  .Apply-inputBox select:focus ~ span {
    transform: translateX(220px) translateY(-15px);
    font-size: 10px;
  }

  .file-upload {
    padding: 10px;
  }

  .upload-icon {
    font-size: 30px;
  }

  .file-upload p {
    font-size: 12px;
  }

  .file-upload-message {
    font-size: 0.8rem;
  }

  .enter {
    width: 200px;
    height: 40px;
    font-size: 9px;
  }
}


@media (max-width: 400px) {
 .card {
    min-width: 320px;
    min-height: 380px;
    margin: 0 auto;
  }

  .Apply-inputBox,
  .file-upload-container {
    width: 280px;
  }

  .Apply-inputBox input:valid ~ span,
  .Apply-inputBox input:focus ~ span,
  .Apply-inputBox select:valid ~ span,
  .Apply-inputBox select:focus ~ span {
    transform: translateX(180px) translateY(-15px);
    font-size: 10px;
  }
}



/* Rate card container */
.rate-cards-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 50px;
}

.plan {
    border-radius: 16px;
    padding: 10px;
    background: var(--light-bg);
    color: var(--text-color);
    max-width: 300px;
    width: 100%;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px var(--soft-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan strong {
    font-weight: 600;
    color: var(--primary);
}

.plan .inner {
    align-items: center;
    padding: 20px;
    padding-top: 40px;
    border-radius: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.plan .pricing {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    border-radius: 99em 0 0 99em;
    display: flex;
    align-items: center;
    padding: 0.625em 0.75em;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--light-bg);
    transition: background 0.3s ease;
}

.plan .pricing small {
    color: var(--soft-white);
    font-size: 0.75em;
    margin-left: 0.25em;
}

.plan .title {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary);
}

.plan .title + * {
    margin-top: 0.75rem;
}

.plan .info + * {
    margin-top: 1rem;
}

.plan .features,
.plan .what-you-get {
    display: flex;
    flex-direction: column;
}

.plan .features li,
.plan .what-you-get li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.plan .what-you-get .hidden {
    display: none;
}

.plan .features li + *,
.plan .what-you-get li + * {
    margin-top: 0.75rem;
}

.plan .features .icon,
.plan .what-you-get .icon {
    background-color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--light-bg);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    transition: background 0.3s ease;
}

.plan .features .icon svg,
.plan .what-you-get .icon svg {
    width: 14px;
    height: 14px;
}

.plan .features + *,
.plan .what-you-get + * {
    margin-top: 1.25rem;
}

.plan .action,
.plan .read-more-action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.plan .what-you-get-title {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary);
    margin-top: 1.5rem;
}

.plan .button {
    background-color: var(--primary);
    border-radius: 6px;
    color: var(--light-bg);
    font-weight: 500;
    font-size: 1.125rem;
    text-align: center;
    border: 0;
    outline: 0;
    width: 100%;
    padding: 0.625em 0.75em;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.plan .read-more-button {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 1.125rem;
    text-align: right;
    outline: 0;
    padding: 0.625em 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    transition: color 0.3s ease;
}

.plan .read-more-button .button-text {
    margin-right: 0.5rem;
}

.plan .read-more-button .button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.plan .read-more-button .button-icon svg {
    width: 16px;
    height: 16px;
}

.plan .button:hover,
.plan .button:focus {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.plan .read-more-button:hover,
.plan .read-more-button:focus {
    color: var(--accent);
}

.plan .what-you-get li:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--light-bg);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.plan .what-you-get li::after {
    opacity: 0;
}

/* Responsive Design for Cards */
@media (max-width: 768px) {
    .plan {
        min-width: 20%;
        margin: 0 10px;
        box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1), -6px -6px 12px var(--soft-white);
    }

    .plan .inner {
        padding: 15px;
        padding-top: 30px;
    }

    .plan .pricing {
        padding: 0.5em 0.6em;
        font-size: 1.1rem;
    }

    .plan .what-you-get li:hover::after {
        left: 0;
        transform: none;
        white-space: normal;
        max-width: 200px;
    }
}

@media (max-width: 567px) {
    .rate-cards-container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .plan .title {
        font-size: 1.1rem;
    }

    .plan .pricing {
        font-size: 1rem;
    }

    .plan .button,
    .plan .read-more-button {
        font-size: 1rem;
    }

    .plan .features .icon,
    .plan .what-you-get .icon {
        width: 18px;
        height: 18px;
    }

    .plan .features .icon svg,
    .plan .what-you-get .icon svg,
    .plan .read-more-button .button-icon svg {
        width: 12px;
        height: 12px;
    }

    .plan .what-you-get li:hover::after {
        font-size: 0.75rem;
        max-width: 150px;
    }
}





 /* Back to Top Button */
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #007bff;
      color: white;
      border: none;
      padding: 14px 16px;
      font-size: 20px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 999;
      display: none;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
    }

    #backToTop:hover {
      background-color: #0056b3;
      transform: scale(1.1);
    }



    .Apply-inputBox label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}





.custom-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .custom-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .custom-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .custom-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .custom-container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .custom-container {
    max-width: 1320px;
  }
}











.page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-heading::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}


/* --- 2. Hero Banner Section --- */
#hero-banner-section {
    height: 60vh;
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/software-banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-bg);
    padding: 20px;
}

.hero-content-wrapper {
    max-width: 800px;
}

.hero-main-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-bg);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
}


/* --- 3. Main Description Section --- */
#service-introduction {
    background-color: var(--light-bg);
}

.description-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.intro-text-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.intro-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}


/* --- 4. Benefits Section --- */
#core-benefits-section {
    background-color: var(--soft-white);
}

.benefits-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item-card {
    background-color: var(--light-bg);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon-wrapper {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-description {
    color: var(--text-light);
}


/* --- 5. FAQ Section --- */
#faq-block {
    background-color: var(--light-bg);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-entry {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-entry:hover {
    border-color: var(--accent);
}

.faq-query-button {
    width: 100%;
    background-color: var(--light-bg);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    text-align: left;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.faq-query-button:hover {
    background-color: var(--soft-white);
}

.faq-query-button.active {
    background-color: var(--soft-white);
    color: var(--primary);
}

.faq-query-button::after {
    content: '\f078'; /* Font Awesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease-in-out;
}

.faq-query-button.active::after {
    transform: rotate(180deg);
}

.faq-response-panel {
    max-height: 0;
    overflow: hidden;
    background-color: var(--soft-white);
    transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.faq-response-panel p {
    padding: 0 20px;
    color: var(--text-light);
}

.faq-response-panel.open {
    padding-bottom: 20px;
}


/* --- 6. Responsive Design --- */
@media (max-width: 992px) {
    .description-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-heading { font-size: 2rem; }
    .hero-main-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .page-container { padding: 60px 0; }
}










.page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* --- 2. Course Hero Banner --- */
#course-hero-banner {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-bg);
    padding: 20px;
}

.course-hero-content { max-width: 800px; }
.course-main-heading {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-bg);
    font-weight: 700;
}
.course-subheading { font-size: 1.2rem; font-weight: 300; }

/* --- 3. Course Overview Section --- */
#course-overview-section { background-color: var(--light-bg); }
.course-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.course-intro-text p { font-size: 1.1rem; color: var(--text-light); }
.course-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* --- 4. Learning Outcomes Section --- */
#learning-outcomes-section { background-color: var(--soft-white); }
.outcomes-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.outcome-card-item {
    background-color: var(--light-bg);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.outcome-card-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.outcome-icon-area {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.outcome-title { font-size: 1.5rem; margin-bottom: 10px; }
.outcome-description { color: var(--text-light); }

/* --- 5. Course FAQ Section --- */
#course-faq-section { background-color: var(--light-bg); }
.faq-accordion-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item-container {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item-container:hover { border-color: var(--accent); }
.faq-question-trigger {
    width: 100%;
    background-color: var(--light-bg);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    text-align: left;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}
.faq-question-trigger:hover { background-color: var(--soft-white); }
.faq-question-trigger.active {
    background-color: var(--soft-white);
    color: var(--primary);
}
.faq-question-trigger::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease-in-out;
}
.faq-question-trigger.active::after { transform: rotate(180deg); }
.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    background-color: var(--soft-white);
    transition: max-height 0.4s ease-out;
}
.faq-answer-content p {
    padding: 0 20px 20px 20px;
    color: var(--text-light);
}

/* --- 6. Responsive Design --- */
@media (max-width: 992px) {
    .course-intro-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .course-main-heading { font-size: 2.2rem; }
    .course-subheading { font-size: 1rem; }
    .page-container { padding: 60px 0; }
}







.page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section-heading::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* --- 2. Product Hero Section --- */
#product-hero-showcase {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-bg);
    padding: 20px;
}
.product-hero-content { max-width: 800px; }
.product-main-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-bg);
    font-weight: 700;
}
.product-subtitle { font-size: 1.2rem; font-weight: 300; }

/* --- 3. Product Details Section --- */
#product-details-section { background-color: var(--light-bg); }
.product-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.product-intro-text p { font-size: 1.1rem; color: var(--text-light); }
.product-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* --- 4. Product Features Section --- */
#product-features-section { background-color: var(--soft-white); }
.features-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-card-item {
    background-color: var(--light-bg);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.feature-icon-holder {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.feature-title { font-size: 1.5rem; margin-bottom: 10px; }
.feature-description { color: var(--text-light); }

/* --- 5. Product FAQ Section --- */
#product-faq-section { background-color: var(--light-bg); }
.faq-accordion-block { max-width: 800px; margin: 0 auto; }
.faq-item-wrapper {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item-wrapper:hover { border-color: var(--accent); }
.faq-toggle-button {
    width: 100%;
    background-color: var(--light-bg);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    text-align: left;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}
.faq-toggle-button:hover { background-color: var(--soft-white); }
.faq-toggle-button.active {
    background-color: var(--soft-white);
    color: var(--primary);
}
.faq-toggle-button::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease-in-out;
}
.faq-toggle-button.active::after { transform: rotate(180deg); }
.faq-answer-pane {
    max-height: 0;
    overflow: hidden;
    background-color: var(--soft-white);
    transition: max-height 0.4s ease-out;
}
.faq-answer-pane p {
    padding: 0 20px 20px 20px;
    color: var(--text-light);
}

/* --- 6. Responsive Design --- */
@media (max-width: 992px) {
    .product-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .section-heading { font-size: 2rem; }
    .product-main-title { font-size: 2.2rem; }
    .product-subtitle { font-size: 1rem; }
    .page-container { padding: 60px 0; }
}

/* Rate card container */
.rate-cards-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 50px;
}

.plan {
    border-radius: 16px;
    padding: 10px;
    background: var(--light-bg);
    color: var(--text-color);
    max-width: 300px;
    width: 100%;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px var(--soft-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan strong {
    font-weight: 600;
    color: var(--primary);
}

.plan .inner {
    align-items: center;
    padding: 20px;
    padding-top: 40px;
    border-radius: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.plan .pricing {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    border-radius: 99em 0 0 99em;
    display: flex;
    align-items: center;
    padding: 0.625em 0.75em;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--light-bg);
    transition: background 0.3s ease;
}

.plan .pricing small {
    color: var(--soft-white);
    font-size: 0.75em;
    margin-left: 0.25em;
}

.plan .title {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary);
    font-family: var(--font-family);
}

.plan .title + * {
    margin-top: 0.75rem;
}

.plan .info + * {
    margin-top: 1rem;
}

.plan .features,
.plan .what-you-get {
    display: flex;
    flex-direction: column;
}

.plan .features li,
.plan .what-you-get li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-family);
    position: relative;
}

.plan .what-you-get .hidden {
    display: none;
}

.plan .features li + *,
.plan .what-you-get li + * {
    margin-top: 0.75rem;
}

.plan .features .icon,
.plan .what-you-get .icon {
    background-color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--light-bg);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    transition: background 0.3s ease;
}

.plan .features .icon svg,
.plan .what-you-get .icon svg {
    width: 14px;
    height: 14px;
}

.plan .features + *,
.plan .what-you-get + * {
    margin-top: 1.25rem;
}

.plan .action,
.plan .read-more-action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.plan .what-you-get-title {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary);
    margin-top: 1.5rem;
}

.plan .button {
    background-color: var(--primary);
    border-radius: 6px;
    color: var(--light-bg);
    font-weight: 500;
    font-size: 1.125rem;
    text-align: center;
    border: 0;
    outline: 0;
    width: 100%;
    padding: 0.625em 0.75em;
    text-decoration: none;
    font-family: var(--font-family);
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.plan .read-more-button {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 1.125rem;
    text-align: right;
    outline: 0;
    padding: 0.625em 0;
    text-decoration: none;
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    transition: color 0.3s ease;
}

.plan .read-more-button .button-text {
    margin-right: 0.5rem;
}

.plan .read-more-button .button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.plan .read-more-button .button-icon svg {
    width: 16px;
    height: 16px;
}

.plan .button:hover,
.plan .button:focus {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.plan .read-more-button:hover,
.plan .read-more-button:focus {
    color: var(--accent);
}

.plan .what-you-get li:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--light-bg);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.plan .what-you-get li::after {
    opacity: 0;
}

/* Responsive Design for Cards */
@media (max-width: 768px) {
    .plan {
        min-width: 20%;
        margin: 0 10px;
        box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1), -6px -6px 12px var(--soft-white);
    }

    .plan .inner {
        padding: 15px;
        padding-top: 30px;
    }

    .plan .pricing {
        padding: 0.5em 0.6em;
        font-size: 1.1rem;
    }

    .plan .what-you-get li:hover::after {
        left: 0;
        transform: none;
        white-space: normal;
        max-width: 200px;
    }
}

@media (max-width: 567px) {
    .rate-cards-container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .plan .title {
        font-size: 1.1rem;
    }

    .plan .pricing {
        font-size: 1rem;
    }

    .plan .button,
    .plan .read-more-button {
        font-size: 1rem;
    }

    .plan .features .icon,
    .plan .what-you-get .icon {
        width: 18px;
        height: 18px;
    }

    .plan .features .icon svg,
    .plan .what-you-get .icon svg,
    .plan .read-more-button .button-icon svg {
        width: 12px;
        height: 12px;
    }

    .plan .what-you-get li:hover::after {
        font-size: 0.75rem;
        max-width: 150px;
    }
}
.rate-card-under-box {
  display: none;
  max-width: 1200px;
  width: 100%;
  height: auto;
  padding: 20px;
  margin: 30px auto;
  border-radius: 10px;
  
  /* Glassmorphism Styles */
  background: rgba(255, 255, 255, 0.2); /* primary color with transparency */
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

  transition: var(--transition);
  color: var(--text-color);
  font-family: var(--font-family);
}

.rate-card-under-box:hover {
  background: rgba(255, 255, 255, 0.25); /* use accent color on hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.contactser{
  margin: 60px auto;
}



/* Toast Container */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Toast Base */
.toast {
  min-width: 260px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(-20px);
  animation: slideIn 0.4s ease forwards, fadeOut 0.5s ease 3s forwards;
}

/* Variants */
.toast.error {
  background: #dc3545; /* Red */
}
.toast.success {
  background: #28a745; /* Green */
}
.toast.info {
  background: #007bff; /* Blue */
}

/* Animation */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateY(-20px); }
}



 .smart-list-page {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--text-color);
            margin: 0;
            line-height: 1.7;
            font-size: 16px;
        }
        .hidden { display: none; }

        /* BLOCK 2: Container and Section Heading Styles */
        .spl-container { max-width: 1280px; margin: 0 auto; padding: 24px; }
        .spl-section-heading {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 64px 0 48px;
            color: var(--text-color);
            position: relative;
        }

        /* BLOCK 3: Header Styles */
        .spl-header {
            text-align: center;
            padding: 80px 24px;
            background: var(--landing-bg);
            border-radius: 16px;
        }
        .spl-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
        
        }
        .spl-header .spl-highlight { color: var(--primary-color); }
        .spl-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem auto;
            color: #475569;
        }
        .spl-main-button {
            background: var(--gradient-bg);
            color: white;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            transition: transform var(--transition), box-shadow var(--transition);
            display: inline-block;
            border: none;
            cursor: pointer;
        }
        .spl-main-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        /* BLOCK 4: Comparison Section Styles */
        .spl-comparison-section {
            background-color: var(--landingsec-bg);
            border-radius: 20px;
            padding: 48px;
            box-shadow: var(--box-shadow);
            margin-top:50px;
            margin-bottom: 64px;
        }
        .spl-mobile-cards-view { display: none; }
        .spl-table-wrapper { overflow-x: auto; }
        .spl-comparison-table { width: 100%; border-collapse: collapse; min-width: 850px; }
        .spl-comparison-table th, .spl-comparison-table td {
            padding: 18px 14px;
            text-align: left;
            border-bottom: 1px solid var(--borderlan-color);
            font-size: 0.95rem;
        }
        .spl-comparison-table thead th { text-align: center; font-size: 1.6rem; padding-bottom: 24px; font-weight: 600; }
        .spl-comparison-table th:first-child { text-align: left; }
        .spl-plan-name { font-size: 1.8rem; font-weight: 700; }
        .spl-plan-smart { color: var(--primary-color); }
        .spl-plan-advanced { color: #d97706; }
        .spl-plan-price { font-size: 1.05rem; font-weight: 500; color: #475569; }
        .spl-plan-price .spl-strikethrough { text-decoration: line-through; color: #94a3b8; margin-left: 10px; }
        .spl-comparison-table tbody td { text-align: center; }
        .spl-comparison-table tbody td:first-child { text-align: left; font-weight: 500; }
        .spl-checkmark { color: var(--accentsec-color); font-weight: bold; font-size: 1.6rem; }
        .spl-dash { color: #ef4444; font-weight: bold; font-size: 1.6rem; }
        .spl-plan-chooser input[type="radio"] { display: none; }
        .spl-plan-chooser-btn {
            display: inline-block;
            padding: 12px 24px;
            font-weight: 600;
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            cursor: pointer;
            transition: all var(--transition);
            width: 100%;
            box-sizing: border-box;
            background: var(--landingsec-bg);
            color: var(--primary-color);
        }
        .spl-plan-chooser.disabled .spl-plan-chooser-btn { cursor: not-allowed; opacity: 0.6; }

        /* BLOCK 5: Features Grid Styles */
        .spl-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 64px;
        }
        .spl-feature-card {
            background: var(--landingsec-bg);
            padding: 32px;
            border-radius: 16px;
            box-shadow: var(--box-shadow);
            transition: transform var(--transition), box-shadow var(--transition);
            position: relative;
            overflow: hidden;
        }
        .spl-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-bg);
            opacity: 0.8;
        }
        .spl-feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        .spl-feature-card-icon { font-size: 2.8rem; margin-bottom: 20px; color: var(--primary-color); }
        .spl-feature-card h3 { font-size: 1.4rem; margin: 0 0 12px; color: var(--text-color); font-weight: 600; }
        .spl-feature-card p { color: #475569; margin: 0; font-size: 0.95rem; }

        /* BLOCK 6: FAQ Section Styles */
        .spl-faq-container { max-width: 900px; margin: 0 auto; }
        .spl-faq-item {
            background: var(--landingsec-bg);
            margin-bottom: 16px;
            border-radius: 12px;
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: box-shadow var(--transition);
        }
        .spl-faq-item:hover { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
        .spl-faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-color);
        }
        .spl-faq-question .spl-faq-arrow {
            font-size: 1.4rem;
            color: var(--primary-color);
            transition: transform var(--transition);
        }
        .spl-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out, padding 0.4s ease;
            padding: 0 24px;
            color: #475569;
            font-size: 0.95rem;
        }
        .spl-faq-item.open .spl-faq-answer { max-height: 400px; padding: 0 24px 24px 24px; }
        .spl-faq-item.open .spl-faq-arrow { transform: rotate(180deg); }

        /* BLOCK 7: CTA Section Styles */
        .spl-cta-section {
            background: var(--gradient-bg);
            color: white;
            text-align: center;
            padding: 64px 24px;
            border-radius: 20px;
            margin: 64px 0;
            position: relative;
            overflow: hidden;
        }
        .spl-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
            opacity: 0.3;
        }
        .spl-cta-section h2 { font-size: 2.2rem; margin: 0 0 20px; font-weight: 700; position: relative; }
        .spl-cta-section p { max-width: 650px; margin: 0 auto 32px auto; opacity: 0.95; font-size: 1.1rem; position: relative; }
        .spl-cta-button {
            background: #ffffff;
            color: var(--primary-color);
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            transition: all var(--transition);
            display: inline-block;
            position: relative;
        }
        .spl-cta-button:hover {
            background: #f1f5f9;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* BLOCK 8: Responsive Styles (Mobile View) */
        @media (max-width: 992px) {
            .spl-header { padding: 48px 16px; }
            .spl-header h1 { font-size: 1.4rem; }
            .spl-header p { font-size: 1.05rem; }
            .spl-comparison-section { padding: 10px; margin-top: 50px; }
            .spl-section-heading { font-size: 1.6rem; }
            .spl-cta-section h2 { font-size: 1.5rem; }
            .spl-cta-section p { font-size: 1rem; }
            .spl-table-wrapper { display: none; }
            .spl-mobile-cards-view { display: block; }
            
            /* NEW: Mobile Grid View Styles */
            .spl-mobile-plan-headers {
                display: flex;
                justify-content: space-around;
                text-align: center;
                margin-bottom: 24px;
                border-bottom: 2px solid var(--borderlan-color);
                padding-bottom: 16px;
            }
            .spl-mobile-plan-header {
                width: 50%;
            }
            .spl-mobile-plan-header .spl-plan-name {
                font-size: 1.2rem;
                font-weight: 700;
            }
            .spl-mobile-plan-header .spl-plan-price {
                font-size: 0.9rem;
            }
            .spl-mobile-feature-row {
                background: var(--landingsec-bg);
                border: 1px solid var(--borderlan-color);
                border-radius: 12px;
                padding: 16px;
                margin-bottom: 12px;
            }
            .spl-mobile-feature-title {
                text-align: center;
                margin: 0 0 12px 0;
                font-size: 1.1rem;
                font-weight: 600;
                color: var(--primary-color);
            }
            .spl-mobile-feature-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items:center;
    gap:10px;
}

            .spl-mobile-feature-value {
                width: 100%; /* Slightly less than 50% for gap */
                text-align: center;
                font-size: 14px;
                
            }
            .spl-mobile-feature-value-title{
                font-size: 1rem;
                color: var(--text-color);
                font-weight: 600;
                text-align:center;
                border: 1px solid var(--borderlan-color);
                border-radius: 5px;
            }
            .spl-mobile-chooser-row {
                background: transparent;
                border: none;
                padding: 16px 0 0 0;
            }
             .spl-mobile-chooser-row .spl-plan-chooser-btn {
                padding: 12px 8px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 350px){
.spl-feature-card {
    width: 235px;
}
        }

        /* BLOCK 9: Modal Styles (Reusable for Inquiries) */
        .spl-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.8);
            backdrop-filter: blur(4px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .spl-modal-overlay.visible {
            opacity: 1;
            visibility: visible;
        }
        .spl-modal-content {
            background: var(--landing-bg);
            padding: 32px;
            border-radius: 16px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }
      /*   .spl-modal-overlay.visible .spl-modal-content {
            transform: scale(1);
        } */
        .spl-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }
        .spl-modal-header h3 { margin: 0; font-size: 1.5rem; }
        .spl-modal-close-btn { font-size: 2rem; cursor: pointer; border: none; background: none; color: #94a3b8; }
        .spl-modal-body p { margin: 0 0 24px; color: #475569; }
        .spl-form-group { margin-bottom: 20px; }
        .spl-form-group label { display: block; font-weight: 600; margin-bottom: 8px; }
        .spl-form-group input {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--borderlan-color);
            border-radius: 8px;
            box-sizing: border-box;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .spl-form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
        }
        .spl-modal-submit-btn {
            width: 100%;
            background: var(--gradient-bg);
            color: white;
            padding: 14px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .spl-modal-submit-btn:hover { opacity: 0.9; }
        .spl-modal-loader {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        .spl-modal-message {
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 20px;
        }
        .spl-modal-message.success { color: var(--accentsec-color); }
        .spl-modal-message.error { color: #ef4444; }