/* Color Variables */
:root {
    --color-primary-dark: #001f3f; /* Navy Blue */
    --color-primary-light: #5bc0de; /* Sky Blue/Cyan */
    --color-secondary-dark: #333333; /* Dark Gray */
    --color-light-gray: #f8f9fa; /* Very Light Gray */
    --color-text-gray: #6c757d; /* Muted Text Gray */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

/* === Global Styles and Typography === */
body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--color-secondary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
    overflow-x: hidden; /* To prevent horizontal scroll with animations */
}
@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
}

.text-primary-dark { color: var(--color-primary-dark) !important; }
.text-primary-light { color: var(--color-primary-light) !important; }
.bg-primary-dark { background-color: var(--color-primary-dark) !important; }
.bg-primary-light { background-color: var(--color-primary-light) !important; }
.bg-light-gray { background-color: var(--color-light-gray) !important; }

/* Stylish Button Overrides */
.btn-primary-dark {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-primary-dark:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}
.btn-primary { /* Bootstrap standard primary to match Sky Blue */
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}


/* === Header and Nav Bar === */
.top-bar {
    background-color: var(--color-primary-dark);
    font-size: 0.9rem;
    color: #fff;
}
.top-bar i {
    color: var(--color-primary-light);
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary-dark) !important;
}
/*.logo::after {
    content: "World";
    color: var(--color-primary-light);
    font-weight: 400;
}
*/
.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--color-secondary-dark);
    margin: 0 10px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary-light);
}

/* === Hero Section (Carousel) === */
.hero-section {
  /*  height: 100vh;*/ /* Full viewport height */
    /*min-height: 500px;*/
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.7); /* Dark semi-transparent overlay */
}

#heroCarousel, .carousel-item {
    height: 100%;
}

/* Fallback/Image background for carousel items */
.carousel-item {
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}
.carousel-caption h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: #fff;
}
.carousel-caption p {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary-light);
}
@media (max-width: 767px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
}

/* === About Us Section === */
.about-image-wrapper {
    position: relative;
    display: inline-block;
}
.about-image-wrapper img {
    border-radius: 10px;
}
.about-experience {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-primary-light);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.about-experience h3 {
    color: var(--color-primary-dark) !important;
    margin-bottom: -5px;
}
.about-experience p {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary-dark) !important;
}
.about-features li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* === Services Section === */
.service-card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 31, 63, 0.1) !important;
    border-bottom: 3px solid var(--color-primary-light);
}
.service-icon {
    color: var(--color-primary-dark);
    background-color: var(--color-primary-light);
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
}
.service-icon i {
    color: var(--color-primary-dark);
    font-size: 2rem !important;
}
.service-card h4 {
    color: var(--color-primary-dark);
}
.service-link {
    color: var(--color-primary-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.service-link:hover {
    color: var(--color-primary-light);
}

/* === Why Choose Us Section === */
#why-choose {
    background-image: linear-gradient(rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.9)), url('assets/images/bg-wave.svg');
    background-size: cover;
    background-attachment: fixed;
}

/* === Achievements (Stats Counter) === */
.achievement-box {
    background-color: #fff;
    border-radius: 10px;
    border-bottom: 5px solid var(--color-primary-light);
    transition: all 0.3s ease;
}
.achievement-box:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
}

/* === Gallery Section === */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(91, 192, 222, 0.7); /* Sky Blue Overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 50%;
}

/* === Testimonials Section === */
.testimonial-section {
    background-image: linear-gradient(rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.9)), url('assets/images/bg-water-drops.jpg'); /* Placeholder image */
    background-size: cover;
    background-attachment: fixed;
}
.testimonial-card {
    background-color: #fff;
    max-width: 900px;
    border-radius: 15px;
    border-top: 5px solid var(--color-primary-light);
}

/* Carousel controls styling */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-color: var(--color-primary-light);
    border-radius: 50%;
    padding: 15px;
}

/* === OPD Section (Our Promise & Dedication) === */
.opd-box {
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.opd-box:hover {
    box-shadow: 0 10px 20px rgba(0, 31, 63, 0.15) !important;
    transform: translateY(-5px);
}
.opd-box i {
    color: var(--color-primary-dark);
}

/* === Enquire Form Section === */
.enquire-form {
    background-color: var(--color-light-gray);
    border-radius: 10px;
    border-top: 5px solid var(--color-primary-dark);
}
.form-control, .form-select {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    transition: border-color 0.3s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 0.25rem rgba(91, 192, 222, 0.25);
}

/* === Google Map Section === */
.google-map iframe {
    min-height: 400px;
    border-radius: 8px;
}

/* === Footer === */
.footer-links li a, .footer-contact li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links li a:hover, .footer-contact li a:hover {
    color: var(--color-primary-light);
    padding-left: 5px;
}
.footer-contact i {
    color: var(--color-primary-light);
}
.social-links .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    transition: all 0.3s ease;
}
.social-links .social-icon:hover {
    background-color: #fff;
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}
.text-gray {
    color: #cccccc !important;
}

/* === Floating Buttons === */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.whatsapp-btn, .call-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background-color: #25d366;
}

.call-btn {
    background-color: var(--color-primary-dark); /* Navy Blue */
}

/* Glowing Effect */
.glow-whatsapp {
    animation: glow-whatsapp 1.5s infinite alternate;
}
.glow-call {
    animation: glow-call 1.5s infinite alternate;
}

@keyframes glow-whatsapp {
    from { box-shadow: 0 0 5px #25d366, 0 0 10px #25d366; }
    to { box-shadow: 0 0 20px #25d366, 0 0 30px #25d366; }
}
@keyframes glow-call {
    from { box-shadow: 0 0 5px var(--color-primary-light), 0 0 10px var(--color-primary-light); }
    to { box-shadow: 0 0 20px var(--color-primary-light), 0 0 30px var(--color-primary-light); }
}

/* === Scroll to Top Button === */
.scroll-to-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top-btn:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
}

/* === Animation Helpers (for JS effects) === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
}
.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}
/* Specific animation overrides for more dynamic looks */
.left-to-right.in-view {
    transform: translateX(0);
}
.right-to-left.in-view {
    transform: translateX(0);
}
.fade-in-up.in-view {
    opacity: 1;
    transform: translateY(0);
}
.fade-in.in-view {
    opacity: 1;
    transform: none;
}
/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.cu-lg-wdth{
	width:240px;
}
.cu-fter-lnk li{
	border-bottom:1px dashed #fff;
}
.cu-fter-ttle{
	background: #5bc0de;
    border-top-right-radius: 20px;
    color: #fffbfb !important;
    padding: 4px;
}
#cal-icon {
    position: fixed;
    right: 8px;
    bottom: 220px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 99990;
}
#cal-icon img {
    width: 50px !important;
}
.cu-glr{
	margin-bottom:30px;
}
.cu-glr img{
	width:100%;
	border-radius:10px;
}
#enu-st{
	background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
	display:block;
	width:100%
}
@media(max-width:991px)
{
	#about{
		margin-top:70px;
	}
	.sticky-top{
		position:relative;
	}
	.cu-jf-cntr{
		text-align:center!important;
	}
	.cu-ds-nn{
		display:none!important
	}
}

@media(max-width:550px)
{
	.cu-lg-wdth {
    width: 222px;
}
}