@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');




/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #242424;
	--secondary-color		: #199ad6;
	--text-color			: #898989;
	--arrow-color			: #dcc77e;
	--accent-color			: #214094;
	--white-color			: #FFFFFF;
	--divider-color			: #EAEAEA;
	--dark-divider-color	: #FFFFFF1A;
	--btn-color			: #FFFFFFCC;
	--btn6-color			: #efb708;
	--btn1-color			: #a78b76;
	--othr-color			: #612e11;
	--default-font			: "Inter", sans-serif;
	--accent-font			: "Onest", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
    font-size: 20px;
}

html{
    font-size: 100%;
}

p{
	line-height: 1.8em;
	margin-bottom: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

/* img{
	max-width: 100%;
} */

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

/* .container{
	max-width: 1320px;
} */



.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    /* visibility: hidden; */
    overflow: hidden;
}
.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
    transition: transform 1s ease-out, visibility 0s 0s; 
    transform: translateX(-100%);
}

/* Class to trigger reveal animation */
.reveal.show img {
    transform: translateX(0); /* Move to normal position */
    visibility: visible;
}
.dropdown-item{
  text-transform: capitalize !important;
}

.header1{
    width: 100%;
    height: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 4;
    border-bottom: 1px solid #ffffff72;
}
header {
    /* position: fixed; */
    width: 100%;
    z-index: 999;
    top: 0;
    /* background-color: rgba(0, 0, 0, 0.9); */
}
  
