:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

.top-bar{
    background-color: #FF6F0F;
}

a{
    text-decoration: none;
}


.btn-square {
    width: 32px;
    height: 32px;
}


.btn-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;

}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}



/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/

button.navbar-toggler{
    color: #FF6F0F !important;
    
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: black;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
    text-transform: uppercase;

}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;

}

.navbar-light .navbar-brand img {
    max-height: 100px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #FF6F0F !important;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid red;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #FF6F0F;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: transparent;
    color: transparent;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: transparent;
    color: transparent;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: none;
    color: transparent;
}

/* Default Carousel Styling */
.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust height dynamically */
    display: block;
    object-fit: cover;
    transition: 0.5s;
}

/* Adjust for small screens */
@media (max-width: 768px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 50vh; /* Reduce height on small screens */
    }

    .header-carousel .carousel-caption {
        padding: 40px 0;
    }

    .header-carousel .carousel-caption h1,
    .header-carousel .carousel-caption h2 {
        font-size: 5vw !important; /* Responsive font sizes */
    }

    .header-carousel .carousel-caption p {
        font-size: 3.5vw !important;
    }
}

/* Adjustments for extra small screens */
@media (max-width: 576px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 40vh;
    }

    .header-carousel .carousel-caption {
        padding: 20px 0;
        /* background: rgba(0, 0, 0, 0.6);  */
    }

    .header-carousel .carousel-caption h1,
    .header-carousel .carousel-caption h2 {
        font-size: 6vw;
    }

    .header-carousel .carousel-caption p {
        font-size: 4vw;
    }
}

/* Adjust for large screens */
@media (min-width: 1200px) {
    .header-carousel .header-carousel-item {
        height: 100vh;
    }

    .header-carousel .carousel-caption {
        padding: 120px 0;
    }

    .header-carousel .carousel-caption h1 {
        font-size: 3vw;
    }

    .header-carousel .carousel-caption p {
        font-size: 1.5vw;
    }
}





.rounded-pill {
    background-color: var(--primary);
    color: #F5F5F7;
}


.container-xxl .container{
    width: 100%;
}


/* .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
} */

.back-to-top {
    display: none;
     position: fixed; 
     bottom: 20px;
      right: 20px;
       z-index: 99;
} 

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
   }

/* 
p{
    font-family: "Poppins", serif;
  font-style: normal;
} */


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}
.btn-secondary{
    background-color: #7D0A0A;
    color: #ffff !important;
    border: none;
}

.btn-secondary:hover{
    background-color: #FF6F0F;
    color: #ffff !important;
    border: none !important;
}

.btn-primary {
  background: transparent;
  -moz-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
  border-color: #FF6F0F;
  color: #FF6F0F;
}
.btn-outline-primary{
    background-color: transparent;
    border-color: #FF6F0F;
    color: #FF6F0F;
}
.btn-primary:hover{
    background-color: black;
    border: none;
    color: white !important;
}
.btn-outline-primary:hover{
    background-color: black;
    border: none;
}

/* .btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: #FF6F0F;
} */

.btn-square {
    width: 38px;
    height: 38px;
    color: white;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    background-color: #FF6F0F;
}

/* .btn-sm-square:hover{
    background-color: #001D23;
} */

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}




/* About us section */

.about-heading {
    display: inline-block;
}

.lighter-font {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: lighter;
    font-style:normal;
  }
  .light-font {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: var(--light);
    font-style:normal;
  }
  
  p {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
  }

  /* Ensure images resize properly */
.img-fluid {
    max-width: 100%;
    height: auto;
}

 /* Ensuring the overlapping squares are contained within a specific class */
 .squares-container {
    position: relative;
    width: 300px; /* Increased container size */
    height: 300px; /* Increased container size */
    margin: 0 auto; /* Centers the container */
}

/* Styling each square individually */
.square {
    position: absolute;
    width: 150px; /* Increased square size */
    height: 150px; /* Increased square size */
    border: 2px solid #690B22;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensures content doesn't overflow outside the square */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Added a larger shadow */
}

/* Adjustments for the image inside each square */
.square img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the square without distortion */
    object-position: center; /* Ensures the center of the image is prioritized */
}

.square:nth-child(1) {
    top: 0;
    left: 30px; /* Adjusted for the new size */
    transform: rotate(-10deg);
}

.square:nth-child(2) {
    top: 75px; /* Adjusted for the new size */
    left: 75px; /* Adjusted for the new size */
    transform: rotate(15deg);
}

.square:nth-child(3) {
    top: 150px; /* Adjusted for the new size */
    left: 0;
    transform: rotate(-15deg);
}

.square:nth-child(4) {
    top: 125px; /* Adjusted for the new size */
    left: 125px; /* Adjusted for the new size */
    transform: rotate(5deg);
}

/* Reduce icon size for smaller screens */
@media (max-width: 768px) {
    .icon-overlay {
        width: 60px;
    }
}

@media (max-width: 576px) {
    .icon-overlay {
        width: 50px;
    }
}



#stc-izaka {
    /* background-color: #F0BB78; */
    padding: 10px 0;
}

.stc-learn-bg{
    background-color: white;
}


/*** Service ***/

#stc-mission{
    background-color: #F5F7F8;
    padding-bottom: 0;
}

.service-item {
    box-shadow: 0 0 45px #EAE2C6;
    background-color: red;
}
.service-item .img-fluid{
    width: 80px;
}



.btn-link{
    text-decoration: none;
}

/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;

}

.footer .btn.btn-link::before {
    position: relative;
    /* content: "\f105"; */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.footer-small-p{
    font-size: 11px;
    margin-top: 0;
}

/* booking */

/* .form-container {
    max-width: 600px;
    margin: auto;
    background: #F5F5F7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
 */

.btn-orange {
    background-color: rgba(5, 5, 5, 0.103);
    border: none;
    color: black;
}
.btn-orange:hover {
    background-color: black;
    color: white;
}


footer{
    margin-top: 0;
}

.proudly-p{
    display: inline;
    font-size: 9px;
}



/* FAQ SECTION */


  /*--------------------------------------------------------------
  # Faq Section
  --------------------------------------------------------------*/

  .section{
    padding: 30px 5px;
    background-color: #F6F5F5;
  }
  .faq .content h3 {
    font-weight: 400;
    font-size: 34px;
  }
  
  .faq .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
  }
  
  .faq .faq-container {
    margin-top: 15px;
  }

  .faq-item h3{
    color: #FF6F0F;
  }
  
  .faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
  }
  
  .faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    margin: 0 30px 0 32px;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .faq .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
  }
  
  .faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  
  .faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 22px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-active h3 {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
  }
  
  .faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
  }

  .faq-icon, .faq-active h3 {
    color: #FF6F0F !important; /* Override any Bootstrap color settings */
}


 /*--------------------------------------------------------------
  # Faq Section Ends here
  --------------------------------------------------------------*/




/*** call to action ***/


.calltoaction {
    background-image: url(../assets/images/izaka.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: orange;
    height: 50vh;
    animation: bounce 3s ease-in-out infinite; 
  }

  .btn-contact{
    background-color: black;
    border: none;
    color: white !important;
  }

  .btn-contact:hover{
    background-color: white;
    border: none;
    color: black !important;
  }

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}



/* yellow section in home page */

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
#about-container { 
    background-color: #FFB200;
    padding: 40px 0;
 }

 @media (max-width: 990px) {
    #about {
        margin-top: 5px;
    }

}

.blue { background-color: #3483cb; }
.green { background-color: #7cc576; }
.orange { background-color: #df6c29; }
.red { background-color: #E52020; }
.col p{
    color: white;
}









  