:root {
    --primary: #00ADEF;
    --secondary: #0A1C2E;
    --dark: #1A1A1A3;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}


.text-primary {
    color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Topbar */
.topbar {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.topbar .social-info a {
    color: var(--white);
    margin-left: 15px;
    transition: var(--transition);
}

.topbar .social-info a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .nav-link {
    color: var(--secondary);
    font-weight: 500;
    padding: 10px 15px !important;
    transition: var(--transition);
}

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

/* Hero Slider */
.hero-slider {
    height: 90vh;
    width: 100%;
}

.hero-item {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.tracking-wider {
    letter-spacing: 2px;
}

/* About Section Refinement */
.clip-top-right {
    clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 0 100%);
    object-fit: cover;
    height: 100%;
}

.clip-top-right-large {
    clip-path: polygon(0 0, 75% 0, 100% 25%, 100% 100%, 0 100%);
    object-fit: cover;
    height: 100%;
}

.op-25 {
    opacity: 0.25;
}

.op-50 {
    opacity: 0.50;
}

.op-75 {
    opacity: 0.75;
}

.arrows i {
    font-size: 1.5rem;
    margin-right: -12px;
}

.about-section .display-4 {
    line-height: 1.2;
}

.about-text p {
    font-size: 1rem;
    text-align: justify;
}

.fa-arrow-up-right {
    transform: rotate(45deg);
}

/* Feature Cards */
.feature-card {
    transition: var(--transition);
    height: 100%;
    min-height: 120px;
}

.white-card {
    background: #e5e5e5;
    border-radius: 10px 0 10px 10px;
    clip-path: polygon(0 0, 85% 0, 100% 40%, 100% 100%, 0 100%);
}

.black-card {
    background: #222;
    border-radius: 10px 0 10px 10px;
    clip-path: polygon(0 0, 85% 0, 100% 35%, 100% 100%, 0 100%);
}

.feature-icon i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: inline-block;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #252525;
}

.feature-card:hover .feature-icon i{
	color: var(--white) !important;
}


.feature-card:hover .feature-text h5{
	color: var(--white);
}

#why-choose .display-5 {
    line-height: 1.2;
}

/* Services Section Refinement */
.services-section {
width: 100%;
	background: var(--primary);
	position: relative;
}

.service-details-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.services-full-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/services-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* .services-overlay-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    clip-path: polygon(0 0, 65% 0, 45% 100%, 0 100%);
    z-index: 1;
    opacity: 0.95;
} */

.z-index-1 {
    position: relative;
    z-index: 2;
}

.serv-card {
    transition: var(--transition);
    border-radius: 5px;
    background: var(--white);
    color: var(--dark);
    /* clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%); */
}

.serv-card.dark-serv {
    background: #252525;
    color: var(--white);
}

.serv-card:hover {
    transform: translateX(10px);
}

.chev-double {
    display: flex;
    font-size: 2rem;
}

.chev-double i:last-child {
    margin-left: -5px;
}

.serv-info h6 {
    font-size: 22px;
}

/* .image-slashes {
    position: absolute;
    top: 25%;
    left: 60%;
    transform: rotate(-15deg);
    display: flex;
    z-index: 2;
} */

.image-slashes span {
    width: 30px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    margin-right: 8px;
    display: block;
}

/* Pricing Section */
.pricing-section {
    background: #fdfdfd;
}

.pricing-card {
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border-top: 5px solid transparent;
}

.pricing-card.featured {
    background: var(--primary);
    color: var(--white);
/*     transform: scale(1.05); */
    z-index: 2;
    border-top: none;
}

.price-box {
    padding: 40px 20px;
    text-align: center;
}

.price-box h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0;
}

.price-box span {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-top: -5px;
}

.package-name {
    background: rgba(0, 0, 0, 0.03);
    padding: 20px;
    text-align: center;
}

.featured .package-name {
    background: var(--white);
    color: var(--primary);
}

.package-name h4 {
    margin-bottom: 5px;
    font-weight: 700;
}

.pricing-list {
    padding: 20px 30px;
}

