@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

:root {
    /* Brand Colors */
    --primary-color: #2DBB5C;
    --primary-rgb: 45, 187, 92;
    --secondary-color: #FFA84B;
    --secondary-rgb: 255, 168, 75;
    --dark-color: #0F172A;
    --dark-rgb: 15, 23, 42;
    --light-color: #F8FAFC;
    --white-color: #FFFFFF;

    /* Text Colors */
    --text-main: #475569;
    --text-dark: #0F172A;
    --text-light: #94A3B8;

    /* Transitions & Shadow */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.08);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Albert Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Topbar Styles */
.topbar {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-contact-info {
    display: flex;
    gap: 25px;
}

.topbar-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.topbar-contact-info a:hover {
    color: var(--primary-color);
}

.topbar-contact-info i {
    color: var(--primary-color);
    font-size: 15px;
}

.topbar-social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.topbar-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.topbar-social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* Header & Navbar Styles */
.main-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

/* Sticky Header Trigger */
.main-header.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    animation: slideDown 0.4s ease-out;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.main-header.sticky-nav .navbar-container {
    padding: 10px 0;
}

/* Logo styling */
.brand-logo img {
    height: 80px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.sticky-nav .brand-logo img {
    height: 42px;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

/* Dropdown Menu styling */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 280px;
    background-color: var(--white-color);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 100;
}

/* Subtle line indicator under nav link on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-item.active>.nav-link::after {
    width: 100%;
}

.nav-item:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item-custom a {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
    border-left: 3px solid transparent;
}

.dropdown-item-custom a:hover {
    color: var(--primary-color);
    background-color: var(--light-color);
    border-left-color: var(--primary-color);
    padding-left: 25px;
}

/* Header Button */
.header-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), #249e4e);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(45, 187, 92, 0.25);
    border: none;
    cursor: pointer;
}

.header-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 187, 92, 0.35);
    color: var(--white-color);
}

