:root{
    --brand-color:#6DC8C8;
    --second-brand-color:#275C90;
    --news-background-color:rgb(239 239 239);;
}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul li{
    list-style: none;
}
body{
    font-family: 'Roboto', sans-serif;
}
.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure the navbar stays above other content */
    background-color: white; /* Set a background color to avoid transparency issues */
    transition: all 0.3s ease-in-out; 
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 1px;
}
.marquee{
    background-color: var(--second-brand-color);
    color: #fff;
    font-size: 15px !important;
    padding: 4px 0px;
    p{
        padding: 0px ;
        margin: 0px;
    }
}
.btn-hazime{
    margin-top: 20px;
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, var(--brand-color), var(--second-brand-color));
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-position 0.6s, color 0.3s;
    background-size: 200% auto;
    background-position: left center;
    /* Optional: Add box-shadow for depth */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}
.btn-hazime:hover,
.btn-hazime:focus {
    background-position: right center;
    color: #fff; 
}

/******maintop-nav*/
.maintop-nav ul{
    display:flex;
    align-items: center;
    margin-bottom: 0px;
}
.maintop-nav ul li{
    padding-left: 15px;
}
.maintop-nav ul li a {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}
.maintop-nav{
    background-color: var(--second-brand-color);
    padding: 5px;
}
.maintop-nav-top .fa {
    font-size: 14px;
    padding-left: 0;
    color: #fff;
    padding-top: 4px;
}
.mainHome-nav{
    background-color: #fff;
    padding: 0px;
}
.main-logo{
    width: 200px ;
    height: 80px;
}
.main-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mainHome-nav a{
    font-size: 16px;
    color: black !important;
    font-weight: 600;
    
}
.mainHome-nav .navbar-nav .nav-link{
    margin-left: 16px;
    padding: 9px 15px;

}
.mainHome-nav .navbar-nav .nav-link:hover{
    background-color: var(--brand-color);    
    color: #fff;
}
/* Hide all dropdown menus initially */
.dropdown-menu {
    display: none;
    left: 100%; /* Position to the right of the parent menu */
    top: 0%;
    border-top: 2px solid var(--brand-color);
}

/* Position relative for nav-items to handle dropdowns properly */
.nav-item {
    position: relative;
}

/* Show main dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    left: 16px; /* Align with the parent */
    top: 100%; /* Position below the parent menu */
}

/* Show the submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
    position: absolute;
    left:99%; /* Align to the right of the parent */
    top:20%;
    border-top: 1px solid var(--brand-color);
}

/* Style for dropdown links */
a.dropdown-item {
    font-weight: 400;
    white-space: nowrap; /* Prevent text wrapping */
}

a.dropdown-item:hover {
    background-color: var(--brand-color);
    color: #fff;
}

/* Style for 'Book Appointment' button */
.book-appointment {
    border-radius: 5px;
    background-color: var(--brand-color);
    margin-left: 30px;
    padding-left: 8px !important;
    padding-right: 8px !important;
    color: #fff !important;
}

.book-appointment:hover {
    background-color: var(--second-brand-color);
    color: #fff !important;
}
/*******main slider part*****/

.home-slider-main{
    width:100%;
    height: 70vh;
}
.home-slider-main-item img{
    width: 100%;
    height: 100%;
    
}
.home-slider-button-next,.home-slider-button-prev{
    background-color: var(--brand-color);
    border-radius: 10px;
}
.home-slider-button-next:after, .home-slider-button-prev:after 
{
    font-size: 15px !important;
    color: #fff;
    padding: 5px 10px !important;
}
.slider-text-part{
    top: 30%;
    left: 10%;
    position: absolute;
    color: #fff;
    h2{
        font-size: 50px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #ffffff;
    }
    h4{
        font-size: 20px;
    }
    
}
/***********news-events-slider****************/

.news-events-slider{
    width: 100%;
    height: 100%;
    padding-right: 24px;
    padding-left: 10px;
}