header.sticky {
  background-color: rgba(0, 0, 0, 0.9);
  transition: 0.3s ease;
}
  
  .navbar-expand-lg .navbar-collapse {
    justify-content: end !important;
  }
  .logo{
    color: #fff;
  }
  
  .logo img {
    width: 100px;
    height: auto;
  }
  
  .navbar-light .navbar-nav .nav-link {
    /* font-family: "Khand", Sans-serif !important; */
    font-size: 85% !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    color: var(--accent-color) !important;
    padding-right: 0rem !important;
    padding-left: 0rem !important;
    margin-right: 1.2rem !important;
    margin-left: 1.2rem !important;
    font-family: "Inter", serif !important;
  }
  
  .rg-no p {
    /* font-family: "Khand", Sans-serif ; */
    font-size: 75%;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-color);
  }
  
  /* .head{
      height: 70px;
  } */

  
  #primary li {
    position: relative;
  }
  
  #primary li a {
    /* text-decoration: none; */
    /* padding: 5px 0; */
    /* font-family: "Khand", Sans-serif ; */
    /* font-size: 80%; */
    position: relative;
    z-index: 1;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    /* background-image: linear-gradient(   #204a63 100%); */
    /* background-size: 200% 100%;
      background-position: -100%;
      transition: all 0.3s ease-in-out; */
  }
  
  #primary li a:before {
    content: "";
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 0;
    bottom: -5px;
    z-index: 0;
    position: absolute;
    background: var(--accent-color);
    transition: all 0.3s ease-in-out;
  }
  
  #primary li a:hover {
    background-position: 0%;
  }
  
  #primary li a:hover:before {
    width: 100%;
  }
  
  /* Show dropdown menu on hover */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  
  }

  .btn-don{
    margin-left: 20px;
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--btn-color);
    font-size: 16px;
    font-weight: 500;
    font-family: "Cinzel", serif;
    padding: 0.45em 0.85em;
    /* margin: 1rem; */
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer; /* Add pointer cursor for button hover */
    border-radius: 30px;
  
  }
  .btn-don:hover{
    background-color: #612e11;
  }
  .ban{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .ban-sec {
    width: 100%;
    height: 100%;
    background-image:url(../img/KAS_article_hero_images_1_mhnx22.avif);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    z-index: 1;
    /* animation: zoomEffect 20s linear infinite alternate; */
  }
  .ban-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* dark overlay */
    z-index: 2;
  }
  
  .ban-sec > * {
    position: relative;
    z-index: 3; /* content above overlay */
  }
  .mt-sec{
    margin-top: 50px;
  }
    .heading-bn{
    font-size: 49px !important;
    line-height: 53px !important;
    color: var(--white-color);
    font-weight: 500 !important;
    font-family: "Cinzel", serif;
    padding-top: 10px !important;
  }

    .para-bn{
    font-size: 95% !important;
    color: var(--white-color);
    font-weight: 400 !important;
    font-family: "Inter", serif;
    padding-top: 10px !important;
    /* padding-bottom: 15px !important; */
    text-align: left;
    }
    .btn1 {
        position: relative;
        padding: 12px 40px;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        background: transparent;
        border: 2px solid var(--btn-color);
        border-radius: 25px 0px 25px 0px;
        cursor: pointer;
        overflow: hidden;
        z-index: 1;
        transition: color 0.4s ease;
        margin-top: 30px;
    }

  .btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #1d95d3, #1d95d3);
    z-index: -1;
    transition: left 0.4s ease;
  }

  .btn1:hover::before {
    left: 0;
  }

  .btn1:hover {
    color: var(--white-color);
    /* box-shadow: 0 0 5px #ff1f59, 0 0 8px #ff1f59; */
  }
  .card{
    padding: 20px !important;
  }

  .btn2 {
    position: relative;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 25px 0px 25px 0px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    margin-top: 25px;
  }

  .btn2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #1d95d3, #1d95d3);
    z-index: -1;
    transition: left 0.4s ease;
  }

  .btn2:hover::before {
    left: 0;
  }

  .btn2:hover {
    border: 2px solid var(--accent-color);
    color: var(--white-color);
    /* box-shadow: 0 0 5px #a78b76, 0 0 8px #612e11; */
  }
  .form-label{
  color: var(--accent-color);
  font-size: 105%;
  font-weight: 500;
  font-family: "Inter", serif;
}
.form-control{
  padding: .55rem .55rem !important;
  border: 1px solid var(--secondary-color) !important;
}
.form-select{
  padding: .75rem .75rem !important;
  border: 1px solid var(--accent-color) !important;
}
.form-control:focus{
  box-shadow: none !important;
}
.ban1{
    width: 100%;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--accent-color);
}
.sub-txt{
    font-size: 120%;
    color: var(--white-color);
    font-weight: 600;
    font-family: "Cinzel", serif;
}
    .countdown {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-top: 25px;
    }
    .time-card {
        background: var(--second-col);
        color: white;
        font-size: 200%;
        font-weight: bold;
        padding: 15px;
        border-radius: 10px;
        min-width: 80px;
        text-align: center;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        font-family: "Cinzel", serif;
    }
    .label1 {
        font-size: 70%;
        font-weight: normal;
        /* margin-top: 5px; */
        display: block;
        color: #fff;
        /* font-family: "Montserrat", sans-serif; */
        font-family: "Poppins", sans-serif;
    }

    .ban2{
        width: 100%;
        height: auto;
        margin-top: 60px;
    }
    .title{
    font-size: 43px;
    line-height: 53px;
    color: var(--primary-color);
    font-weight: 500;
    font-family: "Cinzel", serif;
  }
  .title span{
    color: var(--accent-color);
  }
  .para{
    font-size: 95% !important;
    color: var(--primary-color);
    font-weight: 400 !important;
    font-family: "Inter", serif;
    padding-top: 10px !important;
    /* padding-bottom: 15px !important; */
    text-align: left;
  }
  .ban2-ul li{
    font-size: 95% !important;
    color: var(--primary-color);
    font-weight: 400 !important;
    font-family: "Inter", serif;
  }
  .ban3{
    width: 100%;
    height: auto;
    margin-top: 60px;
    position: relative;
  }
  .ban3-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 30px;
  }
      .course-card {
        border: 1px solid #ddd;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        font-family: Arial, sans-serif;
        background-color: #fff;
        transition: box-shadow 0.3s ease;
        padding: 12px;
        position: relative;
    }
        .course-card:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        border: none;
        }

    .course-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      position: relative;
    }

    .course-content {
      padding: 16px;
    }

    .course-title {
      font-size: 20px;
      font-weight: bold;
      margin: 0 0 20px;
      color: #333;
      margin-top: 20px;
      font-family: "Cinzel", serif;
    }

    .course-description {
      font-size: 14px;
      color: #555;
      margin-bottom: 12px;
      /* padding-top: 20px; */
      font-family: "Inter", serif;
    }

    .course-rating {
      color: #f5a623;
      font-size: 16px;
      /* margin-bottom: 12px; */
    }


    .course-price {
      font-size: 120%;
      font-weight: bold;
      color: var(--white-color);
      background-color: var(--accent-color);
      padding: 6px 20px;
      border-radius: 6px;
      position: absolute;
      top: 50%;
      left: 83%;
      transform: translate(-50%, -50%);
    }

    .course-language {
      font-size: 85%;
      background-color: #e6f0ff;
      color: var(--primary-color);
      padding: 6px 24px;
      border-radius: 20px;
    }
    .mid{
        width: 100%;
        height: auto;
        margin-top: 60px;
    }
    .mid-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 25px;
        margin-top: 30px; 
    }
    .card1 {
    width: 100%;
    height: auto;
    padding: 15px;
    border-radius: 12px;
    transition: background-color 0.3s ease; /* Smooth transition added */
    }

    .card1:hover {
    background-color: var(--secondary-color);
    }
    .card1:hover .sub-txt1{
        color: var(--white-color);
    }
    .card1:hover .cour{
        color: var(--white-color);
    }
    .card1:hover .para{
        color: var(--white-color);
    }
    .card1:hover .icn-box{
       background-color: var(--white-color);
       color: var(--accent-color);
    } 
    .grid-it{
        display: flex;
        justify-content: start;
    }
    .icn-box{
        width: 100%;
        max-width: 80px;
        height: 80px;
        line-height: 80px;
        /* background-color: #efb708; */
        background-color: var(--accent-color);
        border-radius: 50%;
        align-items: center;
        text-align: center;
        font-size: 30px;
        color: var(--white-color);
    }
    .icn-box img{
        width: 50px;
        height: auto;
    }
    .sub-txt1{
    font-size: 20px;
      font-weight: bold;
      margin: 0 0 5px;
      color: #333;
      margin-top: 20px;
      font-family: "Cinzel", serif;
    }
    .txt{
        margin-left: 20px;
    }
    .cour {
      font-size: 14px;
      color: #555;
      font-family: "Inter", serif;
    }

    .mid1{
        width: 100%;
        height: auto;
        margin-top: 60px;
        background-color: var(--accent-color);
        padding: 60px 0px 60px 0px;
    }

    .box-wraper.center {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.icon-content {
    border-left: 2px solid #fff;
    padding-right: 20px;
}
p.comapny-para{
    padding-left: 20px;
    font-size: 130%;
    color: var(--white-color);
    font-family: "Inter", serif;
    font-weight: 500;
}
h2.company-num.counter{
    font-size: 370%;
    color: var(--white-color);
    font-weight: 700;
    font-family: "Cinzel", serif;
}


 /* testi */

 .testi {
    width: 100%;
    height: auto;
    /* margin-top: 80px; */
    background-color: #f2f5f6;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .test-sec{
    width: 100%;
    height: auto;
    padding: 15px;
    background-color: var(--white-color);
    border-radius: 6px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* ✅ Soft shadow */
    transition: box-shadow 0.3s ease; /* ✅ Smooth transition if needed */
  }
  

  .test-mg{
    width: 65px !important;
    height: 65px !important;
    border-radius: 50%;
  }
  .testi-txt{
    color: var(--primary-color);
    padding-top: 10px;
    font-weight: 500;
    font-size: 18px;
  }
  .ivt{
    color: var(--primary-color);
    font-size: 24px;
    /* padding-right: 15px; */
  }
  .txt-uy{
    text-align: left;
    font-size: 16px;
  }
  .flt{
    float: right;
    padding-right: 20px;
  }

  .mid2{
    width: 100%;
    height: auto;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .img-fluid{
    width: 100%;
  }
  .mid3{
    width: 100%;
    height: auto;
    /* background-color: var(--accent-color); */
    background-color: #f2f5f6;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mid3-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px;
    margin-top: 30px; 
  }
  .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 47.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrapper video {
  width: 100%;
  height: 300px;
  object-fit: contain; /* no crop */
  background-color: #000; /* optional fallback */
}
footer{
    width: 100%;
    height: auto;
    padding-top: 60px;
    /* padding-bottom: 60px; */
    background-color: var(--divider-color);
}
.footer-links li {
    width: auto !important;
    display: flex !important;
    vertical-align: top;
    clear: none !important;
    font-size: 1.05rem;
    margin: 0 0 9px 0;
    padding: 0;
    color: var(--primary-color);
}
.footer-links li a{
    color: var(--primary-color);
    font-size: 95%;
    line-height: 30px !important;
    margin-right: 22px;
    display: flex;
    text-decoration: none;
}
.footer-links li a:hover{
    color: var(--secondary-color);
}
.black{
  color: var(--accent-color);
}
ul.foo-links.clearfix {
    padding-left: 0px;
}





.bottom-footer {
    border-top: 1px solid var(--accent-color);
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.bottom-footer-list p {
    font-size: 1rem;
    width: auto !important;
    /* display: inline-block !important; */
    vertical-align: top;
    clear: none !important;
    margin: 0 9px 5px 0;
    padding: 0;
    text-align: end;
    color: var(--accent-color);
}
.bottom-footer-list li a {
    color: #333;
    text-decoration: none;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.bottom-footer-list li a{
    color: var(--accent-color);
}
.foo-socials {
    display: flex;
    padding-left: 0;
    /* margin: 10px auto 0; */
    align-items: end;
    margin-bottom: 0px;
}
.foo-socials li {
    /* width: auto !important;
    display: inline-block !important;
    vertical-align: top;
    clear: none !important;
    margin: 0;
    padding: 0; */
      display: flex;
    margin: auto;
    justify-content: center;
   align-items: center;
}
.foo-socials a {
    color: var(--accent-color);
    font-size: 1rem;
    line-height: 30px !important;
    margin-right: 22px;
    display: block;
    
}
.foo-socials a:hover{
    color: var(--secondary-color);
}