/* Mobile Toggle Hamburger button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}


.carousel-item img {
    width: 100% !important;
}




/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--white-color);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    display: flex;
    flex-direction: column;
    padding: 25px;
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-drawer-header img {
    height: 40px;
    width: auto;
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Drawer Menu Links */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.mobile-dropdown-toggle i {
    transition: var(--transition-smooth);
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

/* Mobile Dropdown Submenu */
.mobile-submenu {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
    border-left: 2px solid rgba(45, 187, 92, 0.2);
}

.mobile-submenu.active {
    display: flex;
}

.mobile-submenu-item a {
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    color: var(--text-main);
    display: block;
}

.mobile-submenu-item a:hover {
    color: var(--primary-color);
}



/* Responsive Breakpoints */
@media (max-width: 991px) {
    .topbar {
        display: none;
        /* Hide topbar on mobile/tablets */
    }

    .nav-menu,
    .header-action-btn {
        display: none;
        /* Hide desktop nav and button */
    }

    .mobile-menu-toggle {
        display: block;
        /* Show hamburger toggle */
    }

    .carousel-control-next-icon {
        width: 20px;
    }
}

@media (max-width: 767px) {
    .brand-logo img {
        height: 55px;
    }
}





/* ==========================================================================
   About Us Section (Premium & Interactive)
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(45, 187, 92, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 168, 75, 0.03) 0%, transparent 50%),
        var(--white-color);
    position: relative;
    overflow: hidden;
}

/* Background decorative shapes */
.about-shape-1 {
    position: absolute;
    top: 10%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(45, 187, 92, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.about-shape-2 {
    position: absolute;
    bottom: 10%;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 168, 75, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

/* Section Header / Intro */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(45, 187, 92, 0.08);
    border: 1px solid rgba(45, 187, 92, 0.15);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-badge i {
    font-size: 14px;
}

.about-heading {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-heading span.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #249e4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Asymmetric Image Collage */
.collage-wrapper {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-collage {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.collage-img-main {
    width: 85%;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: block;
}

.collage-img-sub {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 50%;
    border-radius: 20px;
    border: 8px solid var(--white-color);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.collage-wrapper:hover .collage-img-main {
    transform: translateY(-5px) scale(1.01);
}

.collage-wrapper:hover .collage-img-sub {
    transform: translate(5px, -5px) scale(1.03);
}

/* Floating glass badge */
.experience-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: floatingBadge 4s ease-in-out infinite;
}

@keyframes floatingBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Interactive Tabs styling */
.about-tabs-container {
    margin-bottom: 35px;
}

.about-tabs-nav {
    display: flex;
    gap: 12px;
    background-color: var(--light-color);
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: fit-content;
}

.about-tab-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.about-tab-btn:hover {
    color: var(--primary-color);
}

.about-tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 12px rgba(45, 187, 92, 0.2);
}

/* Tab contents and animation */
.about-tab-content {
    position: relative;
    min-height: 160px;
}

.tab-pane-custom {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane-custom.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-pane-custom p {
    font-size: 15.5px;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Feature bullets */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    background-color: rgba(45, 187, 92, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* Action section */
.about-action {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition-smooth);
}

.phone-link:hover .phone-icon-box {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.05);
}

.phone-text span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.phone-text a {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Stats Counter Grid section */
.about-stats-grid {
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 50px;
}

.stat-card-custom {
    background: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.stat-card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 187, 92, 0.04) 0%, rgba(255, 168, 75, 0.02) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.stat-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(45, 187, 92, 0.15);
}

.stat-card-custom:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.stat-card-custom:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Responsive Styles */
@media (max-width: 1199px) {
    .about-heading {
        font-size: 2.4rem;
    }

    .collage-img-sub {
        bottom: -15px;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 50px 0;
    }

    .collage-wrapper {
        margin-bottom: 50px;
    }

    .about-heading {
        font-size: 2.2rem;
    }

    .about-stats-grid {
        margin-top: 60px;
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .about-heading {
        font-size: 25px;
    }

    .about-lead {
        font-size: 14px;
        text-align: justify;
    }

    .tab-pane-custom p {
        font-size: 14px;
        text-align: justify;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-tabs-nav {
        flex-wrap: wrap;
        border-radius: 15px;
        max-width: 100%;
        justify-content: center;
    }

    .about-tab-btn {
        width: 100%;
        padding: 8px 16px;
    }

    .collage-img-sub {
        border-width: 4px;
    }

    .stat-card-custom {
        padding: 24px 15px;
    }

    .stat-number {
        font-size: 25px;
    }
}

/* ==========================================================================
   Services Section (Premium & Modern Grid)
   ========================================================================== */
.services-section {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.services-shape {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 187, 92, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.service-card-custom {
    background: var(--white-color);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Glowing outline at the bottom on hover */
.service-card-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
    z-index: 2;
}

.service-card-custom:hover::after {
    transform: scaleX(1);
}

.service-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(45, 187, 92, 0.15);
}

.service-card-top {
    width: 100%;
}

.service-card-img-wrapper {
    width: 100%;
    height: 180px;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 25px;
}

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

.service-card-custom:hover .service-card-img {
    transform: scale(1.08);
}

.service-icon-box {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.service-card-custom:hover .service-icon-box {
    background: linear-gradient(135deg, var(--primary-color), #249e4e);
    color: var(--white-color);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(45, 187, 92, 0.3);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-text {
    font-size: 14px;
    text-align: justify;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.service-card-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.service-card-link i {
    font-size: 11px;
    transition: var(--transition-smooth);
}

.service-card-custom:hover .service-card-link {
    color: var(--text-dark);
}

.service-card-custom:hover .service-card-link i {
    transform: translateX(4px);
}

/* Service grid section responsive tweaks */
@media (max-width: 991px) {
    .services-section {
        padding: 70px 0;
    }
}

/* ==========================================================================
   Footer Section (Premium & High-End Dark)
   ========================================================================== */
.main-footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    font-size: 15px;
    border-top: 3px solid var(--primary-color);
}

.footer-shape {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(45, 187, 92, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

.footer-brand-logo img {
    height: 80px;
    width: auto;
}

.footer-brand-desc {
    font-size: 14.5px;
    line-height: 1.6;
    margin: 20px 0 25px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.footer-link i {
    font-size: 10px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 4px;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.footer-contact-text a {
    transition: var(--transition-smooth);
}

.footer-contact-text a:hover {
    color: var(--primary-color);
}

.footer-newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    position: relative;
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 12px 55px 12px 20px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-submit-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(45, 187, 92, 0.2);
}

.newsletter-submit-btn:hover {
    background-color: #249e4e;
    transform: scale(1.05);
}

/* Footer Bottom styles */
.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.footer-bottom-link:hover {
    color: var(--primary-color);
}

/* Responsive Footer adjustments */
@media (max-width: 991px) {
    .footer-widget-col {
        margin-bottom: 40px;
    }

    .footer-bottom {
        margin-top: 30px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .main-footer {
        padding: 50px 0px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-text {
        font-size: 14px;
        text-align: justify;
    }

    .footer-brand-logo img {
        height: 50px;
    }
}

/* ==========================================================================
   Why Choose Us Section (Staggered Split Grid)
   ========================================================================== */
.why-section {
    padding: 100px 0;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.why-collage-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 100%;
}

.why-collage-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.why-collage-wrapper:hover .why-collage-img {
    transform: scale(1.03);
}

/* Floating overlay glass card */
.why-floating-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    color: var(--white-color);
    z-index: 5;
}

.why-floating-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white-color);
}

.why-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.why-bullet-item i {
    color: var(--primary-color);
    background-color: rgba(45, 187, 92, 0.15);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Staggered Grid styling */
.why-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-bottom: 30px;
}

.why-feature-card {
    background: var(--white-color);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 20px;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.why-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 187, 92, 0.15);
    box-shadow: var(--shadow-premium);
}

/* Staggered offsets for desktop grid */
@media (min-width: 992px) {
    .why-feature-card:nth-child(even) {
        transform: translateY(24px);
    }

    .why-feature-card:nth-child(even):hover {
        transform: translateY(18px);
    }
}

.why-card-num {
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: -1;
}

.why-feature-card:hover .why-card-num {
    color: rgba(45, 187, 92, 0.07);
}

.why-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: rgba(45, 187, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.why-feature-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--primary-color), #249e4e);
    color: var(--white-color);
    box-shadow: 0 6px 15px rgba(45, 187, 92, 0.2);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-card-text {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.5;
}

/* Why Choose Us Responsive Styles */
@media (max-width: 991px) {
    .why-section {
        padding: 50px 0;
    }

    .why-collage-wrapper {
        margin-bottom: 40px;
    }

    .why-feature-grid {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .why-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-collage-img {
        min-height: 380px;
    }

    .why-floating-card {
        padding: 16px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .why-floating-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .why-bullet-item {
        font-size: 13.5px;
    }
}

/* ==========================================================================
   Work Process Section (Timeline & Custom Cards)
   ========================================================================== */
.process-section {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.process-grid-wrapper {
    position: relative;
}

.process-card-custom {
    background: var(--white-color);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-card-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
    z-index: 2;
}

.process-card-custom:hover::after {
    transform: scaleX(1);
}

.process-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(45, 187, 92, 0.15);
}

.process-card-num {
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: -1;
}

.process-card-custom:hover .process-card-num {
    color: rgba(45, 187, 92, 0.08);
}

.process-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: rgba(45, 187, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.process-card-custom:hover .process-icon-box {
    background: linear-gradient(135deg, var(--primary-color), #249e4e);
    color: var(--white-color);
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 15px rgba(45, 187, 92, 0.2);
}

.process-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.process-card-text {
    font-size: 14.5px;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Connectors on large screens */
@media (min-width: 1200px) {
    .process-grid-wrapper>[class*="col-"]:not(:last-child) {
        position: relative;
    }

    .process-grid-wrapper>[class*="col-"]:not(:last-child)::after {
        content: '\f105';
        /* Chevron right icon */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: -12px;
        transform: translateY(-50%);
        font-size: 24px;
        color: rgba(45, 187, 92, 0.35);
        z-index: 10;
        transition: var(--transition-smooth);
    }

    .process-grid-wrapper>[class*="col-"]:not(:last-child):hover::after {
        color: var(--primary-color);
        transform: translateY(-50%) scale(1.1) translateX(4px);
    }
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .process-section {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .process-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .process-section {
        padding: 50px 0;
    }

    .process-card-title {
        font-size: 18px;
    }

    .process-card-text {
        font-size: 14px;
        text-align: justify;
    }

    .process-card-custom {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   FAQ & Testimonials Section (Split Layout)
   ========================================================================== */
.faq-testimonial-section {
    padding: 100px 0;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.faq-wrapper,
.testimonial-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-wrapper {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1e293b 100%);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Background decorative blur in dark testimonial card */
.testimonial-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(45, 187, 92, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Accordion Custom Styling */
.faq-accordion-custom .accordion-item {
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    background-color: var(--white-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.faq-accordion-custom .accordion-item:hover {
    border-color: rgba(45, 187, 92, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-accordion-custom .accordion-button {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    padding: 20px 25px;
    background-color: var(--white-color);
    border: none;
    box-shadow: none;
    transition: var(--transition-smooth);
    text-align: left;
}

.faq-accordion-custom .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(45, 187, 92, 0.03);
}

.faq-accordion-custom .accordion-button::after {
    font-family: 'Font Awesome 6 Free';
    content: '\f078';
    /* Chevron down */
    font-weight: 900;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.faq-accordion-custom .accordion-button:not(.collapsed)::after {
    color: var(--primary-color);
    transform: rotate(-180deg);
}

.faq-accordion-custom .accordion-body {
    padding: 15px 25px 25px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-main);
    background-color: rgba(45, 187, 92, 0.01);
    border-top: 1px solid rgba(45, 187, 92, 0.05);
}

/* Testimonials Carousel Custom Styling */
.testimonial-card-dark {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
}

.testimonial-card-dark .quote-icon {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 80px;
    color: rgba(45, 187, 92, 0.08);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card-dark .star-rating {
    color: var(--secondary-color);
    font-size: 14px;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card-dark .testimonial-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card-dark .client-info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-card-dark .client-avatar-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--white-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e8449 100%);
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
}

.bg-accent-gradient {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.testimonial-card-dark .client-name {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 2px;
}

.testimonial-card-dark .client-meta {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* Indicators */
.custom-indicators {
    position: absolute;
    bottom: -40px;
    margin-bottom: 0;
    z-index: 15;
}

.custom-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25) !important;
    border: none !important;
    margin: 0 5px !important;
    transition: var(--transition-smooth);
    opacity: 1 !important;
}

.custom-indicators button.active {
    width: 24px;
    border-radius: 10px;
    background-color: var(--primary-color) !important;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .testimonial-wrapper {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .faq-testimonial-section {
        padding: 70px 0;
    }

    .testimonial-wrapper {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .faq-testimonial-section {
        padding: 50px 0;
    }

    .testimonial-wrapper {
        padding: 25px;
        border-radius: 20px;
    }

    .testimonial-card-dark {
        padding: 25px;
    }

    .testimonial-card-dark .testimonial-text {
        font-size: 14px;
        text-align: justify;
    }

    .faq-accordion-custom .accordion-button {
        font-size: 14.5px;
        padding: 16px 20px;
    }
}

/* ==========================================================================
   Blog Section (Carousel & Custom Cards)
   ========================================================================== */
.blog-section {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.blog-card-custom {
    background: var(--white-color);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(45, 187, 92, 0.15);
}

.blog-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-card-custom:hover .blog-card-img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(45, 187, 92, 0.2);
    z-index: 10;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date i {
    color: var(--primary-color);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.blog-card-custom:hover .blog-title {
    color: var(--primary-color);
}

.blog-text {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.blog-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.blog-link i {
    font-size: 11px;
    transition: var(--transition-smooth);
}

.blog-card-custom:hover .blog-link {
    color: var(--primary-color);
}

.blog-card-custom:hover .blog-link i {
    transform: translateX(4px);
}

/* Custom Owl Dots for Blog Carousel */
.blog-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.blog-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 7px;
    background: rgba(15, 23, 42, 0.15) !important;
    display: block;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.blog-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
    width: 24px;
    border-radius: 10px;
}

/* ==========================================================================
   Contact Section (Premium Form & Info Grid)
   ========================================================================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1e293b 100%);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.contact-detail-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(45, 187, 92, 0.1);
    border: 1px solid rgba(45, 187, 92, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-detail-icon {
    background: linear-gradient(135deg, var(--primary-color), #249e4e);
    color: var(--white-color);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(45, 187, 92, 0.2);
}

.contact-detail-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-detail-text a {
    transition: var(--transition-smooth);
}

.contact-detail-text a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    padding: 20px 0 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Custom form fields design */
.form-group-custom {
    position: relative;
}

.form-control-custom,
.form-select-custom {
    width: 100%;
    padding: 15px 22px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background-color: var(--light-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-control-custom::placeholder {
    color: var(--text-light);
}

.form-control-custom:focus,
.form-select-custom:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white-color);
    box-shadow: 0 0 0 4px rgba(45, 187, 92, 0.08);
}

.textarea-custom {
    resize: none;
}

.form-select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}


.map iframe {
    width: 100%;
    height: 400px;

}

/* Responsive CSS adjustments */
@media (max-width: 1199px) {
    .contact-info-card {
        padding: 40px;
    }
}

@media (max-width: 991px) {

    .blog-section,
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    .blog-section,
    .contact-section {
        padding: 50px 0;
    }

    .blog-card-content {
        padding: 24px;
    }

    .blog-title {
        font-size: 17px;
    }

    .blog-text {
        font-size: 13.5px;
    }

    .contact-info-card {
        padding: 25px;
        border-radius: 20px;
    }

    .contact-detail-items {
        gap: 20px;
    }

    .form-control-custom,
    .form-select-custom {
        padding: 12px 18px;
        font-size: 14px;
    }

    .map iframe {
        width: 100%;
        height: 200px;

    }
}






/* ==========================================================================
   Premium Form Inputs & Dynamic Captcha Section Styles
   ========================================================================== */
.input-group-premium {
    position: relative;
    margin-bottom: 2px;
}

.input-group-premium .input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.input-group-premium:has(textarea) .input-icon {
    top: 22px;
    transform: none;
}

.input-group-premium .form-control-custom {
    padding-left: 50px;
}

.input-group-premium:focus-within .input-icon {
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.input-group-premium:has(textarea):focus-within .input-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Inline Error Messaging */
.error-msg {
    font-size: 12px;
    color: #e74c3c;
    font-weight: 600;
    margin-top: 4px;
    padding-left: 5px;
    min-height: 18px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.2s ease-in-out;
}

.error-msg.show {
    opacity: 1;
    transform: translateY(0);
}

/* Invalid and Valid Input States */
.input-group-premium.is-invalid .form-control-custom {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.02);
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.08) !important;
}

.input-group-premium.is-invalid .input-icon {
    color: #e74c3c !important;
}

.input-group-premium.is-valid .form-control-custom {
    border-color: var(--primary-color) !important;
    background-color: rgba(45, 187, 92, 0.02);
    box-shadow: 0 0 0 4px rgba(45, 187, 92, 0.08) !important;
}

.input-group-premium.is-valid .input-icon {
    color: var(--primary-color) !important;
}

/* Premium Captcha Box Section */
.captcha-wrapper-premium {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex-wrap: wrap;
    background: rgba(15, 23, 42, 0.02);
    padding: 15px;
    border-radius: 14px;
    border: 1px dashed rgba(15, 23, 42, 0.1);
}

.captcha-display-box-container {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.captcha-display-box {
    background-color: #0f172a;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px 18px;
    color: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 5px;
    text-transform: uppercase;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-width: 140px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3), var(--shadow-sm);
    transform: skewX(-4deg);
    position: relative;
    overflow: hidden;
}

.captcha-display-box::after {
    content: '';
    display: none;
}

.captcha-refresh-btn {
    background: var(--white-color);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--text-dark);
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.captcha-refresh-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 4px 10px rgba(45, 187, 92, 0.25);
}

.captcha-refresh-btn i {
    font-size: 16px;
    transition: transform 0.3s;
}

.captcha-input-group {
    flex-grow: 1;
    min-width: 180px;
}

/* Success Confirmation Banner */
.form-success-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
    background: var(--white-color);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(45, 187, 92, 0.15);
    animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(45, 187, 92, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    margin-bottom: 25px;
    animation: pulseSuccess 2s infinite;
}

@keyframes pulseSuccess {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 187, 92, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(45, 187, 92, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 187, 92, 0);
    }
}

.form-success-banner h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-success-banner p {
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .captcha-wrapper-premium {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-input-group {
        width: 100%;
        min-width: 100%;
    }

    .captcha-display-box-container {
        justify-content: space-between;
    }

    .captcha-display-box {
        flex-grow: 1;
    }
}

/* Embedded Contact Map styling */
.contact-map-wrapper {
    /* margin-top: 30px;     */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 350px;
    position: relative;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(40%) invert(90%) hue-rotate(180deg) opacity(0.85);
    transition: var(--transition-smooth);
}

.contact-map-wrapper:hover iframe {
    filter: none;
    opacity: 1;
}

@media (max-width: 991px) {
    .contact-map-wrapper {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .contact-map-wrapper {
        height: 200px;
    }

    .contact-info-card p {
        font-size: 14px;
    }
}

/* ==========================================================================
   Fixed Contact Icons
   ========================================================================== */
.fixed-contact-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fixed-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.fixed-icon:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--white-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.call-icon {
    background: linear-gradient(135deg, var(--secondary-color), #d35400);
}

.mail-icon {
    background: linear-gradient(135deg, var(--primary-color), #1e8449);
}

@media (max-width: 767px) {
    .fixed-contact-icons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .fixed-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}



/* subpage banner start */

.sub-page {
    background: linear-gradient(to right, #0F172A, #FFA84B, #0F172A);

}

.sub-page-heading {
    padding: 100px 0px;
    text-align: center;

}

.sub-page-heading h1 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 600;
}

.sub-page-heading p {
    color: #ffffff;
}

.sub-page-heading p a,
.sub-page-heading p i {
    text-decoration: none;
    color: #ffffff;
}

@media(max-width: 768px) {
    .sub-page-heading h1 {
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
    }

    .sub-page-heading {
        padding: 40px 0px;
    }

    .sub-page-heading p {
        font-size: 11px;
    }
}

/* sub page banner end */




/* blog detail  */

.blogs-detail {
    padding-top: 20px;
}

.blogs-detail h4 {
    margin-bottom: 10px;
}

#recent-blog a {
    margin: 10px 0px;
    display: inline-block;
    color: var(--dark-color);
    font-size: 16px;
}

#recent-blog img {
    width: 200px;
}

.blogs-detail ul li {
    line-height: 2;
    list-style: disc;
}

/* Tablet Landscape */
@media screen and (max-width:1200px) {
    #recent-blog a {
        margin: 8px 0px;
        font-size: 14px;
    }

    #recent-blog img {
        width: 120px;
    }

    .blogs-detail ul li {
        font-size: 12px;
    }
}

/* Tablet Portrait */
@media screen and (max-width:992px) {
    #recent-blog img {
        width: 200px;
    }
}

/* Phone Landscape */
@media screen and (max-width:767px) {
    .blogs-detail {
        padding-top: 10px;
    }

    #recent-blog {
        margin-top: 20px;
    }

    .blogs-detail h5 {
        font-size: 18px;
    }
}

/* blog details end */



/* enq page css start ===========================================================*/
.enq-post {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.enq-post img {
    border-radius: 5px;
}

.enq-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-bottom: 20px;
}

.enq-detail p {
    color: #000;
    text-align: justify;
}

.enq-detail h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.enq-detail ul {
    padding-left: 10px;
}

.enq-detail ul li {
    list-style: disc;
    line-height: 1.9;
    font-weight: 500;
    color: #000;
}

.enq-btn button {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.enq-form-btn {
    background-color: var(----secondary-color);
    color: #fff;
}

.enq-form-btn:hover {
    background-color: var(----secondary-color);
    color: #fff;
}


@media(max-width: 767px) {
    .enq-detail ul li {
        font-size: 12px;
        line-height: 1.7;
    }

    .enq-detail h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .enq-post img {
        margin-bottom: 12px;
    }

}

/* enquire page css end ============================================================*/