.pricing-list div {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.featured .pricing-list div {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-list div:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 0 30px 40px;
    text-align: center;
}

.featured .btn-white {
    background: var(--white);
    color: var(--primary);
    border: none;
    font-weight: 700;
}

.featured .btn-white:hover {
    background: var(--secondary);
    color: var(--white);
}


/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(0, 173, 239, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Scale up animation for arrows */
.scale-up-long {
    display: inline-block;
    transition: var(--transition);
}

.btn:hover .scale-up-long {
    transform: translateX(5px);
}

/* Location Section */
.location-card {
    background: var(--primary);
    color: var(--white);
    padding: 24px 26px;
    display: flex;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    clip-path: polygon(0 0, 88% 0, 100% 35%, 100% 100%, 0 100%);
    border-radius: 5px;
}

.location-card i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.location-card:hover {
    background: #252525 !important;
    transform: translateY(-5px);
}

/* Scroll Smooth */
html {
    scroll-behavior: smooth;
}

@media (max-width: 991.98px) {
    .hero-slider {
        height: 70vh;
    }

    .display-1 {
        font-size: 3.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-image: linear-gradient(rgb(255 255 255 / 74%), rgb(255 255 255 / 82%)), url(../img/hero.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 5px;
    clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 0 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eee;
}

.testimonial-user h6 {
    font-weight: 700;
}

/* Testimonial Swiper Adjustments */
.testimonial-swiper {
/*     padding-bottom: 50px !important; */
}

.testimonial-swiper .swiper-slide {
    height: auto;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
    opacity: 0.3;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Footer Section Refined */
.footer-main {
    background-image: linear-gradient(rgb(0 173 239 / 94%), rgb(0 173 239 / 84%)), url(../img/hero.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-bottom: 0px !important;
}

.footer-overlay-shapes {
    display: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.social-box {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.social-box:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.footer-links-list li a::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 6px;
    margin-right: 12px;
}

.footer-links-list li a:hover {
    padding-left: 5px;
    opacity: 0.8;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
	justify-content: space-between;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-contact-item i {
    width: 17px;
    font-size: 17px;
    margin-top: 5px;
}

.footer-contact-item div{
	width: calc(100% - 30px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Page Header & Breadcrumb */
.page-header {
    background-size: cover;
    background-position: center center;
    padding: 120px 0 80px;
}

.page-header h1 {
    font-weight: 800;
}

/* Counter Section */
.counter-section {
    background: linear-gradient(rgba(10, 28, 46, 0.9), rgba(10, 28, 46, 0.9)), url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.counter-item i {
    transition: var(--transition);
}

.counter-item:hover i {
    transform: scale(1.1);
}

/* Team Section */
.instructor-card {
    background: var(--white);
    transition: var(--transition);
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.instructor-img-wrapper {
    position: relative;
}

.instructor-img-wrapper img {
    transition: var(--transition);
}

.instructor-card:hover .instructor-img-wrapper img {
    transform: scale(1.1);
}

.instructor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 173, 239, 0.8);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.instructor-card:hover .instructor-overlay {
    opacity: 1;
}

.instructor-info {
    position: relative;
    z-index: 2;
    background: var(--white);
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.instructor-card:hover h5 {
    color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-square:hover {
    background: var(--secondary) !important;
    color: var(--white) !important;
}

/* Modern Service Cards */
.service-card-modern {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-img-holder {
    height: 240px;
    position: relative;
}

.card-img-holder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-modern:hover .card-img-holder img {
    transform: scale(1.1);
}

.service-icon-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    width: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.service-content h4 {
    color: var(--secondary);
    transition: var(--transition);
}

.service-card-modern:hover .service-content h4 {
    color: var(--primary);
}

.read-more-btn {
    text-decoration: none;
    color: var(--secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.read-more-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--primary);
}

.read-more-btn:hover::after {
    width: 100%;
}

.read-more-btn i {
    transition: var(--transition);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Service Details Page */
.service-sidebar-list a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
}

.service-sidebar-list a:hover,
.service-sidebar-list a.active {
    background: var(--primary) !important;
    color: var(--white);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.hotline-icon {
    animation: pulse-primary 2s infinite;
}

@keyframes pulse-primary {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    70% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.form-control:focus,
.form-select:focus {
    color: black !important;
    box-shadow: none;
    border: 1px solid var(--primary) !important;
}
button.accordion-button.collapsed.fw-bold {
    background: #e5e5e5;
}
/* Blog Styles */
.blog-card {
    transition: var(--transition);
    border: none;
}
.instructor-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.blog-img-holder {
    height: 250px;
}

.blog-img-holder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img-holder img {
    transform: scale(1.1);
}

.blog-meta span i {
    font-size: 0.85rem;
}

.blog-content h4 a {
    transition: var(--transition);
}

.blog-card:hover .blog-content h4 a {
    color: var(--primary) !important;
}

.blog-details-content blockquote {
    font-style: italic;
    background: #f8f9fa !important;
}

.recent-post-item img {
    transition: var(--transition);
}

.recent-post-item:hover img {
    transform: scale(1.05);
}

.recent-post-item h6 a:hover {
    color: var(--primary) !important;
}

.pagination .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    color: var(--secondary);
    transition: var(--transition);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination .page-link:hover:not(.active) {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Contact Page Styles */
.contact-info-card {
    transition: var(--transition);
    border: none;
    border-radius: 20px;
    padding: 40px 20px;
    border: 1px solid #00adef;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card.bg-primary {
    background-color: #00adef !important;
    /* Brighter blue to match reference */
    /* box-shadow: 0 15px 40px rgba(0, 115, 255, 0.45) !important; */
}

.contact-icon-box i {
    font-size: 3rem;
    color: var(--primary);
}

.contact-info-card.bg-primary .contact-icon-box i {
    color: var(--white);
}

.contact-form-container {
    background-color: #F8FAFC;
    border-radius: 30px;
    overflow: hidden;
}

.contact-form-container .form-control,
.contact-form-container .form-select {
    border: 1px solid #E2E8F0;
    padding: 18px 25px;
    transition: var(--transition);
    box-shadow: none;
    border-radius: 12px;
}

.contact-form-container .form-control:focus,
.contact-form-container .form-select:focus {
    border-color: var(--primary);
    background-color: var(--white) !important;
    color: var(--dark) !important;
}

.contact-form-container h2 {
    font-size: 2.5rem;
}


.map-holder iframe {
    border-radius: 20px 0 0 20px;
    display: block;
}


/* Gallery Styles */
.gallery-item {
    transition: var(--transition);
}

.gallery-item img {
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 115, 255, 0.7);
    /* Theme blue with transparency */
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
.map-holder iframe {
    height: 600px !important;
}
.blog-details-content img {
    height: 400px;
    object-fit: cover;
}
.gallery-item img {
    height: 360px;
    object-fit: cover;
}

.plus-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.gallery-item:hover .plus-icon {
    transform: scale(1);
}

.sidebar{
	position: sticky;
    top: 110px;
}

.booking-popup p{
	margin-bottom: 0;
}

.booking-popup br{
	display: none;
}

.booking-popup .wpcf7-not-valid-tip{
	margin: 10px 0 0 0;
}

/* new changes starts  */
.py-100{
	padding: 60px 0;
}

@media only screen and (max-width: 1255.2px){
	.py-100{
		padding: 40px 0;
	}
}