/* Color Variables */
:root {
    --navy: #001f3f;
    --sky: #00b4d8;
    --gray-light: #f8f9fa;
    --text-color: #333;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.text-navy { color: var(--navy) !important; }
.text-sky { color: var(--sky) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-sky { background-color: var(--sky) !important; }
.text-secondary-light { color: #cfd2d6 !important; }

.section-padding {
    padding: 80px 0;
}

/* Top Bar */
.top-bar {
    background-color: var(--navy);
    font-size: 14px;
}
.social-icons a {
    color: white;
    margin-left: 15px;
    transition: 0.3s;
}
.social-icons a:hover {
    color: var(--sky);
}

/* Navbar */
.navbar-brand {
    font-size: 24px;
}
.nav-link {
    color: var(--navy) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--sky) !important;
}
.btn-custom {
    background-color: var(--navy);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-custom:hover {
    background-color: var(--sky);
    color: white;
}

/* Carousel */
.carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
}
.btn-sky {
    background-color: var(--sky);
    color: white;
    border: none;
    transition: 0.3s;
}
.btn-sky:hover {
    background-color: var(--navy);
    color: white;
}

/* Services */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-bottom: 3px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--sky);
}
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--sky);
    margin-top: 10px;
}

/* Why Choose Us & Features */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.border-sky {
    border: 5px solid var(--sky);
}

/* Gallery */
.gallery-item img {
    transition: transform 0.5s ease;
    cursor: pointer;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
#testimonialCarousel .carousel-item {
    height: auto;
    background: none;
    padding: 30px 0;
}

/* Footer */
.footer-links a {
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--sky) !important;
    padding-left: 5px;
}

/* Floating Buttons */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s;
    animation: glow 2s infinite;
}

.whatsapp-btn { background-color: #25D366; }
.call-btn { background-color: var(--sky); }

.float-btn:hover {
    color: white;
    transform: scale(1.1);
}

@keyframes glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 180, 216, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}
/* --- Redesigned About Section Styles --- */

.about-img-wrapper {
    padding-bottom: 180px; /* Space for the floating image */
    padding-right: 30px;
}

/* The Main Large Image */
.main-img {
    width: 90%;
    border: 10px solid white; /* Creates a clean frame */
}

/* The Small Floating Image (Bottom Right) */
.small-img-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border: 8px solid white;
    z-index: 2;
}

/* The Experience Badge (Top Left) */
.exp-badge {
    position: absolute;
    top: 299px;
    left: 0;
    z-index: 3;
    min-width: 140px;
    border-bottom: 4px solid var(--sky); /* Sky blue accent */
    animation: floatBadge 3s ease-in-out infinite;
}

