@import url('https://fonts.googleapis.com/css2?family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
:root {
    --primary-color: #ff9100;
    --text-color: #FFF;
}

/* -----------------------
SCROLLBAR CSS
--------------------------*/

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 7px;
}
::selection {    
    background-color: var(--primary-color);
    color: #FFF;
}

body {
    font-family: "Teachers", sans-serif;
    background-color: #000;
}
a {
    text-decoration: none;
    outline: none;
    color: var(--primary-color);
}
ul {
    list-style: none;
}
p {
    font-weight: 300;
}

/* -----------------------
BACK TO TOP BUTTON CSS
--------------------------*/
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #000b14;
    color: white;
    border: 1px solid #5a5a5a4a;
    border-radius: 5px;
    display: none;
    cursor: pointer;
    z-index: 1000;
    transition: .3s;
}
.back-to-top i{
    font-size: 20px;
}
.back-to-top:hover {
  background-color: var(--primary-color);
}



/* -----------------------
HEADER CSS
--------------------------*/

header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
}
.header-topbar {
    position: relative;
    padding: 10px 0 0;
    border-bottom: 1px solid rgba(228, 235, 241, 0.07);
}
.top-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.top-head p {
    display: flex;
    align-items: center;
    font-weight:500;
    font-size: 16px;
    margin-bottom: .5rem;
    color: var(--text-color);
}
.top-head i {
    margin-right: .5rem;
    font-size: 16px;
}
.right-top{
    display: flex;
    align-items: center;
}
.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}


/* -----------------------
NAVBAR CSS
--------------------------*/
#mainNavbar {
  transition: top 0.3s ease-in-out;
  z-index: 1030;
  background-color: #000;
}
.navbar-brand {
    color: var(--text-color);
}
.navbar-brand:hover {
    color: var(--primary-color);
}
.nav-link {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    transition: .5s;
}
.nav-link:focus, .nav-link:hover {
    color: var(--primary-color);
}
.nav-link:hover {
    border-bottom: 1px solid #242424;
    color: var(--primary-color);
}
.navbar-nav .nav-link.show {
    color: var(--primary-color);
}
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}
.nav-item {
    padding: 0 10px;
}
.nav-item .active {
    border-bottom: 1px solid #242424;
    border-radius: 3px;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.5px var(--primary-color);
    border-radius: 0;
}
.bx-menu {
    color: var(--text-color);
}
.navbar-toggler {
    border: 0;
}
.con-btn {
    display: flex;  
    padding: 2px;
    border-radius: 3px;
    overflow: hidden;
    transition: 0.3s ease all;
}
.con-btn:hover {
    transform: scale(0.9);
}
.con-btn a {
    color: var(--text-color);
    line-height: unset;
    background: transparent;
    padding: 8px 1.5rem;
    font-weight: 500;
    border-radius: 2px;
    border: 1px solid var(--primary-color);
}

/* -----------------------
BANNER CSS
--------------------------*/
section.banner-bg {
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 150px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.social-icons {
    display: flex;
    align-items: center;
    writing-mode: vertical-rl;
    gap: 45px;
    position: absolute;
    left: 30px;
    top: 39%;
}
.social-icons .title-icons {
    margin-bottom: 0;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    transform: rotate(180deg);
    position: relative;
}
.social-icons .title-icons::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -31px;
    width: 2px;
    height: 20px;
    background: #fff;
}
.social-icons .list-wrap {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 17px;
}
.social-icons .list-wrap ul li {
    margin-right: 10px !important;
}
.social-icons .list-wrap li a {
    color: #fff;
    transform: rotate(-90deg);
    display: block;
}
.social-icons ul {
    padding-left: 0;
}
.content h6, i {
    color: #FFF;
    margin-left: 15px;
}
.heading h1 span {
    color: var(--primary-color);
}
.heading h4 {
    color: var(--text-color);
}
.heading h1 {
    font-size: 80px;
    font-weight: 900;
    color: #FFF;
}
.content {
    display: flex;
}
i {
 color: var(--primary-color);
}
.point {
    padding: 25px 0 ;
}
.point ul{
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-left: 0%;
}
.point li {
    font-size: 20px;
    color: var(--text-color);
}
.btn-1 a {
    color: var(--text-color);
    padding: 15px 10px;
    border-radius: 5px;
    background-color: var(--primary-color);
    transition: .5s;
}
.btn-1 a:hover {
    color: #000;
    background-color: var(--text-color);
}


