body{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}



/* Navigation */
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}


/* Top Header */
  /* Top alert/banner */
.top-alert {
    background: linear-gradient(90deg, #155dc8, #239bed);
    /* border-radius: 0 0 10px 10px; */
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    font-size: 0.95rem;
    position: relative;
    z-index: 1050; /* make sure it's above navbar */
    transition: all 0.3s ease-in-out;
}

/* Make it responsive */
@media (max-width: 576px) {
    .top-alert .container {
        flex-direction: column;
        gap: 5px;
    }
    .top-alert a.btn {
        width: 100%;
    }
}

/* Hover effect for button */
.top-alert a.btn:hover {
    background-color: #fff !important;
    color: #155dc8 !important;
    transform: scale(1.05);
    transition: all 0.2s ease-in-out;
}




/* Common Heading */
.headings h1,
.headings h2,
.headings h3,
.headings h4,
.headings h5,
.headings h6 {
    font-family: 'Poppins', sans-serif;
    color: #155dc8; 
    font-weight: 700;
    line-height: 1.3;
    font-size: 3rem; /* Default for H1, adjust for H2/H3 via media queries */
    margin: 0 0 12px 0;
    text-align: center; /* Left-aligned */
    position: relative;
}

.headings h1::after,
.headings h2::after {
    content: '';
    display: block;
    width: 160px;
    height: 5px;
    background: linear-gradient(90deg, #155dc8, #239bed);
    margin: 6px auto 0;   /* Auto margin centers it */
    border-radius: 2px;
}

/* Subheading / Paragraph Styling */
.headings p {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #555; /* Dark gray for readability */
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .headings h1 {
        font-size: 1.6rem;
    }
     .headings h2 {
        font-size: 1.6rem;
    }
    .headings p {
        font-size: 1rem;
    }
}
/* Common Heading */


/* Course Card */
.course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

/* Image */
.course-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Content */
.course-content {
    padding: 18px;
}

.course-title {
    font-size: 22px;
    font-weight: 700;
}

/* Mode Pills */
.modes {
    margin-bottom: 12px;
}

.mode-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 20px;
    margin-right: 6px;
    color: white;
    font-weight: 600;
}

.mode-pill .icon {
    margin-right: 4px;
}

.mode-pill.online {
    background: #155dc8;
}

.mode-pill.offline {
    background: #239bed;
}

/* Features */
.features {
    padding-left: 20px;
    list-style: none !important;
}
.features li {
    margin-bottom: 5px;
}

/* Buttons */
.course-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    /* gap: 6px; */
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

/* ENQUIRY BUTTON (Attention Animation) */
.enquiry-btn {
    background: #ff5722;
    position: relative;
}

.enquiry-btn:hover{
    border: 2px solid #ff5722;
}
/* Shine Animation */
.enquiry-btn .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shineMove 2.5s infinite linear;
    transform: skewX(-20deg);
}

@keyframes shineMove {
    0% { left: -100%; }
    50% { left: 130%; }
    100% { left: 130%; }
}

/* KNOW MORE BUTTON */
.knowmore-btn {
    background: #155dc8;
}

.knowmore-btn:hover{
    border: 2px solid #155dc8;
}

.course-desc{
    font-size: 18px;
}





/* Section Background */
.why-us-section {
  background: linear-gradient(135deg, #f7faff 0%, #e6f0ff 100%);
  font-family: 'Poppins', sans-serif;
  padding: 60px 0;
}

/* Heading */
.why-us-section .headings h2 {
   font-weight: 700;
    line-height: 1.3;
    font-size: 3rem;
  color: #155dc8;
  margin-bottom: 12px;
  text-align: center;
}

.why-us-section .headings p {
  font-size: 18px;
  color: #415a77;
  text-align: center;
}

/* Cards */
.why-box {

  border: 2px groove #155dc8;
background: linear-gradient(90deg, #155dc8, #239bed);
  padding: 28px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.5s ease, transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(35, 155, 237, 0.15), transparent 70%);
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.5s ease;
}

.why-box:hover::before {
  opacity: 1;
  transform: rotate(0deg);
}

/* Hover effect */
.why-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  border: 2px solid #239bed;
}

/* Icons */
.why-box .icon {
  font-size: 42px;
  color: #155dc8;
  margin-bottom: 15px;
  transition: 0.4s ease, transform 0.4s ease;
}

.why-box:hover .icon {
  color: #239bed;
  transform: scale(1.2) rotate(10deg);
}

/* Title */
.why-box h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d1b2a;
  transition: color 0.35s ease;
}

.why-box:hover h5 {
  color: #239bed;
}

/* Text */
.why-box p {
  font-size: 15px;
  color: #415a77;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-box {
    text-align: center;
  }
}




/* Testemonial */
.review-card {
    min-height: 320px;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    border:2px groove #155dc8;
}

.review-card img {
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #155dc8;
}

.owl-carousel .owl-item img {
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
}

.review-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-card h6 {
    color: #393b3d;
    font-weight: 700;
    font-size:28px;

}

.stars i {
    color: #f9c400;
    margin: 0 2px;
    font-size: 18px;
}
/* Testemonial */



/* Connect with us */
 /* Social Connect Section */
.social-connect {
    background: linear-gradient(90deg, #ff7f50, #ff4500); /* eye-catching orange gradient */
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-connect p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.social-icons a.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #fff;
    color: #ff4500;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.social-icons a.social-btn:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    color: #fff;
    background-color: #ff6347; /* slightly darker orange on hover */
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .social-connect h2 {
        font-size: 1.5rem;
    }
    .social-connect p {
        font-size: 1rem;
    }
    .social-icons a.social-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Connect with us */











/* Footer */
.footer {
    background: #00273c; /* Deep professional navy */
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

.footer h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    color: #f8f9fa;
    position: relative;
}

.footer h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #18a0fb;
    position: absolute;
    left: 0;
    bottom: -6px;
    border-radius: 2px;
}

/* Footer Text */
.footer p,
.footer a {
    font-size: 15px;
    color: #dbe2ef;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover Links */
.footer a:hover {
    color: #18a0fb;
    padding-left: 3px;
}

/* Social Icons */
.social-icons a {
    font-size: 20px;
    margin-right: 12px;
    color: #dbe2ef;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #18a0fb;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    display: inline-block;
    padding-bottom: 3px;
}

.footer-links a:hover {
    color: #18a0fb;
}

/* Contact Links */
.contact-link {
    color: #dbe2ef;
}

.contact-link:hover {
    color: #18a0fb;
}

/* Divider Line */
.footer hr {
    opacity: 0.2;
}

/* Bottom Section */
.footer .bottom-text {
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: left;
    }

    .social-icons {
        margin-top: 10px;
    }
}
/* Footer */