/* Importing Font Families */
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');*/


:root{
  --dark-color: #2e2f5b; /*dark purple*/
  --primary-color: #505581; /*light purple*/
  --secondary-color: lightpink; /*light pink*/
  --light-color: #faf0ca; /*light cream*/
}

.p-none{
    padding: 0px !important;
}

.min-width-100{
    min-width: 100% !important;
    max-width: 100% !important;
}

.min-height-100{
    min-height: 100% !important;
}

.min-height-200{
    min-height: 200% !important;
}

.bg-dark{
    background:var(--dark-color) !important ;
    color:var(--light-color);
}

.text-primary{
    color: var(--primary-color) !important;
}

.bg-primary{
    background:var(--primary-color) !important ;
    color:var(--light-color) ;
}

.barge-primary{
    background:var(--primary-color) !important ;
    color:var(--light-color) ;
}

.panel-primary{
    background:var(--primary-color) !important ;
    color:var(--light-color) ;
}
.alert-primary{
    background:var(--primary-color) !important ;
    color:var(--light-color) ;
}

.btn-block{
    min-width: 100% !important;
}

.btn-outline-primary{
    outline-color: var(--primary-color);
}

.btn-outline-primary:hover{
    background: var(--primary-color);
    color: #fff;
}

.btn-primary{
    background:var(--primary-color) !important ;
    color:#fff ;
}

.btn-primary:hover{
    opacity: .6;
}

.bg-secondary{
    background: var(--secondary-color) !important;
    color: #005481;
}

.badge-secondary{
    background: var(--secondary-color) !important;
    color: #005481;
}

.btn-secondary{
    background: var(--secondary-color) !important;
    color: #005481;
}

.btn-outline-secondary{
    border: 1.5px solid var(--secondary-color) !important;
    color: var(--secondary-color) ;
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active{
    background: var(--secondary-color) !important;
    color: #005481;
}

.text-secondary{
    color: var(--secondary-color) !important;
}

.bg-light{
    background: #dde8f0;
    color: #005481;
}

.bg-transparent{
    background: none;
}


.btn{
    transition: all 200ms ease-in-out;
}

.btn:hover{
    opacity: .6;
}

.bg-none{
    background: none;
    color: #000;
}

.fileUploader{
    min-width: 100%;
    min-height: 100px;
    background: #fefefe;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dotted #005481;
    border-radius: 25px;
}

.flex-container{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.table-wrapper{
    min-width: 100% !important;
    margin: auto;
    white-space: nowrap;
    overflow-x: visible;
}

.hide{
    display: none;
}

.cover-link{
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}

.outline-none{
    outline: none !important;
    border: none !important;
}

.shadow{
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .09);
}

.shadow-sm{
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .05);
}

.left{
    float: left !important;
}

.right{
    float: right !important;
}

.clearfix{
    min-height: 50px !important;
    min-width: 100% !important;
}

.clearfix-sm{
    min-height: 25px !important;
    min-width: 100% !important;
}

.absolute{
    position: absolute;
}

.absolute-top-left{
    position: absolute;
    left:0;
    top: 0;
}

.absolute-top-right{
    position: absolute;
    right:0;
    top: 0;
}

.card{
/*    border-color: var(--primary-color) !important;*/
}

.header-slider {
    height: 100vh;
    /*background: url('assets/images/bg-1.jpg') no-repeat center center/cover;*/
}
.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}
.fade-in.visible {
    opacity: 1;
}

.desktop{
    display: block;
}

.table-container{
    overflow-x: auto !important;
    margin: 0 !important;
    white-space: nowrap !important;
}


.responsive-table{
    overflow-x: auto !important;
    margin: 0 !important;
    white-space: nowrap !important;
    max-width: 100% !important;
}

/**/


/* Optional: Prevent child elements from overflowing */
html, body {
    width: 100%; /* Match viewport width */
    overflow-x: hidden; /* Hide horizontal overflow */
}


body {
    font-family: "DM Sans", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400 !important;
    font-style: normal;
}

h1, h2, h3, h4, h5 , h6{
  font-family: 'Inter', sans-serif; /* For Headings */
}

