
        :root {
            --primary-color: #01014d;
            --secondary-color: #003366;
            --accent-color: #ff6b35;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --gray-color: #6c757d;
            --bs-heading-color: #01014d;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            font-family: "Mulish", sans-serif;
        }
        html, body {
  max-width: 100%;
  overflow-x: hidden;
}
h1{
    font-size: 54px !important;
    font-family: "Mulish", sans-serif;
}
.bg-white{background:#fff;}
        
        /* Header Styles */
        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            max-width: 150px;
        }
        
        .navbar-brand span {
            color: var(--accent-color);
        }
        
        .dropdown-menu {
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border: none;
            padding: 10px 0;
        }
        
        .dropdown-item {
            padding: 10px 20px;
            transition: background-color 0.3s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
        }
        
        /* Hero Section */
       .hero {
    background-image: url(../images/herobg.png);
    background-size: cover;
    color: white;
    padding: 80px 0;
    position: relative;
   
}
.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: #4b6cb7;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #182848, #4b6cb7);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #182848, #4b6cb7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
opacity: 0.9;
    
}
        
        
       
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #fff;
        }
        
        /* Pricing Form */
        .pricing-form {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            padding: 30px;
            margin: 30px auto 0;
            max-width: 600px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            color: #333;
        }
        
        .pricing-form h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

 .heroSwiper {
  height: 100%;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
  padding: 30px;
  color: white;
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  font-family: "Mulish", sans-serif;
}

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

