@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2f3138; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0e1b4d; /* Color for headings, subheadings and title throughout the website */
  /* --accent-color: #f82249; */
  --accent-color: #27A3DD; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --yellow-color: #f8a51d;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.65);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f82249; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f2f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000820;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #001553;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  
  h1, h2,  h3,  h4,  h5,  h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
  }

  .header {

    --background-color:#ffffff;
   --heading-color: #ffffff;
   color: var(--default-color);
   background-color: var(--background-color);
   
   padding: 15px 0;
   /* transition: all 0.2s; */ /*to add animation*/
   z-index: 997;
 }
 
 .header .logo {
   line-height: 1;
 }
 
 .header .logo img {
   max-height: 50px;
   margin-right: 8px;
 }
 
 .header .logo h1 {
   font-size: 30px;
   margin: 0;
   font-weight: 700;
   color: var(--heading-color);
 }
 
 .header .cta-btn,
 .header .cta-btn:focus {
   font-size: 14px;
   margin: 0 0 0 30px;
   border-radius: 5px;
   transition: 0.3s;
 }
 
 
 
 .cta-btn{
    --shadow: 0 2px 8px -1px rgb(0 0 0 / 32%);
   background-color:var(--accent-color);
   border: 2px solid var(--accent-color);
   box-shadow: var(--shadow);
   color: #ffffff;
   font-weight: 500;
   padding: 8px 8px;
 }
 .cta-btn:hover{
    color: #ffffff;
 }


 .contact-bar {
    background-color: #242E69;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .social-icons a {
    background-color: #f5f5f5;
    color: #242E69;
    border-radius: 50%;
    padding: 10px;
    margin: 0 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .social-icons a:hover {
    background-color: #ffffff;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .contact-info .email,
  .contact-info .phone {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .contact-info a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }

  
  /* Responsive */
@media (min-width: 768px) {
    .contact-bar {
      flex-direction: row;
    }
    .contact-info {
      flex-direction: row;
      gap: 30px;
    }
    .dropdown .dropdown-content {
      display: none; /* disable hover open on mobile */
    }

    .dropdown:hover .dropdown-content{
      display: block;
    }
  
    .dropdown-content .column1 hr{
      display: none;
    }
  

    .dropdown-content {
      border-bottom: none;
    }
  }
 
@media (max-width: 1200px) {
    .header .logo {
      order: 1;
    }
  
    .header .btn-getstarted {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 15px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }


  /* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }

    .dropdown{
      margin-left:15px;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #ffffff;
        min-width: 160px;
        padding-top:20px;
        transform: translateX(-50%);
        left: 50%;
        top:100%;
        z-index:1000;
        /* margin-right:240px; */
        /* border:0.5px solid #242E69; */
        
      }
      .dropdown-content .column1{
        padding-left:30px;
        padding-right:30px;
        /* padding-top:20px;
        padding-bottom:30px; */
      }

      .dropdown-content .column1 hr {
        border: none;
        height: 0.2px;
        /* Set the hr color */
        color: #333;  /* old IE */
        background-color: #333;  
        
      }

      .dropdown-content .column1 a{
        margin:12px;
        transition: transform 0.3s ease, color 0.3s ease;
      }

      .dropdown-content .column1 a:hover{
        color: #242E69;
        background-color: white;
        transform:translateX(10px);
        
      }
      
      .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
      }
      
      
      .dropdown:hover .dropdown-content {
        display: flex;
        border-bottom:5px solid #242E69;
      }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu>ul>li {
      white-space: nowrap;
      padding: 15px 14px;
    }
  
    .navmenu>ul>li:last-child {
      padding-right: 0;
    }
  
    .navmenu a,
    .navmenu a:focus {
      /* color: var(--nav-color); */
      color: #000820;
      font-size: 15px;
      padding: 0 2px;
      font-family: var(--nav-font);
      font-weight: 650;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu>ul>li>a:before {
      content: "";
      position: absolute;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--accent-color);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
      visibility: visible;
      width: 100%;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      /* color: var(--nav-hover-color); */
      color: #000820;
    }
  
  

    
  }

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--accent-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-dropdown-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }

    
  }
    

 /* Default state: navbar in normal flow */