.news-events-slider-item{
    border-radius: 5px;
    padding: 10px;
    margin: 20px 5px ;
    box-shadow: 0px 0px 10px 2px var(--brand-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-events-slider-item:hover{
    transform: scale(1.01);
    box-shadow: 0px 0px 15px 3px var(--brand-color);
}
.news-events-slider-item-title{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    padding:10px;

}
.news-events-slider-item-img{
height: 250px;
width: 90%;
margin: auto;
}
.news-events-slider-item img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.news-events-slider-item-description { 
    text-align: justify ;
    padding-top: 10px;
}
.news-events-slider-item-description .btn{
    border:2px solid var(--brand-color);
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    color: #275C90;
    margin-bottom: 10px;
}
.news-events-slider-item-description .btn:hover{
    background-color: var(--brand-color);
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
}
/*****welcom-title************/
.welcom-main{
    background-color: aliceblue;
    padding: 20px 0px;
}
.welcome-main-img{
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.welcome-main-img img{
    width: 100%;
    height: 100%;
    object-fit: center;
}
.welcom-title h1{
    color: var(--brand-color);
    text-transform: uppercase;
    font-size: 1.5rem;
        line-height: 2rem;
    

}
.welcom-title-brand{
    font-size: 30px;
    font-weight: 700;
}
.welcom-title p{
    font-size: 20px;
    text-align: justify;
    
}

.welcom-title ul li{
    padding-bottom: 10px;
}

.welcom-body .about_us_icons {
    text-align: center;
}
.welcom-body .about_us_icons h2 {
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: -1px;
}
.welcom-body{
    margin-bottom: 20px;
    border: 2px solid var(--brand-color);
    border-radius: 20px;
    padding: 10px 0px 30px 0px ;
    margin: 30px 0px;
}
/*******************home-about-us-item-img**************/
.home-about-us-item-text{
    text-align: center;
}
.home-about-us-item-text p{    
    font-size: 20px;
    text-align: justify;    
}
.home-about-us-title h2{
    color: var(--brand-color);
}
.home-about-us-item-text .btn {
    background: linear-gradient(var(--brand-color), var(--second-brand-color));
    height: 45px;
    width: 30%;
    color: #fff;
    border: none;
    padding: 6px 20px;
    border-radius: 5px;
    font-size: 22px;
}
.home-about-us-item-img{
    width: 100%;
    height: 460px;
}
.home-about-us-item-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*******************Events and news *************/
.news-events{
    margin: 60px 0px 10px 0px;
}
.news-events-title h3{
    color: var(--brand-color);
}
.news-events-title p{
    color: #0b3259;
    border-bottom: 1px solid var(--second-brand-color);
}
/****************test-preparation-home************/
.test-preparation-home {
    background-image: url('../images/preparation-classes.png');
    background-size: cover;      /* Cover the entire container */
    background-position: center; /* Center the image */
    background-attachment: fixed; /* Fix the background image */
    height: 400px;
    width: 100%;
}
/****************testimonials****************************/
.testimonials{
    margin: 50px;
}
.testimonials-swiper-slider {
    border: 0px;
}
.card{
    border: 0px !important;
}
.testimonialsSwiper .card-body{
    padding: 20px;
   margin: 0px 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px var(--brand-color);
}
.testimonialsSwiper .swiper-wrapper{
    padding: 10px 0px 40px 0px;
}
.testimonials-item{
    margin: 20px 10px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;

}
.testimonials-title{
    color: var(--brand-color);
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
.testimonials-item-description{
    text-align: justify;
}
.testimonials-item-img{
    width: 100px;
    height: 100px;
    margin: 14px auto;
}
.testimonials-item-img img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.testimonials-item-author {
    text-align: center;
    padding-top: 10px;
}
span.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border: 3px solid var(--second-brand-color);
    background: rgb(255, 255, 255);
}
.view-all-btn {
    text-align: center; /* Centers the button horizontally */
}

.view-all-btn a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, var(--brand-color), var(--second-brand-color)); /* Gradient background */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-position 0.6s, color 0.3s; /* Smooth gradient transition and text color change */
    background-size: 200% auto;
    background-position: left center; /* Start gradient from the left */
}

.view-all-btn a:hover {
    background-position: right center; /* Animate gradient to the right on hover */
    color:#ffffff; /* Optional: Change text color on hover */
}
/****************booking-appointment-home-title************/

.booking-appointment-img img{
    object-fit: cover;
    width: 100%;
}
.booking-appointment-home-title{
    text-align: center;
    color: var(--brand-color);
    font-size: 50px;
    font-weight: bold;
    margin-top: 20px;

}
.booking-appointment-home-description{
    color: #000;
    text-align: center;
    font-size: 20px;
    padding-bottom: 30px;
}

.booking-appointment-home label{
    color: #000;
    font-size: 20px;
}
.booking-appointment-home input{
    padding: 10px;
    font-size: 16px;
    border: 2px solid var(--brand-color);
    border-radius: 5px;
    margin-bottom: 15px;
    width: 100%;
    transition: border-color 0.3s ease;
}
.booking-appointment-home input::placeholder{
    font-size: small;
}
.booking-appointment-home .btn{
    background: linear-gradient(var(--brand-color), var(--second-brand-color));
    color: #fff;
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 23px;
}
.booking-appointment-home .btn:hover{
    background: linear-gradient(var(--second-brand-color), var(--brand-color));
    color: #fff;
}
/****************footer****************/
.footer-main{
    background-color: #275C90;
    padding: 40px 0px;
}
.footer-title{
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 20px;
    padding-bottom: 15px;
    font-size: 25px;
}

.footer-body ul{
    margin: 0px;
    padding: 0px;
}
.footer-body ul li{
    color: #fff;
}
.footer-body ul li a {
    color: #fff;
}
.footer-body ul li{
    padding: 0 0 8px 0px;
    letter-spacing: 1px;
    line-height: 20px;
}
.social-icons {
    gap: 15px; /* Space between icons */
    justify-content: start; /* Center align icons horizontally */
    align-items: center; /* Align icons vertically */
  }

  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Width of icon container */
    height: 40px; /* Height of icon container */
    font-size: 40px; /* Size of icons */
  }

  .social-icons a.fa-whatsapp {
    color: #25D366 !important; /* WhatsApp green */
  }

  .social-icons a.fa-facebook {
    color: #1877F2 !important; /* Facebook blue */
  }

  .social-icons a.fa-instagram {
    color: #C13584 !important; /* Instagram pink */
  }

  .social-icons a.fa-youtube {
    color: #FF0000 !important; /* YouTube red */
  }

  .social-icons a:hover {
    opacity: 0.8; /* Slightly fade the icon on hover */
    color: var(--brand-color);
    background-color: #ffffff;
    border-radius: 5px;
  }

  .down-footer-main{
    background-color: #0b3259;
    padding: 8px;
    color: #fff;
    display: flex;
    justify-content: center;
    gap:5px;
  }
  .down-footer-main a{
    color: #fff;
  }
