/* --- Variables & General --- */
:root {
    --navy-blue: #001f3f;
    --sky-blue: #39afea;
    --dark-sky: #2a8bc2;
    --gray-bg: #f4f4f4;
    --text-dark: #333;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Orbitron', sans-serif;
}

a { text-decoration: none; }

/* --- Colors & Buttons --- */
.bg-navy { background-color: var(--navy-blue) !important; }
.text-navy { color: var(--navy-blue) !important; }
.text-sky { color: var(--sky-blue) !important; }
.bg-sky { background-color: var(--sky-blue) !important; }

.btn-sky {
    background-color: var(--sky-blue);
    color: var(--white);
    border-radius: 5px;
    padding: 10px 25px;
    transition: all 0.3s;
}

.btn-sky:hover {
    background-color: var(--dark-sky);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-navy:hover {
    background-color: var(--sky-blue);
    color: var(--white);
}

.divider {
    height: 4px;
    width: 80px;
    background-color: var(--sky-blue);
    margin: 10px 0;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--navy-blue);
    color: #ccc;
    padding: 8px 0;
    font-size: 0.9rem;
}

.social-icons a {
    color: #ccc;
    margin-left: 15px;
    transition: 0.3s;
}

.social-icons a:hover { color: var(--sky-blue); }

/* --- Navbar --- */
.navbar {
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand span { color: var(--sky-blue); }

.nav-link {
    color: var(--navy-blue);
    font-weight: 500;
    margin-right: 15px;
}

.nav-link:hover, .nav-link.active { color: var(--sky-blue) !important; }

/* --- Carousel Banner --- */
.carousel-item {
    /*height: 85vh;
    min-height: 500px;*/
    background-size: cover;
    background-position: center;
}

.carousel-overlay {
    background: rgba(0, 31, 63, 0.6); /* Navy tint */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animations */
.animate-up {
    animation: fadeInUp 1s ease-out;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- About --- */
.border-sky { border-bottom: 5px solid var(--sky-blue); }

/* --- Services --- */
.service-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.4s;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--sky-blue);
}

.service-card .icon-box {
    font-size: 40px;
    color: var(--sky-blue);
    margin-bottom: 20px;
}

/* --- Achievements --- */
.achievements { background-attachment: fixed; }

/* --- Why Choose Us --- */
.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.border-sky-thick { border: 8px solid var(--sky-blue); }

/* --- Gallery --- */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* --- Testimonials --- */
.testimonials .carousel-indicators { bottom: -40px; }

/* --- Contact & Footer --- */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-section {
    background: #00152b; /* Darker navy */
    color: white;
    padding-top: 60px;
}

.footer-links li { margin-bottom: 10px; border-bottom: 1px dashed;}
.footer-links a { color: #ccc; transition: 0.3s; }
.footer-links a:hover { color: var(--sky-blue); padding-left: 5px; }

/* --- Floating Buttons --- */
.floating-btn-container {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Left side as requested implies easy access, commonly right, but put left to avoid scrollbar overlap */
    z-index: 9999;
    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: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s;
    animation: pulse-glow 2s infinite;
}

.whatsapp-btn { background-color: #25D366; }
.call-btn { background-color: var(--sky-blue); }

.float-btn:hover { color: white; transform: scale(1.1); }

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
/* --- Redesigned About Section --- */

.about-section {
    background-color: #fff;
    /* Subtle geometric background */
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Image Composition */
.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.main-img {
    position: relative;
    z-index: 2;
    border: 5px solid white; /* Creates a clean frame */
}

/* Floating Badge */
.exp-badge {
    position: absolute;
    bottom: 50px;
    left: 0;
    background: linear-gradient(135deg, var(--navy-blue), var(--sky-blue));
    color: white;
    padding: 20px 30px;
    border-radius: 0 20px 0 20px; /* Unique shape */
    z-index: 3;
    box-shadow: 10px 10px 30px rgba(0, 31, 63, 0.3);
    text-align: center;
    border: 2px solid white;
}

/* Dots Pattern Decoration */
.dots-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--sky-blue) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
    opacity: 0.6;
    transform: translate(20px, -20px);
}

/* Text Typography */
.letter-spacing-1 { letter-spacing: 1px; }
.letter-spacing-2 { letter-spacing: 2px; }

/* Mini Feature Grid */
.about-feature {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 3px solid transparent;
    transition: 0.3s;
}

.about-feature:hover {
    transform: translateX(5px);
    border-left: 3px solid var(--sky-blue);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.icon-box-sm {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

/* Animation for the badge */
.floating-anim {
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .exp-badge {
        bottom: 20px;
        padding: 15px 20px;
    }
    .dots-pattern { display: none; } /* Hide dots on mobile for cleaner look */
}
/* --- Option 1: Accordion Styling --- */
.custom-accordion .accordion-item {
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.custom-accordion .accordion-button {
    background-color: white;
    box-shadow: none; /* Removes default Bootstrap blue glow */
    padding: 20px;
    font-size: 1.1rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(57, 175, 234, 0.1); /* Very light sky blue */
    color: var(--navy-blue);
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    /* Customizing the arrow */
    background-size: 1rem;
    transition: 0.3s;
}

.custom-accordion .accordion-body {
    border-top: 1px solid #f0f0f0;
    padding: 20px;
}

/* --- Option 2: Banner Styling --- */
.know-more-banner {
    background-color: white; 
}

.banner-box {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #003366 100%);
    border-bottom: 5px solid var(--sky-blue);
}

.text-light-gray {
    color: rgba(255, 255, 255, 0.85);
}

.btn-white {
    background-color: white;
    color: var(--navy-blue);
    border: 2px solid white;
    transition: 0.3s;
}

.btn-white:hover {
    background-color: transparent;
    color: white;
}

/* Decorative Circles for Banner */
.circle-effect-1, .circle-effect-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.circle-effect-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.circle-effect-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -50px;
}
.cu-lgo-wdth{
	width:280px;
}
.cu-glry{
	margin-bottom:30px;
}
.cu-glry img{
	width:100%;
	border-radius:8px;
}
#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{
	background-color: var(--navy-blue);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.3s;
	display:block;
	width:100%
}
/* Mobile Adjustments */
@media(max-width:992px)
{
	.sticky-top{
		position:relative;
	}
}
@media (max-width: 768px) {
    .carousel-item { /*height: 60vh; */}
    .display-3 { font-size: 2.5rem; }
    .floating-btn-container { right: 20px; left: auto; } /* Right side on mobile */
	.cu-sld-btn-st{
		font-size:12px;
	}
}
@media(max-width:567px)
{
	.mb-ds-nn{
		display:none!important
	}
	.jf-cnt-ctr{
		justify-content:center!important;
	}
}
@media(max-width:424px)
{
	.cu-lgo-wdth {
    width: 224px;
}
}