/********** Template CSS **********/
/* Golden-based color palette */
:root {
    --primary: #a7e2d7; /* Rich Gold */
    --secondary: #1F1F1F; /* Deep Black */
    --light: #ebece7; /* Warm Ivory */
    --dark: #000000; /* Dark Slate */
    --accent: #a7e2d7; /* Burnt Sienna */
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    background: linear-gradient(135deg, var(--accent), var(--accent));
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/*** 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;
}

/*** Typography ***/
body, p, a, span, li {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
}

.tagline {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
}

.custom_action_btn
{
    margin-left: 10px;
}
/*** Button ***/
#btn-sm{
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 10px;
    border-radius: .2rem;
    color: #000000;
    background: linear-gradient(135deg, var(--accent), var(--accent));
    border:none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
#btn-sm:hover{
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}
@media screen and (max-width: 450px) {
    #btn-sm {
        padding: 15px 20px;
    }
    .custom_action_btn
    {
        margin-left: 0px;
        margin-top: 10px;
    }
    
}


.btn {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    transition: all .3s ease;
    border-radius: 8px;
    padding: 10px 20px;
}


.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #000000;
    background: linear-gradient(135deg, var(--accent), var(--accent));
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-square {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: 0;
    transition: all .5s ease;
    background: var(--light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    height: 60px;
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    width: 100px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 15px;
    padding: 20px 15px;
    color: var(--dark);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all .3s ease;

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    content: "\f078"; /* Font Awesome chevron-down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: var(--primary);
    margin-left: 6px;
    vertical-align: middle;
    transition: transform .3s ease, color .3s ease;
    border: none;
}

.navbar .dropdown-toggle:hover::after {
    color: var(--accent);
    transform: rotate(180deg);
}

.con_btn {
    background: linear-gradient(135deg, var(--accent), var(--accent));
    border-radius: 8px;
    padding: 10px 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    visibility: visible;
}

.con_btn a {
    color: #fff !important;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
        font-size: 16px;
    }

    .navbar .navbar-nav {
        background: #fff;
    }

    .navbar .navbar-brand img {
        width: 60px !important;
    }

    .navbar .tagline {
        font-size: 12px;
    }

    .navbar .navbar-brand {
        height: 50px;
    }

    .desk {
        display: none;
    }

    .mob {
        display: block !important;
    }

    .navbar .dropdown-toggle::after {
        font-size: 14px;
        margin-left: 8px;
    }
}

@media (min-width: 992px) {
    /*** Navbar ***/
    .navbar.sticky-top {
        height: 90px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease;
        background: var(--light);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 6px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .mob {
        display: none;
    }
}

@media (max-width: 600px) {
    .navbar .con_btn {
        padding: 8px 12px !important;
        font-size: 13px;
    }

    .navbar .dropdown-toggle::after {
        font-size: 12px;
        margin-left: 6px;
    }
}

/*** Header ***/
.carousel-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgb(4 4 4 / 43%), rgba(44, 47, 58, 0.85));
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    z-index: 2;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background: var(--primary) !important;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none !important;
    position: relative;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    position: absolute;
}

.carousel-control-prev-icon::before {
    content: "\f053";
}

.carousel-control-next-icon::before {
    content: "\f054";
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        min-height: 400px;
    }

    #header-carousel .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-caption h1 {
        font-size: 24px;
        margin-bottom: 10px !important;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .carousel-caption .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }

    .carousel-control-prev-icon::before,
    .carousel-control-next-icon::before {
        font-size: 16px;
    }
}

/*** Facts Section ***/
.facts {
    background: var(--light);
}

.fact-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.fact-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.fact-item i {
    color: var(--primary);
    margin-bottom: 15px;
}

.fact-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.fact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .fact-item {
        padding: 15px;
    }

    .fact-item i {
        font-size: 2rem;
    }

    .fact-item h5 {
        font-size: 18px;
    }

    .fact-item p {
        font-size: 14px;
    }
}

/*** Products ***/
.courses {
    background: linear-gradient(rgba(159, 209, 211, 0.719), rgba(159, 209, 211, 0.719)), url('../img/slider/parallax.png') center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 47, 58, 0.7);
    overflow: hidden;
    opacity: 0;
    transition: all .3s ease;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}