/*****************************about page details**************/
.img-sml{
    width: 100% !important;
    height: 400px !important;
}
  .about-details-page{
    

    position: relative; /* Ensure positioning context */
    background: linear-gradient(
        rgba(0, 0, 0, 0.7), /* Black color with 50% opacity */
        rgba(0, 0, 0, 0.7)  /* Black color with 50% opacity */
    ), url('../images/1.webp');
    background-size: cover; /* Cover the entire container */
    background-position: center center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent repeating the background image */
    width: 100%;
  }
  .about-details-page-title{
    text-align: center;
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    margin: 50px 0px;
  }
  .detail-url-link{
    background: var(--brand-color);
    padding:5px;
    color: #fff;
    font-size: 13px;
  }
  .detail-url-link a{
    color: #fff;
    font-size: 145x;
    text-decoration: none;
    padding-right: 5px;
  }


  /**************right-side-main************/
  .right-side-main{
    background-color: var(--news-background-color);
    padding:25px;
  }
  .right-side-show-event-card{
    padding-top: 10px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--brand-color);
  }
  .right-side-show-event-card-image img{
    width: 90px;
    height: 60px;
    margin-right: 5px;
  }
  .right-side-show-card-title{
    color: #000;
    line-height: 20px;
    font-size: 17px;
    margin-left: 5px;
  }
  /*********************message****************/
  .message-details{
    text-align: justify;
  }

  /************statement view page****************/
  .statementview {
    width: 100%;
    border-collapse: collapse;
}
.statementview thead {
    background-color: #e9e9e9;
    border-bottom: 2px solid var(--second-brand-color);
}
.statementview thead th {
    color: #000;
    padding: 10px;
    text-align: left;
}
.statementview tbody td {
    color: var(--second-brand-color);
    padding: 10px;
}
.statementview tbody tr:nth-child(even) {
    background-color: #e9e9e9;
}
 .statementview tbody tr{
   border-bottom: 1px solid #000; 
} 
.statementview tbody td a {
    color: var(--second-brand-color);
    text-decoration: none;
}
.statementview tbody td a:hover {
    text-decoration: underline;
}
.news-details-main-par-content strong{
    font-size: 20px ;
    font-weight: 600;

}
.news-details-main-par-content p{
    padding-bottom: 10px;
    margin: 0px;
    text-align: justify;
}
.news-details-main-par-content .btn{
    color: var(--second-brand-color);
    text-decoration: underline;
    padding: 0px;
    font-size: 18px;
}
.news-details-main-par-content .btn:hover{
    text-decoration: none;
}
.news-details-main-part{
    padding: 30px;
    border-bottom: 1px solid var(--brand-color);
}
.news-details-main-part-img {
    margin: 0px 10px;
    height: 160px;
    overflow: hidden;
    text-align: end;
}
.news-details-main-part-img img{
   object-fit: cover;
    height: 100%;
}
a.share-icon{
    font-size: 35px !important;
    color: var(--brand-color);
}
a.share-icon:hover{
    color: var(--second-brand-color);
}
/******gallery*****/
.gallery-img {
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    max-width: 100%; /* Responsive width */
    height: auto; /* Auto height */
}

