
       /* Global Font */
        body {
            font-family: 'Rajdhani', sans-serif;
            margin: 0;
        }

        /* Header */
        .header-nav {
            background: #fff;
            border-bottom: 1px solid #eee;
            padding: 12px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: #1d2b4f;
        }

        .nav-link-custom {
            color: #0f1d40;
            margin: 0 12px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
        }

        .nav-link-custom:hover {
            /* color: #6a34ff; */
            color: #ff6648;

        }
        .nav-link-custom.active {
    color: #007bff; /* Change this to your desired active color */
    font-weight: bold;
}

.nav-link-custom.active:hover {
    color: #0056b3; /* Change to a darker shade for the hover state */
}


        .btn_about {
            padding: 15px 38px;
            font-weight: 600;
            font-size: 16px;
            color: #fff;
            border-radius: 28px;
            /* background-image: linear-gradient(0deg, #6a34ff 0%, #1a90ff 100%);
             */
             background-color: #069494;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }

        .btn_about:hover {
            opacity: 0.9;
             background-color:#ff6648;
        }

        /* Hero Section */
.hero-section {
    height: 80vh;
    width: 100%;
    background: url('/assets/images/bg_banner.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.55);
            z-index: 0;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
            color: #fff;
        }

        /* Solutions Section */
        .solutions-section {
            background-image: linear-gradient(180deg, #AFC6E6 0%, #E9E6EF 100%);
            padding: 80px 0;
        }

        .card-title , .about-section strong{
            font-weight: 700;
			font-size:22px;


        }
        .card-body{
		text-align:center;
		padding:30px;
		}
		.card-body i{
		font-size:36px;

		}
        .card-text , .about-section p {
            color: #555;
			font-size:20px;
			font-weight:600;
        }

        .text-primary {
            color: #069494 !important;
        }

        .about-section {
            padding: 80px 0;

        }
		.about-section h2 , .solutions-section h2{
		font-size:40px;
	    font-weight: 700;
		}
		footer {
    background: #2d333b;
}

/* Headings */
footer h4,
footer h5,
footer h6 {
    color: #ffffff;
    font-weight: 600;
	font-size:22px
}

/* Section title underline style */
footer h6.border-start,
footer h5.border-start {
    border-color: #069494 !important;
}

/* Paragraph text */
footer p,
footer li a ,footer span {
    font-size: 18px;
    line-height: 1.6;
}

/* Links */
footer a {
    color: #ffffff;
    transition: 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Social icons */
footer .social-icons a i,
footer .bi {
    font-size: 22px;
    transition: 0.3s;
}

footer .social-icons a:hover i {
    color: #069494;
}

/* Newsletter input */
footer input.form-control {
    border-radius: 6px;
    border: 1px solid #ffffff;
    padding: 10px;
}

footer input.form-control:focus {
    border-color: #6A34FF;
    box-shadow: 0 0 0 0.2rem rgba(63, 169, 245, 0.25);
}

/* Newsletter button */
footer button.btn-primary {
    background: #6A34FF;
    border: none;
    padding: 10px 18px;
    font-weight: 600;
}

footer button.btn-primary:hover {
    background: #ff5722;
}

/* Horizontal line */
footer hr {
    opacity: 0.2;
}
/* Menu link default style */
.links-column ul li a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    color: white;
}

/* Hover effect */
.links-column ul li a:hover {
  color: #ff5722; /* updated hover color */
}

/* Underline animation on hover */
.links-column ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #ff5722; /* updated underline color */
  transition: width 0.3s ease;
}

.links-column ul li a:hover::after {
  width: 100%;
}
/* Copyright */
footer .text-muted {
    color: #ffffff!important;
}


/* Optional: Increase spacing for all footer columns */
footer .col-md-4 {
    padding-left: 2rem;
    padding-right: 2rem;
}

footer p {
    margin-bottom: 1.5rem;
}
/* Add extra spacing to the middle column */
footer .col-md-4:nth-child(2) {
    padding-left: 3rem;
    padding-right: 3rem;
}
/* Move middle column slightly left */
footer .col-md-4.links-column {
    margin-left: -1.5rem; /* adjust value as needed */
}
footer .social-icons a i, footer .bi {
    font-size: 16px;
    transition: 0.3s;
}
footer .col-md-4 {
    padding-left: 1rem;
    padding-right: 8rem;
}

.footer-last-line.text-center.text-muted.pt-2 {
    font-size: 20px;
}
footer a {
    color: #ffffff;
    transition: 0.3s ease;
    text-decoration: none;
}
   /* Card Title Style */
  .card-title {
 font-size: 20px;
    font-weight: 800;
    color: #069494;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
  }

  .card-title:hover {
    color: #ff5722;
  }

  /* Card Paragraph Style */
  .card-text {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 0;
  }

  /* Optional: Card Hover Effect */
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }

   .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
.top-heading {
  text-align: center;
  color: #2c3e50;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.text-center {
    font-size: 40px;
    text-align: center!important;
    font-weight: 700;
}
/* .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
} */



/* banner */
.demo-card {
    position: relative;
    overflow: hidden;
    height: 350px;
    border-radius: 0;
    margin-top: 45px;
}
/* banner img */
.demo-card .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(50%);
  transition: transform 0.5s ease;
  border-radius: 0;
}