/* Hide non-active slides */
.swiper-slide {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.swiper-slide.swiper-slide-active {
  opacity: 1;
}
        
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 500;
            transition: background-color 0.3s ease;
            width: 100%;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            background-color: var(--secondary-color);
        }
        
        .form-note {
            text-align: center;
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--gray-color);
        }
        
        /* Section Styles */
        .section-title {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Company Section */
        .company-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .company-image:hover {
            transform: scale(1.02);
        }
        
        .company-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .feature-card {
            background: white;
            border-radius: 50px 0!important;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #000428!important;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            border: 2px solid transparent;
            border-radius: 8px;
           background: #000428;  /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

            transition: all 0.8s ease;
            opacity: 0;
        }
        
        .feature-card:hover::before {
            opacity: 1;
            transform: scale(1.05);
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .feature-card h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--secondary-color);
            position: relative;
            z-index: 1;
        }
         .feature-card:hover h4, .feature-card:hover p,.feature-card:hover .feature-icon {
            color: #fff!important;
         }

        
        /* Services Section */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
        }
        
        .service-column {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(13, 111, 216, 0.05) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .service-column:hover::before {
            opacity: 1;
        }
        
        .service-column:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-column h3 {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .service-column p {
            margin-bottom: 20px;
            color: var(--gray-color);
            position: relative;
            z-index: 1;
        }
        
        .courses-list {
            margin-bottom: 20px;
        }
        
        .courses-list h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .courses-list ul {
            list-style: none;
            padding-left: 0;
        }
        
        .courses-list li {
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .services-offered {
            margin-top: 20px;
        }
        
        .services-offered h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .services-offered ul {
            list-style: none;
            padding-left: 0;
        }
        
        .services-offered li {
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
        }
        
        /* Samples Section */
        .samples {
            background-color: var(--light-color);
        }
        
        .samples-content {
            text-align: center;
        }
        
        .samples-content h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .samples-content p {
            color: var(--gray-color);
            margin-bottom: 30px;
        }
        
        .samples-button {
            background-color: var(--accent-color);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .samples-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s ease;
            z-index: -1;
        }
        
        .samples-button:hover::before {
            left: 100%;
        }
        
        .samples-button:hover {
            background-color: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
        
        /* Pricing Section */
        .pricing {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }
        
        .pricing-content {
            text-align: center;
        }
        
        .pricing-content h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .pricing-content p {
            color: var(--gray-color);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .pricing-button {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .pricing-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s ease;
            z-index: -1;
        }
        
        .pricing-button:hover::before {
            left: 100%;
        }
        
        .pricing-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-info, .contact-form {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .contact-info::after, .contact-form::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .contact-info:hover::after, .contact-form:hover::after {
            transform: scaleX(1);
        }
        
        .contact-info:hover, .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: #fff;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-column ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Animate on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            nav ul li {
                margin-left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .form-row {
                flex-direction: column;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
    .form-label{text-align: left!important;}
    .feature-description{
        z-index: 2;
    position: relative;
    }

    .swiper-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.swiper-slide-active {
    opacity: 1;
    visibility: visible;
    position: relative;
}
/* === HEADING STYLE #1 === */
h2.one {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 5px;
  position: relative;
}
h2.one:before {
  width: 28px;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  margin-left: -14px;
  background-color: #01014d;
}
h2.one:after {
  width: 100px;
  height: 1px;
  display: block;
  content: "";
  position: relative;
  margin-top: 25px;
  left: 50%;
  margin-left: -50px;
  background-color: #01014d;
}
.samples-section {
    background:url(../images/sample.jpg) bottom;
    background-attachment: fixed;
    border-top: 2px solid #eee;
    background-size: cover;
    position: relative;
}
.samples-section:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.samples-section .container {
    z-index: 5;
    position: relative;
}

.samples-section h3 {
    font-size: 1.75rem;
    color: #fff;
}

.samples-button {
    font-size: 1.1rem;
}
.about-image{
    position: relative;
    padding: 20px;
}

.about-image:before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80%;
    height: 110%;
    background-color: #01014d;
    border-radius: 50px;
}
.price{
     background: linear-gradient(135deg, #bcace8, var(--secondary-color));
}
.courses .card{
    border:1px solid #01014d;
    border-radius: 50%;
    width: 200px;

}
.courses .card:hover{
    border:1px solid #000;
    border-radius: 0px ;
    transition: all 0.8s ease;
}
.nav-pills .nav-link{margin: 0px 10px;}
.nav-pills .nav-link:hover, .nav-pills .nav-link.active {
  background-color:rgb(4 4 79);
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  color: #fff!important;
}
/* Enable dropdown on hover */
.hover-dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0; /* Optional: removes jump */
  opacity: 1;
  visibility: visible;
}

/* Optional: transition for smooth appearance */
.dropdown-menu {
  transition: opacity 0.2s ease, visibility 0.2s ease;
  opacity: 0;
  visibility: hidden;
}
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  color: #000;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color:rgb(4 4 79); /* Bootstrap primary or your custom color */
  z-index: -1;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #fff;
}
.dropdown-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #000428; /* Change to your theme color */
  z-index: -1;
  transition: width 0.3s ease;
}

.dropdown-item:hover::before {
  width: 100%;
}

.dropdown-item:hover {
  color: #fff;
}
.btn-slide {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: transparent;
  color: #000428; /* Initial text color (Bootstrap primary) */
  border: 2px solid #000428;
  transition: color 0.3s ease;
}

.btn-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #000428; /* Slide color */
  z-index: -1;
  transition: width 0.3s ease;
}

.btn-slide:hover::before {
  width: 100%;
}

.btn-slide:hover {
  color: #fff;
}
.course-owl-carousel .card-body {
    
    align-content: center;
    padding-top: 0!important;
}
.course-owl-carousel .item{
    height: 200px;
        justify-content: center;
        display: flex;
}
.owl-nav {
  position: absolute;
  top: 40%;
  width: 110%;
  left: -5%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Allows the nav container to be ignored by clicks */
  padding: 0 15px;
  z-index: 1000;
}

.owl-nav button {
  pointer-events: all; /* Enables clicking */
  background: #fff!important;
    padding: 10px;
    border: 1px solid #aaa!important;
    box-shadow: 5px 5px 5px #ccc!important;
    border-radius: 50%!important;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: #000!important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background-color: #f0f0f0;
  color: #333;
}
.courses h3 {
    background: #fff;
    padding: 10px;
    border: 1px solid #aaa;
    box-shadow: 5px 5px 5px #ccc;
    border-radius: 50px;
    text-align: center;
    color: #000;
    display: block;
    width: 100%;
    margin: 20px auto 50px auto;
    text-decoration: none!important;

}
.courses h4 {
    background: var(--dark-color);
    padding: 10px;
    border: 1px solid #aaa;
    box-shadow: 5px 5px 5px #ccc;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    display: block;
    width: 300px;
    margin: 0 auto;
}
.courses img{border-radius: 50px 0 50px 0;
box-shadow: 10px 10px 10px #ccc;
}
.review-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}
.review-box {
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    flex: 0 0 auto;
    width: 180px;
    scroll-snap-align: start;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.star-rating-box {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}
.review-logo {
    width: 100%;
    max-width: 120px;
    margin-bottom: 8px;
    transition: transform 0.3s ease-in-out;
}
.star {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border-radius: 4px;
    color: white;
}
.google-review .rating-number {
    color: #4285F4;
}
.star.half {
    background-color: #d3d3d3;
}
.google-review .star.filled {
    background-color: #4285F4;
}
.trustpilot-review .star.filled {
    background-color: #00b67a;
}
.trustpilot-review .rating-number {
    color: #00b67a;
}
.rating-number {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 6px;
    color: #333;
}
.hero ul{display: block;}
.hero ul li{display: inline-block;
    align-items: center;
    margin-right: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px 10px;
    margin: 5px;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.stats-section {
    text-align: center;
    padding: 60px 20px;
  }

  .stats-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
  }

  .stats-title span {
    color: #04044F;
    position: relative;
  }

  .stats-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #04044F;
    left: 0;
    bottom: -8px;
    border-radius: 10px;
  }

  .stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .stat-card {
    background: white;
    /* box-shadow: 0 6px 15px rgb(4 4 79); */
    border-radius: 16px;
    padding: 30px 20px;
    flex: 1 1 220px;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(4 4 79);
  }

  .stat-icon {
    font-size: 40px;
    color: #04044F;
    margin-bottom: 15px;
  }

  .stat-number {
    font-size: 26px;
    font-weight: bold;
    color: #04044F;
  }

  .stat-desc {
    font-size: 14px;
    color: #444;
    margin-top: 8px;
  }

  @media (max-width: 768px) {
    .stats-title {
      font-size: 26px;
    }
    .stat-card {
      max-width: 100%;
    }
  }

  .contact-card {
    width: 450px;
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.6);
    /* color: #fff; */
    border-radius: 12px;
    background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMXJN1Jc-gbF1TpiuIjLGizF0OqciDMDXMIg&s'); 
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  .contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMXJN1Jc-gbF1TpiuIjLGizF0OqciDMDXMIg&s'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    z-index: 0;
  }

  .contact-card * {
    position: relative;
    z-index: 1;
  }

  .contact-card h2 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #fff;
  }

  .contact-section {
    margin-bottom: 25px;
  }

  .contact-section i {
    margin-right: 8px;
    color: #fff !important;
  }

  .contact-section h4 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    margin-bottom: 10px;
    color: #fff;
  }

  .contact-section p, 
  .contact-section a {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    text-decoration: none;
  }

  /* .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 6px;
    color: #04044F !important;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
  } */
   .social-icons-media {
    padding: 0px;
   }
  .social-icons-media .tli{
    font-size: 25px;
    padding: 10px;
  }
  .social-icons-media .tli:hover{
    font-size: 25px;
    color:#fff;
    background-color: #04044F;
  }

  /* .social-icons a:hover {
    background: #04044F;
    color: #04044F;
    transform: scale(1.05);
  } */

  @media (max-width: 400px) {
    .contact-card {
      width: 90%;
      padding: 20px;
    }
  }

  .contact-form {
    margin: 5px;
    background: white;
    border: 3px solid #04044F;
    border-image-slice: 1;
    border-width: 3px;
    /* border-image-source: linear-gradient(to bottom, #4b0082, #f2b705); Indigo to yellow gradient border */
    border-radius: 15px;
    padding: 30px;
    width: auto;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
}
.contact-form h3 {
    color: #04044F;
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
label {
    font-weight: 600;
    color: #222222;
    font-size: 0.9rem;
}
.form-control {
    border-radius: 10px;
    border: 1.5px solid #cccccc;
    font-size: 0.9rem;
}
.form-control::placeholder {
    /* font-style: italic; */
    color: #999999;
}
textarea.form-control {
    resize: vertical;
}
.btn-submit {
    background-color: #f2b705;
    color: black;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 15px;
}
.btn-submit:hover {
    background-color: #d1a103;
    color: black;
}


.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    justify-content: center;
}
.carousel {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 80vw;
    max-width: 1100px;
    margin-bottom: 20px;
    overflow: hidden;
}
.card {
    background: #fff;
    border: 2px solid #04044F;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(95, 95, 121, 0.12), 0 4px 9px rgba(0,0,0,0.02);
    width: 320px;
    margin: 0 10px;
    padding: 28px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
}
.profile-img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px auto;
    background: #eaeaea;
}
.card h2 {
    text-align: center;
    color: #04044F;
    margin: 0 0 7px 0;
    font-size: 1.2rem;
}
.stars {
    text-align: center;
    font-size: 1rem;
    color: #fb0;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.card p {
    color: #22223b;
    font-size: 13px;
    margin-bottom: 23px;
    text-align: justify;
}
.card-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: absolute;
    bottom: 10px;
}
.btn-primary-custom {
    background: #04044F;         /* Purple shade */
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: none;
}

