/********** Template CSS *****C*****/
:root {
    --primary: #f7af14;
    /* --light: #fdb454; */
    --dark: #000000;
}

.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;
}

img {

    /* -user-drag: none; */
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
    /* Prevent selection */
    -webkit-user-select: none;
    pointer-events: none;
    /* Prevent interaction */
}

body {
    -webkit-touch-callout: none;
    /* Disable iOS long press */
    -webkit-user-select: none;
    /* Disable text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
   
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** 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-toggler {
    border-color: #ff9100 !important; /* നിങ്ങളുടെ തീം കളർ അനുസരിച്ച് മാറ്റാം */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23FEA116' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.navbar {
    background-color: rgb(0, 0, 0); /* Adjust transparency */
    backdrop-filter: blur(); /* Adds blur effect */
    background-size: cover; 
  }
  .navbar.fixed-top {
    position: sticky; /* Ensure it stays at the top */
    top: 0;
 
  }



.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(--primary);
}

@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;
    }
}

.winfraLogo {
    margin:0;
    padding:0;
    width: 100%;



}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #a09d9d;;
    font-weight: 700;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .7s;
}

@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 ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #e8be00;
    border-color: #e8be00;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #e8be00;
}
.Privacy_Policy {
    background: black ;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.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;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgb(94, 94, 94) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgb(28, 28, 28) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.col-lg-3 a {
    color:#e8be00;
    text-decoration: #e8be00; 
}

.col-lg-3 a:hover {
    color: rgb(7, 151, 2); 
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:  #e8be00;
    font-weight: normal;
    border: 1px solid#e8be00;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #090909;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #e8be00;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #e8be00;
    
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(105, 105, 105, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.goosle {

    /* Default size (applies to all screens unless overridden) */
    .box {
        width: 100px;
        height: 100px;
        background-color: #e8be00;
        margin: auto;
    }


    /* For small screens (max-width: 768px) */
    @media (max-width: 768px) {
        .box {
            width: 80px;
            /* Smaller width for small screens */
            height: 80px;
            /* Smaller height */
        }
    }

    /* For large screens (min-width: 1200px) */
    @media (min-width: 1200px) {
        .box {
            
            width: 200px;
            /* Larger width for large screens */
            height: 200px;
            /* Larger height */
        }
    }
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 189.83%; /* 560 / 295 * 100 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* ============================= 
    PRICING-1 CSS
================================ */
.pricing-style-1 {
  padding: 100px 0 60px;
  background: #F3F3F3;
}

.pricing-style-1 .single-pricing {
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0px 5px 25px rgba(151, 151, 151, 0.548);
  margin-bottom: 40px;
  padding: 45px 40px;
  border: 1px solid transparent;
  transition: all 0.3s ease-out 0s;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-style-1 .single-pricing {
    padding: 45px 25px;
  }
}

.pricing-style-1 .single-pricing .popular-badge {
  position: absolute;
  top: 45px;
  right: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-style-1 .single-pricing .popular-badge {
    right: 20px;
  }
}

.pricing-style-1 .single-pricing.active, .pricing-style-1 .single-pricing:hover {
  border-color: #ed942f;
}

.pricing-style-1 .single-pricing .image {
  width: 120px;
  height: 120px;
  background: #ffffff00;
  border-radius: 50%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-style-1 .single-pricing .image img {
  max-width: 100%;
}

.pricing-style-1 .single-pricing h6 {
  color: #edb12f;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-style-1 .single-pricing h6 {
    font-size: 16px;
  }
}

.pricing-style-1 .single-pricing h4 {
  margin-bottom: 20px;
  font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-style-1 .single-pricing h4 {
    font-size: 24px;
  }
}

.pricing-style-1 .single-pricing h3 {
  margin-bottom: 18px;
  color:#05d395;
}

.pricing-style-1 .single-pricing ul {
  margin-bottom: 30px;
}

.pricing-style-1 .single-pricing ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 34px;
  margin-bottom: 12px;
}

.pricing-style-1 .single-pricing ul li i {
  color: #edb12f;
  margin-right: 10px;
}

/* offline pricing  */
body { background-color: #f8f9fa; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        
        /* Table Border Radius - ടേബിളിന്റെ അരികുകൾ വട്ടത്തിലാക്കാൻ */
        .rounded-table-container {
            border-radius: 15px;
            overflow: hidden; /* അരികുകൾ മുറിഞ്ഞു പോകാതിരിക്കാൻ */
            border: 1px solid #dee2e6;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .table { margin-bottom: 0; }
        
        .table thead th {
            background-color: #fff;
            border-bottom: 2px solid #f1f1f1;
            padding: 25px 20px;
            vertical-align: middle;
        }

        .feature-name { text-align: left; font-weight: 500; color: #333; width: 45%; padding-left: 20px !important; }
        
        /* Green Tick Style */
        .tick-icon { 
            color: #28a745; 
            font-size: 1.3rem; 
            background: #e8f5e9;
            border-radius: 50%;
            padding: 2px 6px;
        }

        .no-icon { color: #ccc; }

        .btn-enrol { 
            border-radius: 30px; /* ബട്ടൺ ബോർഡർ റേഡിയസ് */
            padding: 8px 25px; 
            font-weight: 600;
            transition: 0.3s;
        }

        .section-title { 
            background-color: #fcfcfc; 
            font-weight: 700; 
            text-align: left; 
            color: #555;
            padding: 12px 20px !important;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .stipend-note {
            background-color: #fffbeb;
            color: #854d0e;
            font-weight: 600;
            border-top: 1px solid #fef3c7;
        }
         /* Button Styling */
    .btn-offline-training {
        background-color: #d37a05; /* WINFra theme orange */
        color: white;
        padding: 15px 40px;
        font-size: 1.25rem;
        font-weight: bold;
        text-decoration: none;
        border-radius: 50px; /* Rounded corners */
        border: none;
        display: inline-block;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        animation: blinkAnimation 1.5s infinite; /* Blinking effect */
    }

   .btn-offline-training:hover {
        background-color: #2ab504;
        color: white;
        transform: scale(1.05); /* Hover */
    }

    /* Blinking Animation Logic */
    @keyframes blinkAnimation {
        0% {
            opacity: 1;
            box-shadow: 0 0 5px rgba(30, 254, 0, 0.6);
        }
        50% {
            opacity: 0.7;
            box-shadow: 0 0 25px rgba(19, 211, 5, 0.9);
        }
        100% {
            opacity: 1;
            box-shadow: 0 0 5px rgba(26, 255, 0, 0.6);
        }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .btn-offline-training {
            padding: 12px 30px;
            font-size: 1.1rem;
        }
    }
    
    