﻿.register-btn {
    display: inline-block;
    background: linear-gradient(69deg, #10abff, #1beabd);
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 171, 255, 0.3);
    border: 2px solid transparent;
}

    .register-btn:hover {
        background: transparent;
        color: #10abff;
        border: 2px solid #10abff;
        box-shadow: 0 4px 15px rgba(16, 171, 255, 0.4);
    }

#special-features .row {
    row-gap: 25px; 
}

.special-features-section {
    background: #f8fcff;
}

.section-title h2 {
    font-weight: 700;
    font-size: 2.2rem;
    color: #222;
}

    .section-title h2 span {
        background: linear-gradient(69deg, #10abff, #1beabd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.section-subtext {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 16px;
    color: #666;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(16, 171, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(16, 171, 255, 0.2);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(69deg, #10abff, #1beabd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-card h4 {
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.course-slide {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.course-item-pic-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.course-item-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px; 
    padding: 10px 20px 10px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9feff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

    .course-item-text p {
        flex-grow: 1;
    }

.section-title h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
}



.course-item-pic-text {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

    .course-item-pic-text:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(16, 171, 255, 0.2);
    }


.course-pic img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 5px solid transparent;
    border-image: linear-gradient(69deg, #10abff, #1beabd);
    border-image-slice: 1;
}


.course-item-text h3 a {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(69deg, #10abff, #1beabd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

    .course-item-text h3 a:hover {
        letter-spacing: 0.5px;
    }

.course-item-text p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-top: 10px;
}



@media (max-width: 768px) {
    .course-item-pic-text {
        margin-bottom: 25px;
    }

    .course-item-text h3 a {
        font-size: 1.1rem;
    }
}

.course-pic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(69deg, rgba(16,171,255,0.15), rgba(27,234,189,0.15));
    z-index: 1;
}

.course-pic img {
    position: relative;
    z-index: 0;
}

.gradient-text {
    background: linear-gradient(69deg, #10abff, #1beabd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    font-weight: bold; 
}

.slider {
   
    padding: 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.slider-container {
     padding-top:130px;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

    .slider-item img {
        width: 100%;
        height: 75vh;
        object-fit: cover;
    }


.caption-container {
    position: absolute;
    top: 30%;
    left: 6%;
    color: white;
    padding: 10px;
    text-align: left;
    box-sizing: border-box;
    z-index: 2;
    width: 40%;
}

    .caption-container h2 {
        font-size: 2.3rem;
        color: #fff;
        font-weight: bold;
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .caption-container h5 {
        font-size: 1.5rem;
        color: #fff;
        margin-top: 10px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .caption-container a.button {
        display: inline-block;
        margin-top: 15px;
        background-color: #890C25;
        color: black;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 1rem;
        color: #fff;
    }

        .caption-container a.button:hover {
            background-color: rgba(255, 255, 255, 1);
            color: #0054b5;
        }

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

    button.prev:hover, button.next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

@media (max-width: 768px) {
    .slider-container {
    padding-top: 70px;
}
    .slider-item img {
        height: 30vh;
    }

    .caption-container {
        width: 100%;
    }

        .caption-container h2 {
            display: none;
            font-size: 1.5rem;
        }

        .caption-container h5 {
            display: none;
            font-size: 1rem;
        }

        .caption-container a.button {
            display: none;
            font-size: 0.9rem;
            padding: 8px 15px;
        }

    .gradient-overlay {
        background: none;
    }
}
.course-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }

  .course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
  }

  .badge-tag {
    font-size: 1.5rem;
    padding: 6px 12px;
    border-radius: 10px;
  }

  .btn-primary {
    background: linear-gradient(90deg, #0056d2, #007bff);
    border: none;
  }

  .btn-primary:hover {
    background: linear-gradient(90deg, #0045a8, #006be6);
  }

  h5 {
    font-size: 1.15rem;
  }

  @media (max-width: 768px) {
    h5 { font-size: 1rem; }
  }
   .highlight-line {
    position: relative;
    padding-left: 1.8em; 
    line-height: 1.6;
    display: inline-block;
    font-size: 0.95rem;
  }

  .highlight-line::before {
    content: "👉";
    position: absolute;
    left: 0;
    top: 0;
  }

  .highlight-line.text-info {
    color: #0dcaf0 !important; 
    font-weight: 600;
  }

  
  .highlight-line:hover {
    color: #0aa2c0;
  }
  .psat-section {
  background: linear-gradient(135deg, #f8faff, #eaf0ff);
}

/* Gradient Card Styles */
.gradient-blue {
  background: linear-gradient(135deg, #007bff, #0056b3);
}
.gradient-purple {
  background: linear-gradient(135deg, #6f42c1, #4b2d89);
}

/* Card General Styling */
.psat-card {
  transition: all 0.4s ease;
  border: none;
}
.psat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.psat-card .icon i {
  background: rgba(255, 255, 255, 0.15);
  padding: 18px;
  border-radius: 50%;
  transition: 0.3s ease;
}
.psat-card:hover .icon i {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

/* Text & Buttons */
.psat-card h4 {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}
.psat-card p {
  line-height: 1.6;
  font-size: 0.95rem;
}
.psat-card .btn-light {
  color: #0056b3;
  background-color: #fff;
  transition: 0.3s ease;
}
.psat-card .btn-light:hover {
  background-color: #f1f1f1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .psat-card h4 {
    font-size: 1.25rem;
  }
  .psat-card .icon i {
    font-size: 2.2rem;
  }
}
/* Footer Main Section */
#footer-area {
  background-color: #0d1b1e; /* Deep dark shade */
  color: #ddd;
  padding: 60px 0 20px;
}

/* Footer Titles */
.footer-widget .widget-title {
  color: #00c48c; /* Highlight green accent */
  margin-bottom: 20px;
  position: relative;
}

.footer-widget .widget-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #00c48c;
  border-radius: 2px;
}

/* Footer Text and Links */
.footer-widget p,
.footer-widget ul li a {
  color: #bbb;
  transition: all 0.3s ease;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a:hover {
  color: #00c48c;
  padding-left: 5px;
}

/* Icon Colors */



/* Address Icons */
.address-icon i {
  color: #00c48c;
}

.address-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.address-details li {
  color: #ccc;
}

/* Copy-right Area */
.copy-right-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 15px;
}

.copy-right-text p {
  margin: 0;
  color: #999;
}

.copy-right-menu-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.copy-right-menu-item ul li a {
  color: #999;
  transition: 0.3s;
}

.copy-right-menu-item ul li a:hover {
  color: #00c48c;
}

/* Logo Size Adjustment */
.footer-logo img {
  max-width: 180px;
  filter: brightness(1.2);
}

/* Responsive Design */
@media (max-width: 767px) {
  .copy-right-menu-item ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .copy-right-text {
    text-align: center;
    margin-bottom: 10px;
  }
}
  .floating-buttons {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            z-index: 10000;
        }

        .float-btn {
            width: 40px;
            height: 40px;
            border-radius: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        }

            /* Individual Colors */
            .float-btn.whatsapp {
                background-color: #25d366;
            }

            .float-btn.appointment {
                background-color: #0054b5;
            }

            .float-btn.call {
                background-color: #ff0000;
            }

            .float-btn.map {
                background-color: #ff9800;
            }
            /* Hover Effect */
            .float-btn:hover {
                transform: scale(1.1);
            }