/* Small Animation for the Badge */
@keyframes floatBadge {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Text Styling */
.letter-spacing-1 { letter-spacing: 1px; }
.letter-spacing-2 { letter-spacing: 2px; }

/* Icon Boxes in the Grid */
.icon-box-xs {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.icon-box-xs:hover {
    background-color: var(--sky) !important;
    color: white !important;
}

/* Button Navy Variant */
.btn-navy {
    background-color: var(--navy);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    transition: 0.3s;
}
.btn-navy:hover {
    background-color: var(--sky);
    color: white;
    transform: translateY(-3px);
}

/* Mobile Responsiveness for About Section */
@media (max-width: 768px) {
    .about-img-wrapper {
        padding-bottom: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .main-img {
        width: 100%;
    }
    .small-img-box {
        display: none; /* Hide complex overlap on very small screens */
    }
    .exp-badge {
        top: 10px;
        left: 10px;
        padding: 15px !important;
    }
}
/* --- Would Like To Know More (FAQ) Styles --- */

/* 1. Remove Default Bootstrap Borders & Add Spacing */
.custom-accordion .accordion-item {
    background: #fff;
    margin-bottom: 15px; /* Creates gap between items */
    overflow: hidden;
}

/* 2. Style the Button (Collapsed State) */
.custom-accordion .accordion-button {
    background-color: #fff;
    color: var(--navy);
    padding: 20px;
    font-size: 1.1rem;
    box-shadow: none !important; /* Removes blue glow on click */
}

/* 3. Style the Button (Active/Open State) */
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--navy);
    color: white;
}

/* 4. Fix Icon Colors in Active State */
.custom-accordion .accordion-button:not(.collapsed) i {
    color: var(--sky) !important;
}

/* 5. Custom Chevron (Arrow) Color */
/* This changes the arrow color to Sky Blue when closed, and White when open */
.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300b4d8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* 6. Right Side CTA Card */
.faq-cta-card {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 30px rgba(0,31,63,0.2);
}

.circle-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hover-lift {
    transition: transform 0.3s;
}
.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-underline:hover {
    text-decoration: underline !important;
    color: var(--sky) !important;
}

.opacity-10 {
    opacity: 0.05;
}
.cu-logo-wdth{
	width:240px;
}
.cu-sre-img{
	width:100%;
	border-radius:10px;
	margin-bottom:15px;
}
.cu-glry{
	margin-bottom:30px;
}
.cu-whte{
	background:#fff;
}
.cu-glry img{
	width:100%;
	border-radius:10px;
}
.brand-section {
            background: #ffffff;
            padding: 50px 0;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .brand-section h2 {
            color: #001f3f; /* Navy Blue */
            font-size: 2rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .brand-section p {
            color: #6c757d; /* Gray */
            margin-bottom: 40px;
            font-size: 1rem;
        }

        /* The Slider Container */
        .slider-b {
            height: 100px;
            margin: auto;
            overflow: hidden;
            position: relative;
            width: 90%; /* Adjust width as needed */
            max-width: 1200px;
        }

        /* Gradient Overlay (Fade effect on sides) */
        .slider-b::before,
        .slider-b::after {
            background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
            content: "";
            height: 100px;
            position: absolute;
            width: 150px;
            z-index: 2;
        }

        .slider-b::before {
            left: 0;
            top: 0;
        }

        .slider-b::after {
            right: 0;
            top: 0;
            transform: rotateZ(180deg);
        }

        /* The Track (Actual scrolling part) */
        .slide-track {
            -webkit-animation: scroll 30s linear infinite;
            animation: scroll 30s linear infinite;
            display: flex;
            width: calc(200px * 14); /* 200px width per slide * total slides (original + duplicate) */
        }

        /* Pause animation on hover */
        .slider-b:hover .slide-track {
            animation-play-state: paused;
        }

        /* Individual Slide */
        .slide-b {
            height: 100px;
            width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
        }

        /* Logo Styling */
        .slide-b img {
            max-width: 100%;
            height: auto;
            max-height: 80px;
           /* filter: grayscale(100%);*/ /* Gray look initially */
            opacity: 1;
            transition: all 0.3s ease;
            cursor: pointer;
			border: 1px solid;
        }

        /* Logo Hover Effect (Color wapis aayega) */
        .slide-b img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Animation Keyframes */
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-200px * 7)); } /* Moves half the total width */
        }
		#cal-icon img {
    width: 50px !important;
}
#cal-icon {
    position: fixed;
    right: 8px;
    bottom: 220px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 99990;
}
		#enu-st{
			display:block;
			width:100%;
			padding:4px;
			    background-color: var(--sky);
    color: white;
    border: none;
    transition: 0.3s;
		}
		/* Color Palette */
.navy-text { color: #001f3f; }
.text-primary { color: #00a8e8 !important; }

.why-choose-us {
    background-color: #fcfcfc;
}

/* Heading Line Decor */
.heading-line {
    width: 80px;
    height: 4px;
    background: #00a8e8;
    border-radius: 2px;
}

/* Card Styling */
.choose-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Icon Styling */
.icon-box {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #f0f9ff;
    color: #00a8e8;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 1.8rem;
    transition: 0.4s;
}

/* Hover Effects */
.choose-card:hover {
    transform: translateY(-10px);
    border-color: #00a8e8;
    box-shadow: 0 15px 30px rgba(0, 31, 63, 0.1);
}

.choose-card:hover .icon-box {
    background: #00a8e8;
    color: #ffffff;
    transform: rotateY(360deg);
}

/* Adding a subtle background pattern or shape on hover */
.choose-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 168, 232, 0.03);
    z-index: -1;
    transition: 0.4s;
}
.why-img{
	width:100%;
	border-radius;10px;
}
.choose-card:hover::after {
    height: 100%;
}
/* Responsive Tweaks */
@media(max-width:991px)
{
	 .sticky-top{
		 position:relative;
	 }
}
@media (max-width: 768px) {
	.cu-sld-btn-st{
		font-size:12px;
	}
    .carousel-item {
        height: 60vh;
    }
    .display-3 {
        font-size: 2.5rem;
    }
    .top-bar {
        text-align: center;
    }
	
}
@media(max-width:700px)
{
	.hero-title {
    font-weight: 700;
    font-size: 1.5rem!important;
}
}
@media(max-width:500px)
{
	.cu-logo-wdth {
    width: 224px;
}
}