.ggg {
    position: static; /* Not fixed */
    width: 100%;
    background-color: white;
    box-shadow: none;
    transition: box-shadow 0.4s ease;
  }
  
  /* When scroll triggers fixed navbar */
  .ggg.fixed {
    position: fixed;
    top: -100px;  /* start hidden above */
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: none;
    background-color: white;
    transition: top 0.4s ease, box-shadow 0.4s ease;
  }
  
  /* When fixed navbar is visible (slid down) */
  .ggg.fixed.visible {
    top: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* main.main {
    margin-top: 100px; 
  } */

  .ggg.shadow {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); /* subtle shade */
  }
  
  .dropdown-menu {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  .dropdown-menu ul li {
    padding: 6px 0;
  }




  
.banner{
  padding: 12rem;
  padding-top: 3rem;
  padding-bottom: 3rem;;
  background-color:#001553 ;
}

.banner .banner-title{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  padding-bottom: 5px;
  position: relative;
  color: white;
}

.banner-content{
 
  color: white;
}

.banner-point{
  color: white;
  margin-top: 1rem;
}

/* .banner-video{
  padding-left: 3rem;
} */



.banner-point i{
  margin-right: 6px;
}
#vid{
  
  /* border:2px solid wheat; */
  border-radius: 1rem;
}


.container-fluid.home-slider {
  padding: 0;
  margin: 0;
  width: 100%;
  
}

.container-fluid.home-slider div {
  width: 100%;
  
}

.mySlides {
  display: block;
  width: 100%;
  height: 250px;
}



#registration .reminder{
  color: #fff;
  border: 2px solid transparent;
  
  /* padding-right: 3rem; */
   

}

#registration .reminder hr {
 width: 75%;
  /* padding-right: 3rem; */
   

}

#registration .reminder h1{
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  /* margin-bottom: 20px; */
  text-align: start;
}
#registration .reminder p{
  color: #fff;
  font-size: 18px;
/*  
  margin-top: 20px; */
  text-align: start;
}
#registration .reminder i{
  
  /* margin-right: 15px; */
 
}

#registration .reminder a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: white;
  font-weight: 600;
  border-radius: 5px;
}



#about_us1{
  box-shadow:rgba(0, 0, 0, 0.11) 0px 0px 32.9px 2.1px; 
  margin-top:20px;
  border-radius:15px;
}
.about_us_button{
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 8px;
}
.about_button{
  /* color: var(--contrast-color);
  background-color: var(--heading-color); */
  border: 2px solid white;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 8px;
}
.display-6{
  font-family: 'Roboto',sans-serif;
  font-weight: 800;
}

.about_us_content{
  font-family: var(--nav-font);
  font-weight: 580;
  color: #000820;
  font-size: 15px;
      
  overflow: hidden;
  text-align: justify;
  text-justify: inter-word;
  line-height: 2.1;
}

/*--------------------------------------------------------------
# About Us Page Section
--------------------------------------------------------------*/

#about_us_page{
  /* box-shadow:rgba(0, 0, 0, 0.11) 0px 0px 32.9px 2.1px;  */
  margin-top:20px;
  border-radius:15px;
}

.about_us_page_heading{
  font-family: 'Roboto',sans-serif;
  font-weight: 800;
}

.about_us_page_content{
  font-family: var(--nav-font);
  font-weight: 580;
  color: #000820;
  font-size: 15px;
      
  overflow: hidden;
  text-align: justify;
  text-justify: inter-word;
  line-height: 2.1;
}

/*--------------------------------------------------------------
# Course Page Section
--------------------------------------------------------------*/

#course_page{
  /* box-shadow:rgba(0, 0, 0, 0.11) 0px 0px 32.9px 2.1px;  */
  margin-top:0px;
  border-radius:15px;
  
}

.feature-card {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-15px);
}
.feature-card .icon {
  font-size: 30px;
  color: white;
  margin-bottom: 10px;
}
.feature-card h5 {
  font-size: 1.25rem;
  font-weight: bold;
}
.feature-card p {
  font-size: 0.9rem;
}

#modulesAccordion .accordion-button{
  font-family: var(--nav-font);
  font-weight: 580;
  color: #000820;
  font-size: 15px;
  
  
}
.about_us_page_heading{
  font-family: 'Roboto',sans-serif;
  font-weight: 800;
}

.about_us_page_content{
  font-family: var(--nav-font);
  font-weight: 580;
  color: #000820;
  font-size: 15px;
      
  overflow: hidden;
  text-align: justify;
  text-justify: inter-word;
  line-height: 2.1;
}

/*--------------------------------------------------------------
# Best Portion Section
--------------------------------------------------------------*/

#best_portion .reminder{
  color: #fff;
  border: 2px solid transparent;
   

}



#best_portion .reminder h1{
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  /* margin-bottom: 20px; */
  text-align: center;
}
#best_portion .reminder p{
  font-family: var(--nav-font);
  font-weight: 580;
  color: white;
  font-size: 15px;
      
  overflow: hidden;
  text-align: justify;
  text-justify: inter-word;
  line-height: 2.1;
}


