:root {
    /* --color-primary: #1ab69d; */
    /*--color-primary: #3d6952;*/
    --color-primary: #E4572E;
    --color-primary2: #1b3126;
    /*--color-secondaryNew: #DAF6D3;*/
    --color-secondaryNew: #fde5a4;
    --color-secondary: #ee4a62;
    --color-dark: #111212;
    --carousel-height: 450px; /* Default height - can be changed */
}

/* ********************************* */
/* 1. General CSS */
/* ********************************* */

/* Custom scrollbar for WebKit browsers */
::-webkit-scrollbar {
width: 10px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
background: var(--color-secondaryNew); /* Track color */
border-radius: 10px; /* Rounded corners */
}

::-webkit-scrollbar-thumb {
background: var(--color-primary); /* Thumb color */
border-radius: 10px; /* Rounded corners */
}

::-webkit-scrollbar-thumb:hover {
background: var(--color-primary2); /* Thumb hover color */
}

/* Custom scrollbar for Firefox */
.scrollable-content {
scrollbar-width: thin; /* Thin scrollbar */
scrollbar-color: var(--color-primary); /* Thumb and track colors */
}

.shape-line i{
color:var(--color-secondaryNew);
}

.mobile-seperator1, .mobile-seperator2, .mobile-seperator3{
    display: none;
}

.section-title .title{
    color: var(--color-primary);    
}

.swiper-navigation .swiper-btn-nxt:hover,
.swiper-navigation .swiper-btn-prv:hover {
  color: var(--color-white);
  background: var(--color-primary);
}

.swiper-navigation .swiper-btn-nxt i:hover,
.swiper-navigation .swiper-btn-prv i:hover {
  color: var(--color-white);
}

a.edu-btn,
button.edu-btn {
  color: var(--edu-btn-color);
  background: var(--color-primary);
}

.edu-btn:hover {
    background-color: #c93104;
}

/* ********************************* */


/* ********************************* */
/* 2. Top Bar CSS */
/* ********************************* */
.header-top-bar{
    background-color: var(--color-secondaryNew) ;
}

.header-top-left .header-notify a, i{
    color:#002147;
    text-decoration: none;
}
.header-top-left .header-notify a:hover{
    color:var(--color-secondary);
    text-decoration: none;
}

.header-top .header-info li:after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}

.header-top-right .header-info li a{
    color:#002147;
    text-decoration: none;
}

.header-top .header-info li.social-icon a i {
    color:var(--color-primary);
    text-decoration: none;
}

@media screen and (max-width: 768px) {  
    .header-top-bar{
        display:flex;
    }
    .header-top{
        display:flex;
    }
    .header-top-bar .header-top-left {
        /* max-width: 20vw; */
    }
    .header-top-bar .header-top-right {
        /* max-width: 50vw; */
    }
    .header-style-1 .header-top .header-top-left .header-notify {
        text-align: center;
        padding: 5px 0 5px;
    }
    .header-top .header-info {
        -webkit-box-pack: end;
        -webkit-justify-content: end;
        -ms-flex-pack: end;
        /* justify-content: center; */
        /* margin: 0 -15px; */
    }
    .header-top-left .header-notify a{
        font-size: 12px;
    }
    .header-top-right .header-info a{
        font-size: 12px;

    }
}
/* ********************************* */


/* ********************************* */
/* 3. Header Logo */
/* ********************************* */
.logo-light, .logo-dark{
    width:270px;
}
/* ********************************* */


/* ********************************* */
/* 4. Main Menu New CSS */
/* ********************************* */
.edu-header .header-mainmenu{
    box-shadow: 0 2px 4px rgba(6,17,118,.08),0 4px 12px rgba(6,17,118,.08);
    /* border-top:1px solid #ddd; */
}