.demo-card:hover .card-img {
  transform: scale(1.05);
}

/*  text styling */
.demo-card .card-title {
    font-size: larger;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.demo-card .card-text {
    font-size: 20px;
    color: #f1f1f1;
    margin-bottom: 20px;
    text-align: center;
}

/*  button styling */
.btn-medium {
    font-size: 16px;
    font-weight: 600;
    padding: 15px 38px;
    border-radius: 32px;
    color:#fff;
    background-color: #069494 ;
    /* background-image: linear-gradient(0deg, #6a34ff 0%, #1a90ff 100%); */
    border: none;
    transition: background-color 0.3s ease;
}

.btn-medium:hover
{
    background-color: #ff5722;
}






/* ---------------- Pricing Section ---------------- */
.pricing-section {
  padding: 60px 15px;

}

.pricing-title {
  font-size: 2rem;
  font-weight: 600;
  color: #6A34FF;
  margin-bottom: 2rem;
  text-align: center;
}

/* ---------------- Pricing Cards ---------------- */
.pricing-card {
    width: 360px;
    min-height: 500px;
    border-radius: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(106, 52, 255, 0.2);
}

.pricing-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

/* Card Title */
.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #069494;
}

/* Content Paragraph */
.pricing-content {
    font-size: 16px;
    color: currentColor;
    margin-bottom: 0.75rem;
}

/* Price Styling */
.pricing-price {
    font-size: 1.8rem;
    font-weight: 700;

    margin-bottom: 1rem;
}

.pricing-duration {
  font-size: 0.9rem;
  font-weight: 400;
}

/* Features List */
.pricing-features {
  flex-grow: 1;
  list-style: none;
  padding-left: 0;
}