#best_portion .reminder a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: white;
  font-weight: 600;
  border-radius: 5px;
  justify-content: center;
}

.best_portion_button{
  border:2px solid white;
  
}
.best_portion_button:hover{
  border:2px solid white;
}

/*--------------------------------------------------------------
# Common Section
--------------------------------------------------------------*/
#common_section{
  background-color: var(--heading-color);
}
#common_section .reminder{
  text-align: center;
  color: var(--background-color);
}
#common_section .reminder h1{
  font-size: 35px;
  font-weight: bold;
  color: #ffffff;
}
#common_section .reminder p{

}

#course_form{
  padding:20px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/*--------------------------------------------------------------
# Common Section
--------------------------------------------------------------*/

#about_us_page .img-fluid{
  height:500px;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact-section{
  /* background-color: #000820; */
  background-color: #1f2a69;
}



.contact-header{
  font-weight: bold;
  font-family: var(--default-font);
  text-align: center;
  font-size: 25px;
}
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact-us-button button{
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 8px;
}

.about_us_button{
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 8px;
}

.contact-us-button .send-message{
  margin-left:1rem;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  width: 450px;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form select,
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form select::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 8px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.contactcaptcha{
  align-items: center;
  justify-content: center;
  /* border:2px solid; */
  padding: 10px;
}

/*--------------------------------------------------------------
# Global service Titles
--------------------------------------------------------------*/

.overlay {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(rgba(0, 0, 102, 0.85), rgba(0, 0, 102, 0.85)),
  url('../img/hero-bg.jpg') no-repeat center center;
  
  background-size: cover;
  padding: 60px 20px;
  color: white;
}

.overlay h2,h5{
  color:white;
}

.service-box {
  text-align: left;
  padding: 20px;
}

.service-box h5 {
  font-weight: bold;
}

.service-box p {
  font-size: 15px;
  color: #ddd;
}

.icon {
  font-size: 30px;
  color: white;
  margin-bottom: 10px;
  display: inline-block;
}






.services-section {
  padding: 80px 20px;
  text-align: center;
}

.service-card {
  background-color: #fff;
  border: none;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
 
}


.icon-box {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 30px;
  font-size: 28px;
  color: #fff;
  
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.icon-blue { background: #3f51b5; }
.icon-orange { background: #ff7043; }
.icon-cyan { background: #00bcd4; }
.icon-teal {background: #009688;}
.icon-purple {background: #9c27b0;}
.icon-pink {background: #e91e63;}
.icon-indigo {background: #3f51b5;}

.icon-lime {background: #cddc39;}

.icon-grey {background: #9e9e9e;}
.service-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 30px;
  color:var(--heading-color);
}

.service-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}



.counter-section {
  background-color: var(--heading-color);
  color: #fff;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.counter-section h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}

.counter-section h1 {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.counter-box {
  margin-bottom: 40px;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: bold;
}

.counter-label {
  font-size: 1.1rem;
  margin-top: 10px;
}

.rocket-img {
  position: absolute;
  bottom: 0;
  right: 60px;
  max-width: 100px;
}

@media (max-width: 768px) {
  .rocket-img {
    position: static;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Global services Titles
--------------------------------------------------------------*/
.features-title h2{
  color:var(--heading-color);
  font-family:'Roboto','sans-serif';
  font-weight: 800;
}

.alumini-title h2{
  color:var(--heading-color);
  font-family:'Roboto','sans-serif';
  font-weight: 800;
}

.alumini-view-more a span,.alumini-view-more a span i{
  color: var(--heading-color);
  font-weight: bold;
}

.alumini-view-more a span:hover{
  i{
    color:var(--accent-color);
  }
  color:var(--accent-color)
}
#services{
  background-color: white;
  
}
.feature-content{
  /* border:2px solid; */
  padding: 10px;
  border-radius: 10px;
}

#service-content
{
   /* border:2px solid; */
   height:150px;
   padding: 20px 15px 15px 20px;
   border-color: #E6E6E6;
   border-radius: 6px 6px 6px 6px;
   background-color: #F1F1F1;
   
   box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  
}
#service-content i{
  color: var(--accent-color);
}
#service-content h5{
  color: var(--accent-color);
  font-family:'Roboto','sans-serif';
  font-weight: 800;
}

#service-content span{
  font-family:'Roboto','sans-serif';
  color: black;
  font-size: 15px;      
  overflow: hidden;
  text-align: justify;
  text-justify: inter-word;
  line-height: 2;

  
}


/*--------------------------------------------------------------
# Global About
--------------------------------------------------------------*/

#services{
  background-color: white;
  
}
.about-content{
  /* border:2px solid; */
  padding: 30px;
  /* width: 300px; */
  border-radius: 15px;
  /* border:2px solid; */
}

#about-content-inside
{
   /* border:2px solid; */
   position: relative;           /* needed for pseudo element */
   overflow: hidden;             /* hide overflowing parts */
   background: white;            /* initial bg */
   height:auto;
   padding: 20px 15px 15px 20px;
   border-color: #E6E6E6;
   border-radius: 6px 6px 6px 6px;
   /* background-color: #F1F1F1; */
  
   ;;
   box-shadow:  0 0 10px rgba(0, 0, 0, 0.1);
   border-bottom: 6px solid var(--heading-color);
  
  
  
}

#about-content-inside::before {
  content: "";
  position: absolute;
  top: 50px;                   /* center vertically (approximate) */
  left: 50%;                  /* center horizontally */
  transform: translate(-50%, -50%) scale(0);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(180deg, #27A3DD, #1B2A6D);
  z-index: 0;
  transition: transform 0.5s ease;
  pointer-events: none;
  /* Make it cover whole div when scaled */
  /* We'll scale it large enough */
  
}

#about-content-inside:hover::before {
  transform: translate(-50%, -50%) scale(15); /* expand circle to fill div */
}

#about-content-inside > * {
  position: relative;
  z-index: 1;  /* keep content above the expanding circle */
  transition: color 0.5s ease;
}

#about-content-inside:hover {
  color: white;
 
}

#about-content-inside:hover{
  
  color: white;
  h5{
    color: white;
  }
  
  
}
#about-content-inside:hover #icon{
  background:none;
  transform: scale(1.8);
  transition: .2s ease-in-out;
} 
#about-content-inside #icon{
  
  /* width: 100px; */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;           /* adjust based on icon size */
  height: 80px;
  background: linear-gradient(135deg, var(--heading-color), #2163A2);;
  color: white;
  /* border: 2px solid red; */
  border-radius: 50%;    /* makes it a circle */
  margin: 0 auto 1rem;   /* center horizontally */
  
  
}

#about-content-inside h5{
  color: var(--accent-color);
  font-family:'Roboto','sans-serif';
  font-weight: 800;
}



#vision{
  /* background-color: #F6F7F8; */
}
#vision-content
{
  border:2px solid  rgba(0, 0, 0, 0.1);
  height:35vh;
  border-radius:10px;
  padding: 15px;
  /* box-shadow: inset 0px 20px rgba(0, 0, 0, 0.1); */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  
}

#vision-content:hover{
    transition: all 1s ease-in-out;
    /* background-color: var(--accent-color); */
    box-shadow:  0 0 10px var(--heading-color);
}