.mainmenu-nav .mainmenu li.has-droupdown .submenu {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  
  .submenu li {
    border-bottom: 1px solid #e3e3e3;
    padding: 3px 0px;
  }
  
  .submenu li:last-child {
    border-bottom: none;
    /* padding:3px 0px; */
  }
/* ********************************* */
  

/* ********************************* */
/* 5. Main Carousel CSS */
/* ********************************* */
.carousel-wrapper{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.carousel {
    position: relative;
    width: 100%;
    height: var(--carousel-height);
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: var(--carousel-height);
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: relative;
    min-width: 100%;
    height: var(--carousel-height);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 70vw;
}

.carousel-content h1 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color:white;
}

.highlight {
    /*color: #ffb19b;*/
    color: var(--color-secondaryNew);
    font-size: 4.5rem;
}

.carousel-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #f2f2f2;
    max-width: 55vw;
}

@media screen and (max-width: 768px) {  
.carousel-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    max-width: 90vw;
}

.carousel-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color:white;
}
    
.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #f2f2f2;
    max-width: 80vw;
}
    
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel:hover .nav-btn {
    opacity: 1;
}

.nav-btn {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn i {
    font-size: 1.5rem;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    /*background: rgba(187, 249, 171, 0.8);*/
    background: var(--color-secondaryNew);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.edu-btn i{
    color:white;
}
/* ********************************* */


/* ********************************* */
/* 6. News Ticker CSS */
/* ********************************* */
.news-ticker-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.news-ticker {
    background: #eaf0f2;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.news-label {
    min-width: 150px;
    height: 100%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.news-label span {
    color: white;
    /* font-family: Arial, sans-serif; */
    font-family: "Spartan", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.news-label:after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    height: 100%;
    width: 30px;
    background: var(--color-primary);
    transform: skew(25deg);
}

.news-content {
    width: calc(100% - 120px);
    height: 100%;
    padding-left: 30px;
}

.ticker-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ticker {
    display: inline-flex;
    height: 100%;
    align-items: center;
    white-space: nowrap;
    padding-right: 50px;
    animation: ticker 20s linear infinite;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    color: #212121;
    font-family: "Spartan", sans-serif;
    font-size: 15px;
    padding: 0 20px;
    cursor: pointer;
    display: inline-block;
}
.ticker-item:hover {    
    color: #1fb796;
}

.ticker-item:not(:last-child)::after {
    content: '|';
    display: inline-block;
    color: #999;
    position: relative;
    top: -1px;
    margin-left: 40px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Ticker controls */
.ticker-controls {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    /* background: rgba(0, 0, 0, 0.1); */
    /* border-radius: 5px; */
    padding: 5px;
}

.pause-button,
.play-button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 16px;
    /* border-radius: 4px; */
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.control-icon {
    display: inline-block;
    opacity: 0.5;
    transition: opacity 0.7s;
    /* filter: grayscale(100%); */
    /*color:#1ab69d;*/
    color:var(--color-primary);
}

.control-icon:hover {
    opacity: 0.8;
}

.pause-button:hover,
.play-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .news-label {
        min-width: 130px;
    }

    .news-label span {
        color: white;
        font-family: Arial, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 10px;
    }
    
    .news-content {
        width: calc(100% - 100px);
    }
}
/* ********************************* */


/* ********************************* */
/* 7. About Us CSS */
/* ********************************* */
.edu-about-area{
    padding-top:100px;
}

.gap-bottom-equal{
    padding-bottom:50px;   
}

.messageSubTitle{
    font-weight:600;
}

.testimonial-grid1 {
    /* box-shadow: var(--shadow-darker); */
    /* box-shadow: none; */
    box-shadow: 0 0 10px rgba(0,0,0,0.02);
    /* background-color: #eaf0f2; */
    background-color: var(--color-secondaryNew);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #ddd;
}

.testimonial-grid1:after {
content: url(../images/testimonial/shape-1.png);
position: absolute;
top: -5px;
right: -5px;
z-index: -1;
}
.testimonial-grid1 .thumbnail {
display: inline-block;
position: relative;
margin-bottom: 15px;
}
.testimonial-grid1 .thumbnail img {
border-radius: 50%;
}

.testimonial-grid1 .content p {
margin-bottom: 20px;
padding-top:20px;
font-size: 16px;
}

.testimonial-grid1 .content h4 {
    margin:0px;
}

.testimonial-grid1 hr{
    border-top:2px solid #ddd;
}

.testimonial-grid1 .thumbnail img{
    border:10px solid var(--color-primary);
    border-radius: 50%;
}
.about-content {
    padding-left: 0px;
}
.swiper-wrapper .swiper-slide 
{
    padding-right: 20px;
}

/* ********************************* */


/* ********************************* */
/* 8. Vision & Mission CSS */
/* ********************************* */
.about-style-2{
    /* background-color: #eaf0f2; */
    /* background-color: #f0f4f5; */
    background-color: var(--color-secondaryNew);
}

.vision-content{
    margin-top:-100px;
}

.shape-line2 i{
    color:var(--color-primary);
}

.testimonial-grid2 {
    /* box-shadow: var(--shadow-darker); */
    /* box-shadow: none; */
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    /* box-shadow: 0 0 10px #cccccc; */
    background-color: white;
    border-radius: 10px;
    padding: 50px 30px 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border:1px solid #ddd;
    text-align: center;
}

.testimonial-grid2 .thumbnail{
    background-color: var(--color-secondaryNew);
    border-radius: 50%;
    padding: 32px 0px;
    width: 140px;
    /* border: 1px solid var(--color-primary); */
    margin-left: 25%;
    box-shadow: 1px 1px 5px #ddd;
}

@media screen and (max-width:992px) {
    .testimonial-grid2 .thumbnail{
        background-color: var(--color-secondaryNew);
        border-radius: 50%;
        padding: 32px 0px;
        width: 140px;
        /* border: 1px solid var(--color-primary); */
        margin-left: 25%;
        box-shadow: 1px 1px 5px #ddd;
    }
}

.testimonial-grid2 .thumbnail img{
    /* font-size: 8rem;
    font-weight: 500;
    color:var(--color-primary); */
    height: 70px;
    width: 70px;

}
.testimonial-grid2 .content{
    text-align: center;
    width: 100%;
}
/* ********************************* */


/* ********************************* */
/* 9. Celebrating Excellence CSS */
/* ********************************* */
.gap-bottom-equal-excellence{
    padding-bottom:70px;
    padding-top:100px;   
    /* background-color: #fbfbfc; */
    /* background-color: #fff; */
}

.excellence{
    background: linear-gradient(var(--color-secondaryNew),rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(/assets/images/bg/laurel.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;

    border: 2px solid var(--color-secondaryNew);
    padding: 0px 20px;
    border-radius: 10px;
    text-align: center;
}

.excellence .testimonial-heading-area{
    padding-right: 0px;
}

.about-style-3 {
    padding-top:40px;
    padding-bottom: 0px;
}

.countertainer{
    padding:20px 0px; 
    text-align: left;
} 

.edu-counterup.counterup-style-3 {
    padding: 10px;
    border-radius: 10px;
    position: relative;
    /* background-color: var(--color-primary); */
    background-color: #508a6c;
    border: 1px solid #ddd;
  }
  .edu-counterup.counterup-style-3:hover {
    transform: scale(105%);
    cursor: pointer;
  }
  .edu-counterup.counterup-style-3:after {
    background-color: var(--color-secondaryNew);
    height: 0px;
  }
  .edu-counterup.counterup-style-3 .counter-item {
    font-size: 3rem;
    color: white;
  }
  .edu-counterup.counterup-style-3 h2 {
    font-size: 3rem;
    color: white;
  }
  .edu-counterup.counterup-style-3 h6 {
    font-size: 1.2rem;
    color: white;
  }
  .edu-counterup.counterup-style-3 i {
    padding-top: 10px;
    font-size: 6rem; 
    /* color:coral; */
    color: #eff1a8;
  }
  

.testimonial-grid{
    text-align: center;
    /* border: 2px solid #e4e4e4; */
    border: 1px solid #ddd;
    padding: 40px;
    /* background: linear-gradient(145deg, #DAF6D3, #f2f2f2); Gradient colors */
    background-color: var(--color-secondaryNew);
}

.testimonial-grid .thumbnail{
    margin-bottom:20px;
    padding: 0px;
    
}

.testimonial-grid .thumbnail img{
    height: 180px;
    border-radius: 20px;
    /* border:20px solid rgba(160, 254, 136, 0.5); */
    border:20px solid var(--color-primary);
    margin:0px;
    padding: 0px;
    
}

.testimonial-grid .thumbnail .qoute-icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 13px;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: 50%;
    border: 4px solid var(--color-white);
    display: block;
    text-align: center;
    position: absolute;
    top: -20px;
    right: -40px;
  }

.testimonial-grid .content p {
margin-bottom: 10px;
padding-top:10px;
font-size: 16px;
}

.testimonial-grid .content h3 {
    margin:0px;
}
/* ********************************* */


/* ********************************* */
/* 10. Latest Notifications/ Events */
/* ********************************* */
about-style-4{
    background-color:none;
}

.edu-blog-widget {
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.noticeDiv{
    margin-top:-30px;
}

.edu-blog-widget.widget-latest-post .latest-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .edu-blog-widget.widget-latest-post .latest-post:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .edu-blog-widget.widget-latest-post .latest-post .thumbnail {
    margin-right: 20px;
  }

  .testimonial-grid4 {
    /* box-shadow: var(--shadow-darker); */
    /* box-shadow: none; */
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    /* box-shadow: 0 0 10px #cccccc; */
    background-color: white;
    border-radius: 10px;
    /* padding: 60px 30px 50px; */
    position: relative;
    z-index: 1;
    overflow: hidden;
    border:1px solid #ddd;
    text-align: center;
    border: 1px solid var(--color-primary);
}

.testimonial-grid4 .thumbnail img{
    /* font-size: 8rem;
    font-weight: 500;
    color:var(--color-primary); */
    object-fit: cover;
    /* height: 240px; */

}

.testimonial-grid4 .event-wrapper{
    height: 100%;
    position: relative;
    top:-15px;
    background-color: var(--color-secondaryNew) ;
    width: 300px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    left:50px;
}

.testimonial-grid4 .content{
    text-align: center;
    width: 100%;
}

.testimonial-grid4 .content .category-wrap{
    text-align: left;
    padding:10px 20px;
    color: var(--color-primary);
}

.testimonial-grid4 .content .category-wrap .blog-category{
    color: var(--color-primary);
}

.testimonial-grid4 .title{
    text-align: left;
    padding:0px 20px;
}
.testimonial-grid4 .blog-meta{
    text-align: left;
    padding:0px 20px;
    /* padding-bottom: 20px; */
}

.testimonial-grid4 .read-more-btn{
    position: relative;
    top:-10px;
}

.btn-event{
    text-align: right;
    margin-right: 20px;
}

@media screen and (max-width: 768px) {
    .testimonial-grid4 .title a {
        font-size: 16px;
        margin-right:50px;
    }
}

/* ********************************* */


/* ********************************* */
/* 11. Departments CSS */
/* ********************************* */
.about-style-6{
    /* background-color: #eaf0f2; */
    background-color: white;
    padding-bottom: 100px;
}

.features-area-11 {
    /* background-color: var(--color-lighten01); */
    background-color: white;
  }
  .features-area-11 .features-grid-wrap {
    gap: 30px;
  }
  .features-area-11 .features-grid-wrap .features-box {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--color-secondaryNew);
    /* background-color: var(--color-primary); */
    border: 1px solid #ddd;
    position: relative;
  }

  .features-area-11 .features-grid-wrap .features-box:hover{
    /* background-color: var(--color-secondaryNew); */
    /* background-color: var(--color-primary); */
    /* border: 5px solid #ddd; */
    cursor: pointer;
    transform: scale(105%);
  }

  .features-area-11 .features-grid-wrap .features-box .content .title {
    /* margin-bottom: 8px; */
    color: var(--color-primary);
    font-weight: 500;
  }

  .features-area-11 .features-grid-wrap .features-box .content::after {
    content: ""; /* Required to create a pseudo-element */
    position: absolute;
    left: 0;
    width: 90%; /* Line width (100% spans the text) */
    height: 1px; /* Line height (thickness of the dots) */
    background-image: 
        linear-gradient(to right, var(--color-secondaryNew), var(--color-primary));
    background-blend-mode: multiply; /* Blend the gradient and dots */
    background-size: 100% 2px, auto; /* Adjusts the sizes of gradients and dots */
    border-radius: 10px;

  }

  .features-area-11 .features-grid-wrap .features-box .content::before {
    content: ""; /* Required to create a pseudo-element */
    position: absolute;
    left: 0;
    width: 90%; /* Line width (100% spans the text) */
    height: 1px; /* Line height (thickness of the dots) */
    background-image: 
        linear-gradient(to right, var(--color-secondaryNew), var(--color-primary));
    background-blend-mode: multiply; /* Blend the gradient and dots */
    background-size: 100% 2px, auto; /* Adjusts the sizes of gradients and dots */
    border-radius: 10px;

  }


  /* .features-area-11 .features-grid-wrap .features-box .icon {
    margin: 0 auto 10px;
    font-size:70px;
    color: var(--color-secondaryNew);
  }

  .features-area-11 .features-grid-wrap .features-box .icon i {
    color: var(--color-primary);
  } */

  .dept-btn{
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
    text-align: center;
    background: -webkit-linear-gradient(194deg, var(--color-primary) 0%, var(--color-primary) 40%);
    background: linear-gradient(256deg, var(--color-primary) 0%, var(--color-primary) 40%);
    /* -webkit-transition: background 0.5s ease;
    transition: background 0.5s ease; */
    margin-top:15px;
  }

  .dept-btn:hover{
  background: var(--color-primary2);
  color: white;
  /* -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease; */
  }

  .dept-btn i{
    color: white;
  }


/* ********************************* */


/* ********************************* */
  /* 12. Background Shape Group CSS */
/* ********************************* */
  .about-style-1 .shape-group li{
    position: absolute;
    top: 107px;
    right: -210px;
    z-index: -1;
  }

  .about-style-2 .shape-group li {
    position: absolute;
    top: -100px;
    left: -210px;
    z-index: -1;
  }

  .about-style-3 .shape-group li {
    position: absolute;
    top: -100px;
    right: -210px;
    z-index: -1;
  }

  .about-style-1 .shape-group li.shape-1.circle span,
  .about-style-2 .shape-group li.shape-1.circle span {
    display: block;
    height: 101px;
    width: 101px;
    border: 15px solid var(--color-tertiary);
    border-radius: 50%;
  }
  @media only screen and (max-width: 1650px) {
    .about-style-1 .shape-group li,
    .about-style-2 .shape-group li {
      right: -110px;
    }
  }
  @media only screen and (min-width: 1200px) and (max-width: 1450px) {
    .about-style-1 .shape-group li,
    .about-style-2 .shape-group li {
      right: -50px;
    }
  }
/* ********************************* */


/* ********************************* */
/* 13. Footer CSS */
/* ********************************* */
.edu-footer.footer-dark li,
.edu-footer.footer-dark p,
.edu-footer.footer-dark a
{
    color: #4b4b4b;
}

.footer-top .edu-footer-widget .information-list a[href^="tel:"]:hover,
.footer-top .edu-footer-widget .information-list a[href^="mailto:"]:hover {
    color: #c93104; /* hover color */
    /*font-weight:600;*/
}

.footer-top{
    background-color: var(--color-secondaryNew);
}
.footer-dark .copyright-area {
    background-color: #212121;
    /*background-color: var(--color-primary);*/
    border-top: 1px solid black;
}

.footer-dark .copyright-area p {
    color: #f2f2f2;
}

.information-list i{
    color:var(--color-secondaryNew);
    margin-right: 10px;
}

.edu-footer-widget .inner .social-share li a i{
    color:var(--color-primary);
}

.edu-footer-widget .inner .social-share li a i:hover{
    color: #c93104;
    /* color: var(--color-secondaryNew); */
}

.edu-footer .edu-footer-widget .footer-link li a:hover {
    /* color: #1b3126; */
    color: var(--color-primary);
    /*font-weight: 600;*/
}

.edu-footer .information-list li a:hover{
    /* color: #1b3126; */
    color: var(--color-secondaryNew);
}

.footer-icon{
    text-align: center;
}

.edu-footer.footer-dark .widget-title {
    position: relative;
    color: #4b4b4b;
}

.widget-title::after{
    content: ""; /* Required to create a pseudo-element */
    position: absolute;
    bottom: -10px; /* Adjust distance from text */
    left: 0;
    width: 40%; /* Line width (100% spans the text) */
    height: 5px; /* Line height (thickness of the dots) */
    background-image: 
        linear-gradient(to right, var(--color-secondaryNew), var(--color-primary));
    background-blend-mode: multiply; /* Blend the gradient and dots */
    background-size: 100% 2px, auto; /* Adjusts the sizes of gradients and dots */
    border-radius: 10px;
}

.supportcard {
    /* background-color: #212121; */
    /* background-color: #264334; */
    background-color: #fbd97d;
    /*background-color: var(--color-primary);*/
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: start;
    color: var(--color-primary);
    font-size: 14px;
    flex-wrap: wrap;
}

.supportcard li {
    display: inline-block;
    color: var(--color-primary);
}

.supportcard i {
    color: var(--color-primary);
}
/* ********************************* */


/* ********************************* */
/* 14. Psuedo Element CSS */
/* ********************************* */
.about-content4 .title {
    position: relative;
    padding-left: 0px;
    margin-top: 5px;
    text-align: center;
    font-size: 20px;
}


.about-content4 .title::after {
    content: ""; /* Required to create a pseudo-element */
    position: absolute;
    bottom: -5px; /* Adjust distance from text */
    left: 0;
    width: 80%; /* Line width (100% spans the text) */
    height: 5px; /* Line height (thickness of the dots) */
    background-image: 
        linear-gradient(to right, var(--color-primary), var(--color-secondaryNew));
    background-blend-mode: multiply; /* Blend the gradient and dots */
    background-size: 100% 2px, auto; /* Adjusts the sizes of gradients and dots */
    border-radius: 10px;
    margin-left: 30px;
}
/* ********************************* */

/* Back To Top */
/* .rn-progress-parent svg.rn-back-circle path {
    stroke: var(--color-secondaryNew);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  .rn-progress-parent::after {
    position: absolute;
    font-family: "remixicon" !important;
    content: "\ea78";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--color-secondaryNew);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  } */

/* ********************************* */
/* 15. Mobile Version CSS */
/* ********************************* */
@media screen and (max-width: 992px) {  
    .edu-about-area {
        padding-top: 30px;
    }
    .section-title.section-left {
        text-align: left;
        margin-bottom: 10px;
    }
    .swiper-wrapper .swiper-slide{
        margin-top:30px;
    }
    .swiper-wrapper .excellent-slide{
        padding-right:0px;
    }
    .vision-content{
        margin-top: 50px;
        margin-bottom: 0px;
    }
    .gap-bottom-equal-excellence{
        padding-top: 30px;
        padding-bottom: 120px;
    }
    .about-content4 .title {
        margin-top: 50px;

    }

    .testimonial-grid2 .thumbnail{
        background-color: var(--color-secondaryNew);
        border-radius: 50%;
        padding: 32px 0px;
        width: 140px;
        /* border: 1px solid var(--color-primary); */
        margin-left: 20%;
        box-shadow: 1px 1px 5px #ddd;
    }

    .about-style-6 {
        /* background-color: #eaf0f2; */
        background-color: white;
        padding-bottom: 50px;
        padding-top: 0px;
    }
    .dept-title{
        margin-top:30px;
    }

    .mobile-seperator1{
        /* border:1px dashed #f2f2f2; */
        display: block;
        border:1px solid var(--color-secondaryNew);
        margin-top:20px;
        width: 100vw;
    }
    .mobile-seperator2{
        /* border:1px dashed #f2f2f2; */
        display: block;
        border:1px solid white;
        margin-top:20px;
        margin-bottom: -20px;
        width: 100vw;
    }
    .mobile-seperator3{
        /* border:1px dashed #f2f2f2; */
        display: block;
        border:1px solid white;
        margin-top:40px;
        margin-bottom: -20px;
        width: 100vw;
    }
    .noticeDiv{
        margin-top: 20px;
    }
    .testimonial-coverflow {
        margin: -100px 0;
    }
}

/*************************************************************************/
/* 16. Breadcrum control designed by Umar Bashir Dated: 10.02.2025 */
/*************************************************************************/

ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: #f9f9f9;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    font-size: 15px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
    padding: 8px;
    color: #ddd;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/*****************************************/


/* ********************************* */
/* 17. Achievements2 CSS */
/* ********************************* */

.image-circle {
    padding: 15px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

@media (min-width: 768px) {
    .card-body {
        flex: 1;
    }
}
/*********************************** */


/*  ********************************* */
/*  18. School Data Count CSS */
/* ********************************* */
.stats-section {
    position: relative;
    background-image: url('/App/assets/images/banner/schoolBg.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 400px; /* You can increase/decrease as needed */
    color: white;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 50px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.stats-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(25, 89, 59, 0.8);
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 5;
}

.stat-number {
    font-size: 5rem;
    font-weight: bold;
    color: #f1cb15;
}

.stat-title {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}


/**********************************/
/* 20. Breadcrum-Style-2 CSS */
/*********************************/
.bg-breadcrum-image-2 {
    background-image: url('/App/assets/images/banner/preschool.jpg');
}

.breadcrumb-style-2 {
    position: relative;
    z-index: 1;
    padding: 100px 0 180px;
    height: 200px;
}

.breadcrumb-style-2:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    }

/**************************************/
/* 22. Academic Infrastructure CSS */
/**************************************/

.img-academics {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    background-color: var(--color-secondaryNew);
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.school-card {
    width: 200px;
    height: 230px;
    border-radius: 15px;
    padding: 2.5rem 1rem 1rem;
    color: white;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease-in-out;
    flex-shrink: 0;
    margin-bottom: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* slightly stronger shadow */
}

.school-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.circle-img {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 5px solid white;
    width: 80px;
    height: 80px;
    object-fit: cover;
    background-color:var(--color-secondaryNew);
}

.school-card h5 {
    margin-top: 50px;
    font-size: 1.5rem;
    color: var(--color-primary2);
    color: #394F49;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.5); /* slightly stronger shadow */
}

.down-arrow {
    font-size: 1.5rem;
    margin-top: 10px;
    display: block;
}

a.text-decoration-none {
    text-decoration: none !important;
}


@media (max-width: 767.98px) {
    .school-card {
        width: 80vw; /* 90% of viewport width */
    }
        .school-card h5 {
            font-size: 2rem;
        }
}


/* ********************************* */
/* 23. WhatApp Button CSS*/
/* **********************************/
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #075e54;
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: background-color 0.3s ease;
}

    .whatsapp-button:hover {
        background-color: #064e46;
        color:white;
    }

    .whatsapp-button img {
        width: 20px;
        height: 20px;
    }

/*******************************/
/* 24. Footer Widget Title CSS */
/*******************************/