/* -----------------------
ABOUT CSS
--------------------------*/
.about-con h4 {
    font-size: 35px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    overflow: hidden;
}
.about-con h4::after {
    content: "";
    display: block;
    height: 3px;
    background: var(--primary-color);
    width: 0;
    margin: 10px auto 0;
    animation: underlineGrow 1s ease-out forwards;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}
.about-con h4 span {
    color: var(--primary-color);
}
.about-con p {
    color: var(--text-color);
    font-size: 18px;
}
.about-con li {
    font-size: 20px;
    color: var(--text-color);
    padding: 5px;
}
.about-img img{
    border-radius: 0 20px 0 20px;
}
.about-img {
    padding: 20px;
}

/* -----------------------
EXPERTIES CSS
--------------------------*/
#experties {
    margin-bottom: 80px;
}
 .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 7px;
    padding: 25px 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.card h2::after {
    display: block;
    margin-top: 0.5em; 
    content: '';
    border-bottom: 1px solid #ffffff4a;
}
.card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 17px;
}
.card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.button {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}



/* -----------------------
TESTONMIALS CSS
--------------------------*/
.testimonial-section {
    padding: 30px 0;
}
.testimonial-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.testimonial-name {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 5px;
    color: var(--text-color);
}
.testimonial-role {
    font-size: 15px;
    color: #c6c6c6;
    margin-bottom: 15px;
}
.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-color);
}
.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
}




/* -----------------------
TESTONMIALS CSS
--------------------------*/
.sec-pad {
  padding: 60px 0 0;
  margin: 50px 0;
}
.contact-sec {
  align-items: center;
  display: flex;
}
.contact-sec .contact-ul li,
.contact-ul b {
  font-size: 20px;
  margin: 10px 0;
}
.contact-sec .contact-ul i {
  font-size: 18px;
  padding: 10px;
  margin-right: 10px;
  border-radius: 50%;
}
.contact-detail span {
  width: 400px;
  display: flex;
  justify-content: center;
}
.contact-detail span a {
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 50%;
  margin: 0px 5px;
}
.inptFld {
  width: 100%;
  height: 40px;
  border: 0;
  margin: 0 0 20px;
  border-radius: 3px;
  padding: 0 20px;
  font-size: 16px;
  color: #000;
}
.inptFld:focus {
  outline: 1px solid var(--primary-color);
}
.contFrm textarea {
  height: 75px;
  padding-top: 5px;
}
.inptBtn {
  height: 50px;
  border: 0;
  background: #00b055;
  font-size: 14px;
  color: #fff;
  margin: auto;
  letter-spacing: 1px;
  cursor: pointer;
  width: 100%;
  max-width: 150px;
}

@media (max-width: 991px) {
  .sec-pad {
    padding: 20px 0 0px;
  }

  .contact-sec .contact-ul li,
  .contact-ul b {
    font-size: 16px;
  }

  .contact-sec .contact-ul i {
    font-size: 14px;
    padding: 6px;
    margin-right: 6px;
  }

  .inptFld {
    height: 40px;
    margin: 0 0 10px;
    padding: 0 14px;
    font-size: 14px;
  }
}



/* -----------------------
MEDIA QUERY // Small devices (landscape phones, 576px and up)
--------------------------*/
@media (max-width: 576px) { 
    .header-topbar {
        display: none;
    }
    section.banner-bg {
        min-height: 400px;
        padding: 80px 0 0;
    }
    .heading h1 {
        font-size: 35px;
    }
    .heading h4 {
        font-size: 15px;
    }
    .social-icons {
        display: none;
    }
    .point ul {
        flex-direction: column;
    }
    .about-img img {
        width: 300px;
    }   
    ol, ul {
        padding-left: 0;
    }
    .sec-pad {
        padding: 20px 40px;
    }
}

/* -----------------------
MEDIA QUERY // Medium devices (tablets, 768px and up)
--------------------------*/
@media only screen and (min-width: 426px) and (max-width: 768px) {

}