@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #0175b2;
    --primary-dark: #005d8f;
    --secondary: #003f72;
    --accent: #f0a500;
    --bg: #f5f8fc;
    --white: #ffffff;
    --dark: #0d1b2a;
    --text: #3a3a4a;
    --text-light: #6b7280;
    --border: #e2e8f0;
    --card-shadow: 0 8px 32px rgba(0, 63, 114, 0.10);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================== TOP HEADER BAR ===================== */
.head1 {
    background: linear-gradient(135deg, #003f72 0%, #005d8f 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.head1 ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    align-items: center;
    list-style: none;
    gap: 8px;
}
.head1 ul li {
    padding: 2px 12px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.head1 ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    transition: color 0.2s;
}
.head1 ul li a:hover { color: var(--accent); }

/* ===================== NAVIGATION ===================== */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,63,114,0.10);
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 0;
}
.navbar {
    padding: 12px 0;
}
.navbar-brand img {
    height: 60px;
    width: auto;
}
nav ul li a.nav-link {
    color: var(--secondary) !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase !important;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: var(--transition) !important;
    position: relative;
}
nav ul li a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
nav ul li a.nav-link:hover::after,
nav ul li a.nav-link.active::after {
    transform: scaleX(1);
}
nav ul li a.nav-link:hover,
nav ul li a.nav-link.active {
    color: var(--primary) !important;
    background: rgba(1,117,178,0.07) !important;
}
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    padding: 8px;
    animation: dropFade 0.25s ease;
}
@keyframes dropFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
    font-size: 13px;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 8px;
    color: var(--text);
    transition: all 0.2s;
}
.dropdown-item:hover {
    background: linear-gradient(135deg, #eef6fc, #e8f4fd);
    color: var(--primary);
    padding-left: 22px;
}
.contact-botton a {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 11px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(1,117,178,0.3);
}
.contact-botton a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1,117,178,0.4);
}

/* ===================== HERO CAROUSEL ===================== */
section.banner {
    display: block;
    width: 100%;
    height: 90vh;
    min-height: 580px;
    overflow: hidden;
    position: relative;
}
section.banner .carousel,
section.banner .carousel-inner,
section.banner .carousel-item {
    height: 100%;
    width: 100%;
}
section.banner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.48);
    transform: scale(1.06);
    transition: transform 6s ease-in-out, filter 1s ease;
}
section.banner .carousel-item.active img {
    transform: scale(1.0);
}
section.banner .carousal-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(110deg,
        rgba(0, 20, 50, 0.72) 0%,
        rgba(0, 63, 114, 0.35) 60%,
        transparent 100%);
    z-index: 5;
}
section.banner .carousel h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.12;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: heroSlide 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroSlide {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}
section.banner .carousel-subtitle {
    font-size: clamp(15px, 1.8vw, 20px);
    color: rgba(255,255,255,0.85);
    margin-top: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    animation: heroSlide 0.9s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
section.banner .cnt-btn {
    animation: heroSlide 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
a.enqr {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 24px rgba(240,165,0,0.45);
    transition: var(--transition);
}
a.enqr:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(240,165,0,0.35);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
    transition: background 0.3s;
    margin: 0 20px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255,255,255,0.32);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}
.carousel-indicators {
    bottom: 20px;
    gap: 6px;
}
.carousel-indicators [data-bs-target] {
    width: 28px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.5);
    border: none;
    transition: all 0.3s;
}
.carousel-indicators .active {
    background: var(--accent);
    width: 48px;
}

/* ===================== STAT STRIP ===================== */
.stat-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 28px 0;
}
.stat-item {
    text-align: center;
    color: #fff;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-item h4 {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}
.stat-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================== SECTION HEADERS ===================== */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #e8f4fd, #d0e9f9);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    border: 1px solid rgba(1,117,178,0.2);
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    margin: 18px 0;
}
.section-divider.center { margin: 18px auto; }

/* ===================== SERVICE CARDS ===================== */
section.what-we {
    padding: 90px 0 100px;
    background: var(--bg);
}
.service-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,63,114,0.18);
    border-color: var(--primary);
}
.service-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.08);
}
.service-card-img .service-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body .icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8f4fd, #c8e4f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 14px;
    flex-shrink: 0;
}
.service-card-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-card-body p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}
.service-card-body a.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.2s;
}
.service-card-body a.learn-more:hover { gap: 10px; }