body{
    overflow-x: hidden !important;
    font-weight: normal;
    font-size: 1em;
    line-height: 1.5 !important;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1{
    font-size: 3em;
    font-weight: 800;
}


.navbar {
  transition: background-color 0.3s ease;
  position: fixed !important;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 1rem 2rem;
  max-width: 100vw !important;
  background-color: transparent !important;
  background: rgba(255,255,255,0);
  color: var(--light-color) !important;
}

.navbar.scrolled {
  background-color: var(--dark-color) !important; /* Change to desired color when scrolled */
  position:fixed !important;
  color: var(--light-color) !important;
}

.navbar-brand img {
  width: 50px;
  height: auto;
}

.navbar-toggler{
    color:var(--light-color) !important;
    border-color:var(--light-color) !important;
}

.navbar-toggler:hover{
    background:var(--light-color);
    color:var(--dark-color) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  color: var(--light-color) !important; 
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important; 
}

@media ( max-width: 700px ){
    .carousel-caption h5{
        margin-top: 20vh !important;
        font-size: 2.3em !important;
        font-weight:600 !important;
    }
    
    .carousel-caption p{
        font-size: 1.2em !important;
        font-weight: 300 !important;
    }
}

#breadcrumbs{
    margin-top: -20vh;
    z-index: 2;
}
.card {
/*    transform: translateY(20px);*/
/*    transition: transform 0.3s;*/
}
.card:hover {
/*    transform: translateY(0);*/
}

.course-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}
.course-content {
    max-width: 500px;
}
.course-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
}
.course-content p {
    font-size: 1rem;
    color: #555;
}
.btn-learn {
    color: #dc3545;
    font-weight: bold;
    text-decoration: none;
}
.btn-learn:hover {
    text-decoration: underline;
}
.course-image img {
    max-width: 100%;
    height: auto;
}



.testimonial-section {
    text-align: center;
    padding: 50px 20px;
}
.testimonial {
    max-width: 500px;
    margin: 0 auto;
}
.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.testimonial h5 {
    font-weight: 600;
}
.testimonial p {
    font-size: 1rem;
    color: #555;
}
.stars {
    color: #ffc107;
}
.pricing-card {
    background: #fff;
    color: #000;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card .icon {
    font-size: 30px;
    background: #FF6B6B;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.new-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FF6B6B;
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 20px;
}
.btn-try {
    background-color: #FF6B6B;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    font-weight: bold;
}
.btn-try:hover {
    background-color: #D64545;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-button i {
    font-size: 24px;
    color: red;
}

.faqs {
  padding: 4rem 0;
  /*background-color: var(--light-color);*/
}
.accordion-button {
  font-weight: 500;
  background-color:  #fff;
  border: none;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}
.accordion-button:not(.collapsed) {
  background-color:  var(--dark-color);
  color:  #fff;
}
.accordion-button:.collapsed {
  outline:none !important;
  border:none !important;
}
.accordion-body {
  padding: 1rem;
  background-color:  #fff;
  border: none;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

.course-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}
.course-content {
    max-width: 500px;
}
.course-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
}
.course-content p {
    font-size: 1rem;
    color: #555;
}
.btn-learn {
    color: #dc3545;
    font-weight: bold;
    text-decoration: none;
}
.btn-learn:hover {
    text-decoration: underline;
}
.course-image img {
    max-width: 100%;
    height: auto;
}
.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
}
.footer h5 {
    font-weight: 600;
}
.footer a {
    text-decoration: none;
    color: #6c757d;
    display: block;
    margin: 5px 0;
}
.footer a:hover {
    color: #dc3545;
}
.social-icons a {
    font-size: 1.2rem;
    margin: 0 10px;
    color: #6c757d;
}
.social-icons a:hover {
    color: #dc3545;
}



.topNav{
    min-width: 100vw !important;
    line-height:1.5 !important;
    position: fixed static sticky !important;
    background: var(--dark-color);
    min-height: 10vh !important;
    color: var(--light-color);
    padding: 1rem 2rem !important;
}

nav.topnav img.logo {
    width: 50px;
    height: auto;
}

#topMenuToggler{
    display: none;
}

.topMenu{
    list-style-type: "";
    display: block;
}

.topMenu > li{
    display: inline-block !important;
    margin-right: 2rem;
}