.gallery-img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.gallery-item {
    margin-bottom: 20px; /* Space below each image */
    overflow: hidden; /* Hide overflow for cleaner look */
}

.gallery-row {
    margin-bottom: 20px;
}
/************contact ************/
.contact-box {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(98, 213, 231, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-box i {
    font-size: 2rem;
    color: var(--brand-color) !important;
    margin-bottom: 10px;
}

.contact-form {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

iframe {
    width: 100%;
    height: 350px;
    border: 0;
}
/*************blogs card**********/
.blog-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.blog-card:hover {
    transform: scale(1.05);
}
.blog-card-title {
    font-size: 15px;
    font-weight: bold;
    margin: 10px 0px;
    line-height: 14px;
}
.blog-card-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.blog-card-description {
    padding: 1rem;
}
.blog-card-description p {
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 18px;
}
.blog-card-description .btn {
    background-color: #55a0c2;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.blog-card-description .btn:hover {
    background-color: #0056b3;
}

.main-ceo-part-image {
    overflow: hidden;
    width: 70%;
    margin: auto;
    border-radius: 10px;
    padding: 5px; /* Space for the gradient border */
    background: linear-gradient(to bottom right, #ff7e5f, #feb47b, #86a8e7, #91eae4); /* Multi-color gradient */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-ceo-part-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px; /* Match border radius with container */
    display: block;
}

.main-ceo-part-image:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}
.partnership-main{
    background-color: #fff;
    align-items: center;
    object-fit: contain;
    margin: 0px !important;
    padding: 0px 11px;
}
.partnership-img{
    width: 250px;
    max-height: 180px !important;
    overflow: hidden;
}
.partnership-img img{
    width: 100%;
    height: 180px !important;
    object-fit: contain;
}
.ceo-name{
    padding-top: 10px;
    text-align: center;
}

.content{
    text-align: justify;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='red' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-default .navbar-toggle {
    border-color: #ddd;
}
.share-link {
    display: none !important;
}