.btn-primary-custom:hover {
    background: #04044F;    
         /* Slightly darker on hover */
         cursor: pointer;
}

.btn-outline-custom {
    background: #fff;
    color: #04044F;
    border: 2px solid #04044F;
    border-radius: 7px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
}

.btn-outline-custom:hover {
    background: #04044F;
    color: #fff;
}
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.carousel-nav button {
    background: #04044F;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.2s;
}
.carousel-nav button:active {
    background: #04044F;
}
@media (max-width: 1100px) {
    .carousel {
        width: 100vw;
    }
}
@media (max-width: 1024px) {
    .carousel {
        flex-direction: column;
        align-items: center;
    }
    .card {
        margin: 12px 0;
    }
}
@media (max-width: 700px) {
    .carousel {
        flex-direction: column;
        width: 98vw;
    }
    .card {
        width: 98vw;
        max-width: 350px;
        margin: 8px 0;
    }
}
.tab-section_one{
    background-color: #fff ;
}
.video-section iframe{
    border-radius: 20px ;
}

.offer-box {
    border: 3px solid #04044F;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 6px 32px rgba(60,60,100,0.12), 0 2px 12px rgba(60,60,100,0.08);
    padding: 48px 32px;
    margin: 32px auto;
    min-height: 260px;
    transition: box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.offer-box:hover {
    cursor: pointer;
    box-shadow: 0 10px 42px 0 rgba(56,39,144,0.14), 0 2px 8px 0 rgba(31,13,118,0.12);
}
.offer-title {
    font-size: 25px;
    font-weight: 700;
    color: #23223f;
    font-family: 'Montserrat', sans-serif;
}
.offer-desc {
    font-size: 1rem;
    margin-bottom: 36px;
    color: #444;
}
.offer-btn {
    background: #04044F;
    border: none;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
    padding: 10px 30px;
    font-size: 1.15rem;
    transition: background 0.15s;
    box-shadow: 0 2px 10px rgba(55,0,120,0.09);
    cursor: pointer;
}
.offer-btn:hover {
    background: #04044F;
    color: #fff;
    cursor: pointer;
}
.offer-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}
.offer-img {
    max-width: 210px;
    width: 100%;
    animation: float 2.6s ease-in-out infinite alternate;
}
@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px);}
}
@media (max-width: 991px){
    .offer-box {
        padding: 32px 10px;
    }
    .offer-title {
        font-size: 1.3rem;
    }
    .offer-img-container {
        margin-top: 20px;
    }
}