.feature-item {
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.feature-item i {
  font-size: 0.7rem;
  margin-right: 0.5rem;
  color: #6A34FF;
}

/* Buttons */
.pricing-btn {
  margin-top: auto;
  border-radius: 20px;
}

.btn-outline-primary {
  border-color: #069494;
  color: #069494;
  transition: all 0.3s;
  border-radius: 32px;
}

.btn-outline-primary:hover {
  background-color: #ff5722;
  color: #fff;
}

/* Popular Plan */
.popular-plan {
  background-color: #06949473;
  color: #1d1c1c;
  border: 2px solid #8e9191c2 !important;
}

.popular-plan .pricing-card-title,
.popular-plan .feature-item i,
.popular-plan .feature-item {
  color: #1d1c1c;
}

.popular-plan .btn-white {
  background-color: #fff;
  color: #069494;
  transition: all 0.3s;
  border: 1px solid #02776d;

}

.popular-plan .btn-white:hover {
  background-color: #ff5722;
  color: #fff;
}

.popular-plan .pricing-price {
  background-color: #fff;
  color: #6A34FF;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 1rem;
}
.bg-pricing-price{
    background-color: #215081 !important; ;
}
.training-section {
    font-family: 'Rajdhani', sans-serif;
}
 /* Card */
    .refund-card {
        background-color: #fff;

        border-radius: 10px;
        padding: 2rem;
        margin: 3rem auto;
        max-width: 900px;
        box-shadow: 0 5px 20px rgba(106, 52, 255, 0.2);
    }

    /* Main title */
    .refund-title {
        font-size: 2.5rem; /* Medium-large title */
        font-weight: 700;
        color: #069494;
        text-align: center;
        margin-bottom: 2rem;
    }

    /* Headings inside content */
    .refund-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
        color: #069494;
    }

    /* Paragraphs and lists */
    .refund-content p,
    .refund-content li {
        font-size: 1.15rem; /* Medium font size */
        line-height: 1.8;
        color: #333;
    }

    /* Nested lists */
    .refund-content ul li ul li {
        font-size: 1.05rem;
    }

    /* List icons */
    .refund-content li i {
        font-size: 1rem;
        color: #6A34FF;
        margin-right: 0.5rem;
    }
.rounded-2 {
    border-radius: var(--bs-border-radius)!important;
    margin-top: 25px;
}
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .refund-title {
            font-size: 2rem;
        }
        .refund-content p,
        .refund-content li {
            font-size: 1.1rem;
        }
        .refund-content h3 {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 576px) {
        .refund-title {
            font-size: 1.8rem;
        }
        .refund-content p,
        .refund-content li {
            font-size: 1rem;
        }
        .refund-content h3 {
            font-size: 1.2rem;
        }
    }
/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
  .pricing-card { width: 260px; min-height: 480px; }
}

@media (max-width: 768px) {
  .pricing-card { width: 90%; min-height: 460px; }
}

@media (max-width: 576px) {
  .pricing-card { width: 100%; min-height: 440px; }
}




/* Fade-in animation */

.fade-in-fast {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeFast 0.3s ease-out forwards;
}

@keyframes fadeFast {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay Classes for Stagger Effect */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.15s; }
.delay-3 { animation-delay: 0.2s; }
.delay-4 { animation-delay: 0.25s; }
.delay-5 { animation-delay: 0.3s; }
.delay-6 { animation-delay: 0.35s; }

/* Optional: Smooth Card Hover */
.card:hover {
  transform: translateY(-5px);
  transition: 0.2s;
}


/* Fade-in keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-in to section */
.fade-in-section {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Fade-in items with staggered delays */
.fade-in-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-item.delay-1 { animation-delay: 0.2s; }
.fade-in-item.delay-2 { animation-delay: 0.4s; }
.fade-in-item.delay-3 { animation-delay: 0.6s; }
.fade-in-item.delay-4 { animation-delay: 0.8s; }
.fade-in-item.delay-5 { animation-delay: 1s; }




/* FAST Fade-in Animation */
.fade-fast {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInFast 0.45s ease-out forwards;
}

@keyframes fadeInFast {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

@media (max-width: 992px) {
    .btn_about {
        padding: 8px 15px;
        font-size: 14px;
        width: 50%;
    }
}
/* Card */
.login-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: none;
}

/* Header */
.login-header {
    background-color: #069494;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 20px;
}

/* Body */
.login-card .card-body {
    padding: 30px;
}

/* Button */
.login-btn {
    background-color: #069494;
    border-color: #069494;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 25px;
    transition: all 0.3s ease;

}

.login-btn:hover {
    background-color: #ff5722;
    box-shadow: 0 4px 10px rgba(6, 148, 148, 0.3);
}

/* Image */
.login-img {
    max-width: 80%;
    height: auto;
}

/* Mobile */
@media (max-width: 767px) {
    .login-img {
        max-width: 60%;
    }

    .login-card .card-body {
        padding: 20px;
    }

    .login-header {
        font-size: 20px;
    }
}