/* Backward-compat card styles */
.card-main { padding: 10px; }
.card-content {
    padding: 20px;
    background: var(--white);
    border-radius: 14px;
    min-height: 420px;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.card-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,63,114,0.15);
}
.card-content h4 { font-weight: 700; color: var(--secondary); font-size: 18px; margin-top: 10px; }
.card-content p { font-size: 13.5px; color: var(--text-light); margin-bottom: 180px; }
.card-image { position: absolute; bottom: 0; left: 0; width: 100%; padding: 0 14px 14px; }
.card-image img { border-radius: 10px; height: 165px; object-fit: cover !important; width: 100% !important; }

/* ===================== ABOUT SECTION ===================== */
section.about {
    padding: 90px 0;
    background: linear-gradient(135deg, #f0f7fc 0%, var(--white) 100%);
}
.about-top h3, .about-top h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
}
.about-left {
    background: var(--white);
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}
.about-left img {
    height: 250px;
    width: 100%;
    object-fit: cover !important;
    border-radius: 12px;
}
.about-left h4 { color: var(--primary); font-weight: 700; font-size: 22px; margin-top: 18px; }
.about-left p { color: var(--text-light); font-size: 14px; }
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    transition: var(--transition);
}
.feature-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(1,117,178,0.1);
}
.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.feature-item h6 { font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--text-light); margin: 0; }

/* ===================== LOGOS/PARTNERS ===================== */
section.company-logo {
    padding: 70px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.slick-logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}
.slick-logo-item {
    background: var(--bg);
    padding: 18px 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 80px;
    font-weight: 700;
    color: var(--secondary);
    font-size: 15px;
    transition: var(--transition);
    cursor: default;
}
.slick-logo-item:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(1,117,178,0.2);
}

/* ===================== OVERVIEW DESKVIEW ===================== */
.deskview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding-left: 0;
}
@media (max-width: 992px) { .deskview { grid-template-columns: 1fr; } }
.deskview li {
    list-style: none;
    padding: 22px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.deskview li:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(1,117,178,0.15);
}
.deskview li img {
    float: left;
    width: 200px;
    height: 155px;
    object-fit: cover !important;
    border-radius: 10px;
    margin-right: 20px;
    transition: transform 0.4s ease;
}
.deskview li:hover img { transform: scale(1.04); }
.deskview li h3 { font-size: 20px !important; color: var(--secondary); margin-bottom: 8px; font-weight: 700; }
.deskview li p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

.button1,.button2,.button3,.button4,.button5,.button6,.button7,.button8,.button9,.button10 {
    font-size: 13px;
    border: none;
    width: auto;
    margin-top: 10px;
    padding: 8px 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.button1:hover,.button2:hover,.button3:hover,.button4:hover,.button5:hover,.button6:hover,.button7:hover,.button8:hover,.button9:hover,.button10:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(1,117,178,0.3);
}

/* ===================== SERVICES CARDS SECTION ===================== */
section.next-services-section {
    padding: 90px 0;
    background: var(--bg);
}
.head-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 14px;
}
.head-content h3, .head-content h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary);
    font-weight: 800;
}
.below-abs {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.below-abs:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,63,114,0.18); }
.abs-card { overflow: hidden; }
.abs-card img { width: 100% !important; height: 220px; object-fit: cover !important; transition: transform 0.5s; }
.below-abs:hover .abs-card img { transform: scale(1.07); }
.below-under { padding: 22px; }
.below-under h2 { font-size: 18px; font-weight: 700; color: var(--secondary); }
.below-under a { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; color: var(--primary); font-weight: 700; text-decoration: none; font-size: 13px; }

/* ===================== ENQUIRE STRIP ===================== */
section.enquire-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}
section.enquire-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.enquire-card {
    background: rgba(255,255,255,0.13);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 24px 28px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}
.enquire-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.enquire-card p {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 0 14px;
}
.enquire-card a {
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 9px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.35);
    transition: var(--transition);
    white-space: nowrap;
}
.enquire-card a:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }

/* ===================== PRODUCTS SECTION ===================== */
section.product-are {
    padding: 90px 0;
    background: var(--bg);
}
.all-category {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    min-width: 270px;
}
.all-name {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.all-name p { margin: 0; color: #fff; font-size: 15px; }
.nav-pills .nav-link {
    width: 100%;
    text-align: left;
    padding: 11px 16px;
    color: var(--text);
    border-radius: 8px;
    font-weight: 500;
    font-size: 13.5px;
    margin-bottom: 4px;
    background: transparent;
    transition: all 0.2s;
}
.nav-pills .nav-link:hover { background: #eef6fc; color: var(--primary); padding-left: 20px; }
.nav-pills .nav-link.active { background: var(--secondary) !important; color: #fff !important; }
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    margin-bottom: 22px;
    text-align: center;
    transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,63,114,0.15); }
.product-card img { height: 175px; object-fit: cover !important; width: 100% !important; transition: transform 0.5s; }
.product-card:hover img { transform: scale(1.07); }
.p-n-content { padding: 16px; border-top: 1px solid var(--border); }
.p-n-content p { font-weight: 700; color: var(--secondary); font-size: 14px; margin-bottom: 12px; }
.order { display: flex; justify-content: space-between; gap: 8px; }
.order a { flex: 1; font-size: 12px; font-weight: 700; padding: 8px 10px; border-radius: 8px; text-decoration: none; text-align: center; }
.order a:first-child { background: #25d366; color: #fff; }
.order a:last-child { background: var(--primary); color: #fff; }

/* ===================== FAQ ===================== */
.faq-container { max-width: 900px; margin: 0 auto; padding: 70px 15px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 6px 20px rgba(0,63,114,0.10); }
.faq-item .question {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.faq-item .question:hover { background: #f8fbff; }
.faq-item .question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
}
.faq-item.active .question::after { content: '−'; }
.faq-item .answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.faq-item.active .answer { display: block; }

/* ===================== REQUEST FORM ===================== */
section.request {
    padding: 90px 0;
    background: var(--white);
}
section.request form input,
section.request form textarea,
section.request form select {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
section.request form input:focus,
section.request form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(1,117,178,0.10);
    background: #fff;
}
section.request form label { font-weight: 600; font-size: 14px; color: #444; }
section.request form button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 14px 48px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(1,117,178,0.3);
}
section.request form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(1,117,178,0.4);
}

/* ===================== FOOTER ===================== */
footer {
    background: linear-gradient(135deg, #001a33 0%, #002b4d 100%);
    color: #fff;
    padding: 80px 0 28px;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
footer p { color: rgba(176,196,222,0.85); font-size: 14px; }
footer a { color: rgba(176,196,222,0.85); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--accent); }
.foo-2 > p { color: #fff !important; font-weight: 700; font-size: 15px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.foo-2 ul { padding-left: 0; list-style: none; }
.foo-2 ul li { font-size: 13.5px; margin: 10px 0; }
.foo-2 ul li a::before { content: '→ '; opacity: 0; margin-right: 0; transition: all 0.2s; }
.foo-2 ul li a:hover::before { opacity: 1; margin-right: 4px; }
.footer-credits {
    margin-top: 40px;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}
.footer-credits p { color: rgba(255,255,255,0.6) !important; font-size: 13px; }

/* ===================== FLOATING BUTTONS ===================== */
.float-b {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
}
.float-b a {
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
}
.float-b a:hover { transform: scale(1.1); }
.telephone-link {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 1000;
}
.telephone-link a img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(1,117,178,0.4);
    transition: var(--transition);
}
.telephone-link a:hover img { transform: scale(1.1); }

/* ===================== CARD IMAGE OVERRIDE ===================== */
.card img { object-fit: cover; }
.card-img-top { height: 200px; object-fit: cover; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    section.banner { height: 70vh; min-height: 480px; }
    section.banner .carousel h3 { font-size: 32px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .stat-item:last-child { border-bottom: none; }
    .deskview li img { float: none; width: 100%; margin-right: 0; margin-bottom: 14px; }
    .enquire-card { flex-direction: column; gap: 14px; text-align: center; }
    .enquire-card p { margin: 0; }
}
@media (max-width: 576px) {
    section.banner { height: 60vh; min-height: 400px; }
    a.enqr { padding: 12px 26px; font-size: 14px; }
}

/* ===================== SCROLL ANIMATION UTILITY ===================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
