/********** Template CSS **********/
:root {
    /*--primary: #20B2AA; */
    --primary:#dc3545;
    /* Light Sea Green */
    --secondary: #6A5ACD;     /* top header logo Slate Blue */
    /*--accent: #FF4B5C;*/
    --accent:#dc3545;
        /* Bright Red */
    /*--light: #F0FBFC;*/
    --light:#ffe6e6;
      /* Card background */
    --dark: #181d38;  /* Footer Background  */
}

.fw-medium { font-weight: 600 !important; }
.fw-semi-bold { font-weight: 700 !important; }

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Buttons ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}
.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0;
}
.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--accent);
}
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}
.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}
.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}
.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header Carousel ***/
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}
.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    background: var(--primary);
    height: 2px;
    z-index: -1;
}
.section-title::before {
    width: calc(100% + 80px);
    top: 4px;
    left: -40px;
}
.section-title::after {
    width: calc(100% + 120px);
    bottom: 5px;
    left: -60px;
}
.section-title.text-start::before { width: calc(100% + 40px); left: 0; }
.section-title.text-start::after { width: calc(100% + 60px); left: 0; }

/*** Services ***/
.service-item {
    background: var(--light);
    transition: .5s;
}
.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}
.service-item * { transition: .5s; }
.service-item:hover * { color: var(--light) !important; }

/*** Team & Courses Hover ***/
.category img,
.course-item img,
.team-item img { transition: .5s; }
.category a:hover img,
.course-item:hover img,
.team-item:hover img { transform: scale(1.1); }

/*** Testimonials ***/
.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--secondary) !important;
}
.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}
.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/*** Footer ***/
.footer .btn.btn-social:hover { color: var(--accent); }
.footer .btn.btn-link:hover { color: var(--accent); letter-spacing: 1px; }
.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}



.round-btn {
  background-color: #dc3545; /* Bootstrap danger red */
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.round-btn:hover {
  background-color: #b02a37; /* Darker red on hover */
  transform: scale(1.05);
}