.topMenu > li > .nav-link {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.topMenu > li > .nav-link:hover {
    color: #007bff; /* Hover effect */
}

.topMenu > li > .nav-link.active {
    font-weight: bold;
    border-bottom: 2px solid #007bff;
}


header{
  min-width: 100vw !important;
  min-height: 100vh !important;
}

header .container{
    min-height: 90% !important;
    padding: 4rem 2rem !important;
}

header .container .row .col-md-7 .h1{
    font-weight: 800 !important;
    font-size: 3em;
}

header .container .row .col-md-7 p{
    font-size: 1em;
}

section{
    padding: 5rem 2rem !important;
}


.admission-process .form-step {
  /*background-color: var(--light-color);*/
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
  color: var(--dark-color);
}

.admission-process .form-group {
  margin-bottom: 15px;
}

.admission-process .btn {
  margin-top: 10px;
  display: inline-block;
}



.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.2s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.contact-us {
    background: #1d3557; /* Darker background for contrast */
}

.contact-us .lead {
    color: #f1faee; /* Softer text color for better readability */
}

.contact-form {
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.contact-form .btn-secondary {
    background-color: #457b9d;
    border-color: #457b9d;
}

.contact-form .btn-secondary:hover {
    background-color: #1d3557;
    border-color: #1d3557;
}

.contact-details {
    background: #2a9d8f; /* Softer green background for text details */
    color: #f1faee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-details i {
    color: #f1faee;
}

.map-container {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 700px) {

    body {
        overflow-x: hidden; /* Prevent horizontal scrolling */
        margin: 0; /* Ensure no margin causes unintended scrollbars */
        padding: 0; /* Avoid padding causing overflow */
    }

    /* Optional: Prevent child elements from overflowing */
    html, body {
        width: 100%; /* Match viewport width */
        overflow-x: hidden; /* Hide horizontal overflow */
    }


    header .container .row .col-md-7 .h1 {
        font-size: 2em; /* Reduce font size for smaller screens */
    }

    header .container .row .col-md-7 p {
        /*font-size: 1em;*/  /*Adjust paragraph text*/ 
    }

    /* Navigation container (mobile version) */
    .topNav {
        width: 100vw; /* Full width of the viewport */
        position: fixed; /* Fixed at the top */
        top: 0; /* Stay at the top of the viewport */
        background: var(--dark-color); /* Background color */
        min-height: 10vh; /* Minimum height */
        color: var(--light-color); /* Text color */
        padding: 1rem 2rem; /* Padding inside the nav bar */
        z-index: 1000; /* Layer above other content */
        display: flex;
        justify-content: space-between; /* Space between logo and toggler */
        align-items: center; /* Vertically center items */
    }

    /* Logo adjustments */
    nav.topNav img.logo {
        width: 50px;
        height: auto; /* Maintain aspect ratio */
    }

    /* Hamburger menu icon (mobile toggle) */
    #topMenuToggler {
        display: block; /* Visible on mobile */
        color: var(--light-color);
        font-size: 1.8em; /* Larger for mobile */
        cursor: pointer; /* Pointer cursor for interactivity */
    }

    /* Mobile Menu (hidden by default) */
    .topMenu {
        list-style-type: none; 
        position: fixed; 
        top: 10vh; 
        left: -100vw; 
        width: 100vw; 
        height: calc(100vh - 10vh); 
        background: var(--dark-color); 
        padding: 2rem 1rem; 
        display: none; 
        flex-direction: column; 
        z-index: 999; 
        overflow-y: auto; 
        transition: all 200ms ease-in-out;
    }

    /* Open state for menu */
    .topMenu.open {
        display: flex;
        left: 0;
    }

    /* Individual menu items */
    .topMenu > li {
        margin-bottom: 1.5rem; /* Space between menu items */
    }

    /* Mobile menu links */
    .topMenu > li > .nav-link {
        text-decoration: none; /* Remove underline */
        color: white; /* Link color */
        font-size: 1.2em; /* Larger text for mobile */
        transition: color 0.3s; /* Smooth hover effect */
    }

    /* Hover and active state for links */
    .topMenu > li > .nav-link:hover {
        color: #007bff; /* Hover effect */
    }

    .topMenu > li > .nav-link.active {
        font-weight: bold;
        border-bottom: 2px solid #007bff; /* Highlight active link */
    }


    section {
        padding: 3rem 1rem !important; /* Reduce padding */
    }

    

    #navbar-toggler {
        color: var(--secondary-color);
        text-decoration: none;
        font-size: 1.6em;
        cursor: pointer;
        z-index: 1100; /* Ensure the toggler is above the menu */
    }

    .desktop {
        display: none !important;
    }
}