#vision-content i{
  color:var(--heading-color);
}

#vision-content h5{
  color: var(--heading-color);
  font-family:'Roboto','sans-serif';
  font-weight: 800;
  padding: 10px;
}

#vision-content span{
  /* font-family:'Roboto','sans-serif';
  font-size: 15px;*/
  padding: 10px; 
  font-family: var(--nav-font);
  font-weight: 580;
  color: black;
  font-size: 15px;      
  overflow: hidden;
  text-align: justify;
  text-justify: inter-word;
  line-height: 2.1;

}


/*--------------------------------------------------------------
# TimeLine
--------------------------------------------------------------*/

.timeline-section {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.timeline {
  max-width: 900px;
  margin: auto;
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #ccc;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 25px;
  box-sizing: border-box;
}

.timeline-item p{
  font-family:'Roboto','sans-serif';
  color:var(--heading-color);
  font-size: 15px;      
  overflow: hidden;
 padding: 10px;
  line-height: 2;
}

.timeline-item h3{
  color:var(--heading-color);
  font-family:'Roboto','sans-serif';
  font-weight: 600;
  /* font-size: 23px; */
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: left;
  
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}



.timeline-date {
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
  border:2px solid;
  border-radius:20px;
  width: 100px;
  text-align: center;
  background: linear-gradient(135deg, var(--heading-color), #2163A2);;
}

.timeline-content {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: inline-block;
  max-width: 100%;
}



/* ✅ Responsive Styles */
@media screen and (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 30px;
    padding-right: 10px;
    left: 0 !important;
    text-align: left !important;
    margin-bottom: 40px;
  }

  .timeline-content {
    max-width: 100%;
  }
}


.our-team{
  text-align: center;
  margin-bottom: 100px;
  z-index: 1;
  position: relative;
}
.our-team .pic{
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.our-team .pic:after{
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}
.our-team:hover .pic:after{ opacity: 1; }
.our-team .pic img{
  width: 100%;
  height: auto;
}
.our-team .social{
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  position: absolute;
  top: 45%;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease 0s;
}
.our-team:hover .social{ opacity: 1; }
.our-team .social li{ display: inline-block; }
.our-team .social li a{
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 15px;
  color: #fff;
  margin-right: 10px;
  transition: all 0.5s ease 0s;
}
.our-team .social li a:hover{
  background: #fff;
  color: #000;
}
.our-team .team-content{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dotted #ddd;
  position: absolute;
  bottom: -70px;
  left: 0;
  font-family: var(--nav-font);
  z-index: -1;
  transition: all 0.5s ease 0s;
}
.our-team:hover .team-content{ border: 2px dotted var(--heading-color); }
.our-team .team-info{
  width: 100%;
  color: #464646;
  position: absolute;
  bottom: 12px;
  left: 0;
}
.our-team .title{
  font-size: 20px;
  font-weight: 600;
  color: #464646;
  font-family: var(--nav-font);
  margin: 0 0 5px 0;
  transition: all 0.5s ease 0s;
}
.our-team:hover .title{ color: var(--heading-color); }
.our-team .post{
  display: block;
  font-size: 14px;
  color: #464646;
} 



.testimonial{ margin: 0 20px 50px; }
.course_project{ margin: 0 20px 50px; }

#job_roles ul li{
  padding-top: 5px;
  border:2px solid white;
  
  border-radius:20px;
 
  color:black;
  
  margin:15px;
}
.testimonial .pic{
    display: inline-block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 15px 15px 0;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.testimonial .testimonial-profile{
    display: inline-block;
    position: relative;
    top: 15px;
}
.testimonial .title{
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #2f2f2f;
    text-transform: capitalize;
    margin: 0 0 7px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #5d7aa7;
}
.testimonial .description{
    padding: 20px 22px;
    background: #1f487e;
    font-size: 15px;
    height:120px;
    color: #fff;
    line-height: 25px;
    border-top-right-radius:10px;
    border-top-left-radius:10px;
    margin: 0;
    position: relative;
}
.course_project .description{
  padding: 20px 22px;
  background: white;
  font-size: 15px;
  height:180px;
  color: black;
  line-height: 27px;
  border:2px solid  rgba(0,0,0,0.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius:10px;
  margin: 0;
  position: relative;
}
.course_project .description span{

  padding:5px;
  border-radius:20px;
  
  font-weight: bold;

}
.testimonial .description:before,
.testimonial .description:after{
    content: "";
    border-width: 18px 0 0 18px;
    border-style: solid;
    border-color: #5d7aa7 transparent transparent;
    position: absolute;
    bottom: -18px;
    left: 0;
}
.testimonial .description:after{
    border-width: 18px 18px 0 0;
    left: auto;
    right: 0;
}
.owl-theme .owl-controls{
    margin-top: 10px;
    margin-left: 30px;
}
.owl-theme .owl-controls .owl-buttons div{
    opacity: 0.8;
    background: #fff;
}
.owl-prev:before,
.owl-next:before{
    content: "\f053";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    font-size: 20px;
    color: #1f487e;
}
.owl-next:before{ content: "\f054"; }
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

#globe {
  position: relative;
  width: 400px;
  height: auto;
  transform-style: preserve-3d;
  animation: spin 40s linear infinite;
}

.tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-weight: bold;
  color: var(--heading-color);
  transition: transform 0.1s linear;
}

@keyframes spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--default-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--default-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  text-decoration: none;
}


/*--------------------------------------------------------------
# Home Banner SlideShow
--------------------------------------------------------------*/
.swiper {
  width: 100%;
  height: 70vh;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 1s ease-in-out;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 1;
  transition: transform 1s ease-in-out;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
  padding: 40px;
  animation: bounceIn 1.5s ease;
}

.slide-content h4 {
  color: #f8a51d;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
  color:white;
}

.slide-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.slide-content button {
  padding: 12px 30px;
  font-size: 1rem;
  background-color: white;
  color: black;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.slide-content button:hover {
  background-color: #f8a51d;
  color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet-active {
  background: #f8a51d;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateX(-100px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateX(20px);
  }
  70% {
    transform: scale(0.9) translateX(-10px);
  }
  100% {
    transform: scale(1) translateX(0);
  }
}