.main-banner-card {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 36px rgba(40,40,100,0.10);
    /* background: linear-gradient(135deg, #6d36e7 0%, #34a5df 100%); */
    border: 2px solid #04044F;
}
.banner-content {
    padding: 38px 38px 24px 38px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background: rgba(255,255,255,0.07);
    border-radius: 24px;
}
.banner-title {
    color: #04044F;
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: .01em;
}
.banner-hr {
    height: 2.5px;
    background: linear-gradient(to right, #fdce52 0%, #f9f9f9 70%);
    border: none;
    border-radius: 4px;
    margin: 0 auto 26px auto;
    width: 97%;
    opacity: 0.8;
}
.banner-left {
    flex: 1 1 430px;
    min-width: 320px;
    color: #04044F;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.78;
    margin-bottom: 0;
    padding-right: 38px;
    padding-bottom: 16px;
}
.banner-right {
    flex: 0 1 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-map {
    max-width: 300px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(19,20,100,0.15);
    margin-bottom: 18px;
}
.banner-btn {
    background: #04044F;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    margin-top: 15px;
    box-shadow: 0 2px 14px rgba(47,16,132,0.10);
    transition: background 0.16s;
}
.banner-btn:hover {
    background: #04044F;
    color: #fff;
}
@media (max-width: 900px){
    .banner-content {
        flex-direction: column;
        padding: 26px 12px 16px 12px;
    }
    .banner-left, .banner-right {
        padding: 0;
    }
    .banner-right {
        justify-content: flex-start;
    }
}

.animated-map {
    animation: floatMap 2.9s ease-in-out infinite alternate;
}
@keyframes floatMap {
    0%   { transform: translateY(0);}
    100% { transform: translateY(-22px);}
}


/* breadcrumb */
.breadcrumb-section {
    background: #04044F;
    background-size: cover;
    overflow: hidden;
    position: relative;
    height: 230px;
  }

  .breadcrumb-box {
    background-color: #19198a; /* dark style */
    color: white;
    border-radius: 12px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
  }

  .breadcrumb-box a {
    color: #fff;
    text-decoration: none;
  }

  .breadcrumb-box a:hover {
    text-decoration: underline;
  }

  .breadcrumb-separator {
    color: white;
  }
  

  /* blog */
  .blog-card {
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .blog-card img {
    width: 100%;
    height: auto;
    max-height:200px;
    object-fit:cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-date {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
  }

  .blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .read-more-btn:hover {
    background-color: #f2f2f2;
    border-color: #04044F;
    color: #000;
  }

  .read-more-btn i {
    font-size: 16px;
  }

  /* blog detail */
  .box-main {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 15px auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    max-width: 900px;
}
h2, h3 {
    margin-top: 30px;
    margin-bottom: 20px;
}
.faq-section {
    background: #f6f9fd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 32px;
}
.faq-question {
    font-weight: 600;
    margin-top: 15px;
}
.sidebar {
    background: #f4f9fb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.sidebar label {
    font-size: 0.95rem;
    margin-bottom: 5px;
    display: block;
}
.sidebar select, .sidebar input[type="text"] {
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    .box-main {
        padding: 16px;
    }
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
    z-index: 100;
}
.sidebar-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 20px 18px;
    margin-bottom: 30px;
    border: 1px solid #efefef;
}
.sidebar-card h5 {
    font-weight: 600;
}
.decorative-divider {
    width: 55px;
    border-bottom: 4px dotted #ad935b;
    margin: 0 0 18px 0;
    display: block;
}
.recent-post-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}
.recent-thumbnail {
    width: 58px;
    height: 46px;
    object-fit: cover;
    border-radius: 7px;
    margin-right: 14px;
}
.recent-meta {
    font-size: 0.93rem;
    color: #7a7a7a;
    margin-top: 2px;
    display: flex;
    align-items: center;
}
.recent-meta .bi-calendar {
    font-size: 1.02em;
    margin-right: 5px;
}
.recent-title {
    font-weight: 500;
    font-size: 1.05em;
    color: #232323;
    margin-bottom: 3px;
}

/* order form  */

.order-form-wrapper {
    max-width: 1000px;
    background: transparent;
    border-radius: 14px;
    border: 3px solid #04044F ;
  }
  .order-form label {
    color: #211541;
  }
  .order-form select,
  .order-form input,
  .order-form textarea {
    border-radius: 8px;
    border: 1px solid #D6D4E0;
    font-size: 1rem;
  }
  .order-form h2 {
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    font-weight: 700;
  }
  .drag-drop-area {
    border: 2px dashed #bbb;
    background: #faf7ff;
    transition: background 0.2s, border 0.2s;
  }
  .drag-drop-area:hover {
    border-color: #5B33B6;
    background: #f1e8ff;
  }
  .upload-label {
    width: 100%;
  }
  .order-form .form-check-label a {
    color: #5B33B6;
  }

  /* points */
  .benefit-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 0 24px 3px #e6d3f7;
    max-width: 1100px;
    margin: 10px;
  }
  .benefit-point {
    font-size: 1.07rem;
    color: #39396a;
    display: flex;
    align-items: center;
  }
  .benefit-point i {
    font-size: 1.2rem;
  }
  @media (max-width: 767.98px) {
    .benefit-card {
      padding: 1.2rem;
    }
    .benefit-point {
      font-size: 1rem;
    }
  }
  
  /* profile page */
  .profile-card {
    max-width: 850px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 36px 3px #e6d3f7;
    overflow: hidden;
    margin-top: 18px;
  }
  
  .profile-side {
    background: linear-gradient(135deg, #04044F 0%, #3B3881 100%);
    min-height: 300px;
    position: relative;
  }
  
  .profile-img-box {
    background: #fff;
    border-radius: 18px;
    padding: 10px 13px;
    box-shadow: 0 8px 36px 3px #dabfe4;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .profile-img {
    border-radius: 18px;
    width: 114px; /* Adjust as needed */
    height: 114px;
    object-fit: cover;
    background: #f0f0f0;
  }
  
  .profile-name {
    color: #67511a;
  }
  .edit-profile-link {
    background: #fff;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 1rem;
    color: #be5b96;
    margin-top: 5px;
    display:inline-block;
    text-decoration: none;
    transition: background 0.2s;
  }
  .edit-profile-link:hover {
    background:#f5daed;
    color:#750853;
  }
  
  /* Details side (right) */
  .details-side {
    background: #fff;
    border-radius: 0 18px 18px 0;
    min-height: 290px;
  }
  
  .password-card {
    max-width: 850px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 36px 3px #e6d3f7;
  }
  
  .password-card input[disabled] {
    background: #f7f4fb;
    border: 1px solid #e4d9f0;
    color: #212529;
    font-size: 1.06rem;
  }

  .details-side a.text-primary {
    color: #04044F !important;
    transition: color 0.2s;
  }
  
  @media (max-width: 767.98px) {
    .profile-card, .password-card {
      border-radius: 12px;
      box-shadow: 0 4px 16px 2px #e6d3f7;
    }
    .details-side, .profile-side {
      border-radius: 0 !important;
      min-height: unset;
      padding: 1rem !important;
    }
    .profile-img-box {
      width: 110px;
      height: 110px;
      padding: 7px 8px;
    }
    .profile-img {
      width: 90px;
      height: 90px;
    }
  }
  
  /* reset password */
  .pw-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 28px 3px #e6d3f7;
    max-width: 880px;
  }
  
  .pw-card h3 {
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.65rem;
  }
  
  .pw-field {
    border-radius: 8px;
    border: 1px solid #d6d4e0;
    font-size: 1.07rem;
    padding: 12px 12px;
  }
  
  .pw-card .btn-primary {
    background: #2457A7;
    font-size: 1.1rem;
    transition: background 0.2s;
  }
  .pw-card .btn-primary:hover {
    background: #122e68;
  }
  
  .pw-card .btn-outline-secondary {
    border: 1px solid #BBB7D2;
    color: #242464;
    font-size: 1.1rem;
    background: #fff;
  }
  
  @media (max-width: 900px) {
    .pw-card {
      max-width: 100%;
    }
  }
  @media (max-width: 767.98px) {
    .pw-card { padding: 0 0.5rem; }
    .pw-card h3 { font-size: 1.25rem; }
    .pw-field { font-size: 0.98rem; }
  }

  /* thank-you */
  .thank-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 28px 3px #e6d3f7;
    max-width: 420px;
  }
  
  .icon-success {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #22bf3a17;   /* very light green background */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: #04044F;           /* green checkmark */
    margin-top: -42px;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 9px 0 #c1f3cb36;
  }
  
  .thank-title {
    color: #231646;
    letter-spacing: 0.5px;
    font-size: 2.1rem;
  }
  
  .card-message {
    color: #64647e;
    font-size: 1.12rem;
    font-weight: 500;
  }
  
  .btn-success {
    background: #04044F;
    border: none;
    border-radius: 50px;
    font-size: 1.08rem;
    box-shadow: 0 1px 5px 0 #04044F;
    transition: background 0.15s;
  }
  
  .btn-success:hover, .btn-success:focus {
    background: #04044F;
  }
  
  .support-link {
    color: #04044F;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.18s;
  }
  
  .support-link:hover {
    color: #04044F;
    text-decoration: underline;
  }
  
  @media (max-width: 575px) {
    .thank-card {
      max-width: 98vw;
      padding: 2.1rem 1.1rem !important;
    }
    .thank-title { font-size: 1.5rem; }
  }

  /* my-order */
  .order-table-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 24px 3px #e6d3f7;
    /*max-width: 1120px;*/
    overflow: hidden;
  }
  
  .order-table-header th {
    background: #04044F;
    color: #fff !important;
    font-weight: 600;
    font-size: 1.04rem;
    border: none;
    letter-spacing: 0.02em;
    vertical-align: middle;
  }
  
  .table > :not(caption) > * > td {
    border-top: none;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.03rem;
    color: #222149;
  }
  .table > :not(caption) > * > th {
    border-top: none;
  }
  .table tbody tr {
    border-radius: 12px !important;
    background: #f3f8fa;
    transition: background 0.15s;
  }
  .table tbody tr:hover {
    background: #e7f3ff;
  }
  
  .badge.bg-success {
    background-color: #24cf68 !important;
    font-size: 1rem;
    padding: 0.45em 1.1em;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  
  .download-link {
    font-weight: 500;
    color: #22bf3a;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.3em;
  }
  
  .download-link:hover {
    color: #0c772c;
    text-decoration: underline;
  }
  
  .order-table-card .table:last-child {
    margin-bottom: 0;
  }
  
  /* Responsive tweaks */
  @media (max-width: 767.98px) {
    .order-table-card {
      max-width: 98vw;
    }
    .order-table-header th,
    .table > :not(caption) > * > td {
      font-size: 0.94rem;
      padding: 0.6rem 0.35rem;
    }
  }
  
  
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional: removes jump effect */
  }
  
  
 .course-head {
     background: var(--dark-color);
     padding: 10px;
    border: 1px solid #aaa;
    box-shadow: 5px 5px 5px #ccc;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    display: block;
    width: 300px;
    margin: 0 auto;
    margin-bottom:20px !important;
 }
 .cnt {padding:20px 0;}
 .cnt .col-md-3{border:1px solid transparent;
     border-radius:20px;
     padding:20px 0;
 }
 .cnt .col-md-3:hover{border:1px solid #bbb;
     box-shadow:5px 5px 10px #bbb;
 }
 .card:hover{border:1px solid #bbb;
     box-shadow:5px 5px 10px #bbb;}
     
.feature-card:hover i, .feature-card:hover h5, .feature-card:hover p{color:#fff;}
.feature-card .card-body{z-index:999;position: relative;}