@media (max-width: 768px) {
    .courses-item {
        margin-bottom: 20px;
    }

    .courses-item h5 {
        font-size: 18px;
    }

    .courses-item p {
        font-size: 14px;
    }
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 50%;
    transition: all .3s ease;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    height: 15px;
    background: var(--accent);
    border-radius: 8px;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    border: 3px solid var(--light);
}

@media (max-width: 768px) {
    .testimonial-item img {
        width: 80px !important;
        height: 80px !important;
    }

    .testimonial-item p {
        font-size: 14px;
    }

    .testimonial-item h5 {
        font-size: 16px;
    }
}

/*** Footer ***/
.footer {
    background: linear-gradient(to right, rgba(159, 209, 211, 0.719), rgba(159, 209, 211, 0.719)), url('../img/slider/parallax.png');
    padding: 30px 0;
}

.footer .para {
    color: var(--dark);
    font-size: 14px;
    line-height: 1.6;
}

.footer .foot_logo img {
    width: 250px;
}

.footer .foot_para h4 {
    color: var(--dark);
    font-size: 20px;
}

.foot-list {
    padding: 0;
    list-style: none;
}

.foot-list li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin: 8px 0;
    transition: all .3s ease;
}

.foot-list li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.foot-list li a i {
    color: var(--secondary);
    margin-right: 8px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icons a {
    color: var(--dark);
    border-color: var(--secondary);
    width: 32px;
    height: 32px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--light);
}

.rights {
    border-top: 1px solid var(--secondary);
    padding-top: 10px;
}

.last {
    font-size: 12px;
    color: var(--dark);
}

@media (max-width: 768px) {
    .footer .foot_logo img {
        width: 200px;
    }

    .footer .foot_para h4 {
        font-size: 18px;
    }

    .foot-list li a {
        font-size: 13px;
    }

    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Topbar */
.top {
    background: var(--secondary);
    border-bottom: 1px solid var(--light);
    padding: 10px 0;
}

.rt-items a {
    color: var(--light);
    font-size: 12px;
    font-weight: 500;
    line-height: 30px;
    margin: 0 10px;
}

.rt-items a i {
    color: var(--primary);
    margin-right: 5px;
}

.lft-items a {
    color: var(--light);
    font-size: 12px;
    margin: 0 10px;
    line-height: 30px;
}

@media (max-width: 600px) {
    .rt-items a,
    .lft-items a {
        font-size: 11px;
        margin: 0 5px;
    }

    .rt-items,
    .lft-items {
        text-align: center !important;
    }
}

/* Custom Responsive Adjustments */
@media (max-width: 768px) {
    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .my-6 {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    h1.display-6 {
        font-size: 24px;
    }

    h6.text-uppercase {
        font-size: 14px;
    }
}
.about-header {
    background: linear-gradient(rgba(159, 209, 211, 0.719), rgba(159, 209, 211, 0.719)), url('../img/slider/parallax.png') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.about-header h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-header p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.lead
{
    font-size: 18px;
    color: #000000;
}



/*====== sticky icons css=======================*/

        .icon-bar1 {
			position: fixed;
			top: 50%;
			z-index: 999;
			right: 0px;
			-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
			transform: translateY(-50%);
		}

		.icon-bar1 a {
			display: block;
			text-align: center;
			padding: 12px;
			transition: all 0.3s ease;
			color: white;
			font-size: 16px;
		}

		.icon-bar1 a:hover {
			background-color: #000;
			background: rgb(0,0,0);
			background: linear-gradient(152deg, rgba(0,0,0,1) 100%, rgba(255,255,255,1) 100%, rgba(234,108,67,1) 100%, rgba(246,211,157,1) 100%);
		}

		.facebook {
			background: #3B5998;
			color: white;
		}
		.instagram {
			background: rgb(255,255,255);
			background: linear-gradient(152deg, rgba(255,255,255,1) 0%, rgba(103,83,196,1) 0%, rgba(234,108,67,1) 61%, rgba(246,211,157,1) 100%);
			
			color: white;
		}
		.youtube {
			background: #FF0000;
			color: white;
		}
		.twitter {
			background: #55ACEE;
			color: white;
		}
		.google {
			background: #dd4b39;
			color: white;
		}

		.linkedin {
			background: #007bb5;
			color: white;
		}

		.whatsapp {
			background: #06b303;
			color: white;
		}

        