/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8BC34A;
    --secondary-color: #F5A623;
    --accent-color: #7CB342;
    --dark-color: #2C3E50;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-muted: #6c757d;
    --transition: all 0.3s ease;
}

/* Custom Cursor */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(90, 187, 91, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    transform: translate(-50%, -50%);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
}

.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(90, 187, 91, 0.1);
    border-color: var(--primary-color);
}

.dot-hover {
    transform: translate(-50%, -50%) scale(1.5);
}

@media (max-width: 1024px) {

    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}

/* Scroll Reveal Base */
.reveal {
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Floating Decorative Shapes */
.floating-shape {
    position: fixed;
    pointer-events: none;
    z-index: 1;
}

.floating-shape.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    top: 10%;
    left: 5%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.floating-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    right: 10%;
    opacity: 0.08;
    animation: float 10s ease-in-out infinite reverse;
}

.floating-shape.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    bottom: 30%;
    left: 8%;
    opacity: 0.06;
    animation: float 12s ease-in-out infinite;
}

.floating-shape.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    bottom: 15%;
    right: 5%;
    opacity: 0.07;
    animation: float 9s ease-in-out infinite reverse;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
/* Glassmorphism Navbar */
.navbar {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar.nav-scrolled {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
}

.navbar-brand i {
    color: var(--secondary-color);
}

.brand-highlight {
    color: var(--primary-color);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar .btn-success {
    border-radius: 50px;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.navbar .btn-success:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Dropdown Menu Styles */
.navbar .dropdown-menu {
    background: rgba(44, 62, 80, 0.98);
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transform: translateY(-10px);
    pointer-events: none;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar .dropdown-item:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    border-left-color: var(--secondary-color);
    padding-left: 30px;
}

.navbar .dropdown-item i {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover i {
    color: var(--dark-color);
}

.navbar .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

/* Prevent Bootstrap's default click behavior */
.navbar .dropdown-toggle {
    pointer-events: auto;
}

.navbar .dropdown-toggle:focus {
    outline: none;
}

/* Hero Section - New Design */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0 0 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.03)"/></svg>'),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect x="45" y="45" width="10" height="10" fill="rgba(139,195,74,0.05)" transform="rotate(45 50 50)"/></svg>');
    background-size: 60px 60px, 100px 100px;
    background-position: 0 0, 30px 30px;
    z-index: 1;
}

.hero-section>.container {
    position: relative;
    z-index: 2;
}

/* Animated Background Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -30px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(139, 195, 74, 0.1);
    top: 30%;
    right: 10%;
    animation: rotate 20s linear infinite;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--dark-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: slideInLeft 0.8s ease;
}

.hero-badge i {
    color: #fff;
}

/* Hero Main Title */
.hero-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: slideInLeft 1s ease;
}


.gradient-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Page Header - Used for About, Services, Portfolio etc. */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.03)"/></svg>'),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect x="45" y="45" width="10" height="10" fill="rgba(139,195,74,0.05)" transform="rotate(45 50 50)"/></svg>');
    background-size: 60px 60px, 100px 100px;
    background-position: 0 0, 30px 30px;
    z-index: 1;
}

.page-header>.container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    animation: fadeInDown 0.8s ease-out;
    letter-spacing: -1px;
}

.page-header .breadcrumb {
    background: transparent;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.page-header .breadcrumb-item::before {
    color: #fff;
}

.page-header .breadcrumb-item>a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.page-header .breadcrumb-item>a:hover {
    color: var(--secondary-color);
}

.page-header .breadcrumb-item>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.page-header .breadcrumb-item>a:hover::after {
    width: 100%;
}

/* Animated Page Header Shapes */
.page-header-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    animation: slideInLeft 1.2s ease;
}

/* Hero Features */
.hero-features {
    animation: slideInLeft 1.4s ease;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.hero-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 12px;
}

/* CTA Buttons */
.hero-cta-buttons {
    animation: slideInLeft 1.6s ease;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.4);
    color: #fff;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    animation: slideInLeft 1.8s ease;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Hero Visual Content */
.hero-visual-content {
    position: relative;
    animation: slideInRight 1s ease;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.main-hero-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.main-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.floating-card .card-content h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.floating-card .card-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

/* Decorative Elements */
.deco-element {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.deco-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.deco-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent, var(--secondary-color));
    bottom: -30px;
    right: -30px;
    opacity: 0.3;
}

/* Hero Info Bar */
.hero-info-bar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.info-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title .badge {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background: var(--primary-color) !important;
    color: var(--dark-color);
}

/* About Section Enhancement */
.about-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.decor-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.1;
}

.decor-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.decor-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    bottom: -50px;
    left: -50px;
}

.about-image-new,
.about-image-wrapper {
    position: relative;
    padding: 0;
    width: 100%;
    margin-bottom: 0;
    z-index: 10;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    z-index: 1;
}

.main-img {
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 8px solid #ffffff;
}

.image-wrapper:hover .main-img {
    transform: translateY(-10px);
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -10px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 25px;
    border-radius: 20px;
    color: #fff;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.3);
    animation: floatCard 3s ease-in-out infinite;
}

.exp-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.exp-content .number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-content .text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.img-decor {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    z-index: 0;
}

.decor-top {
    top: -20px;
    left: -20px;
    border: 5px solid var(--primary-color);
    opacity: 0.2;
}

.decor-bottom {
    bottom: -20px;
    right: 40px;
    background: var(--secondary-color);
    opacity: 0.1;
}

.title-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(139, 195, 74, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(139, 195, 74, 0.2);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.services-showcase-section .title-badge {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.5;
}

.about-content-wrapper {
    padding: 0;
}

.description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.about-feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: var(--transition);
}

.about-feature-card:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(139, 195, 74, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.text-box h6 {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
}

.text-box p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-about-custom {
    background: var(--dark-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-about-custom:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 195, 74, 0.3);
}

/* About Stats Section Enhancement */
.about-stats {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbf7 100%);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(139, 195, 74, 0.08);
    border: 1px solid rgba(139, 195, 74, 0.12);
    position: relative;
    margin-top: 50px;
}

.stats-header {
    border-bottom: 2px solid rgba(139, 195, 74, 0.05);
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-header h4 {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-color), #444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.stat-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 195, 74, 0.12);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* Services Showcase Section */
.services-showcase-section {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Removing duplicate block */

.services-showcase-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from {
        opacity: 0.5;
        transform: scale(1);
    }

    to {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.services-showcase-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}

.services-showcase-section .display-5 {
    color: #fff;
    letter-spacing: -1px;
}

.services-showcase-section .lead {
    color: rgba(255, 255, 255, 0.6) !important;
}

.service-showcase-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 45px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: cardEntrance 0.8s cubic-bezier(0.23, 1, 0.32, 1) backwards;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.service-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-showcase-card:hover {
    transform: translateY(-20px) rotateX(10deg) rotateY(3deg);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(139, 195, 74, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.service-showcase-card:hover::before {
    opacity: 1;
}

.service-icon-header {
    width: 80px;
    height: 80px;
    background: rgba(139, 195, 74, 0.15);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: translateZ(30px);
}

.service-showcase-card:hover .service-icon-header {
    background: var(--primary-color);
    transform: rotate(10deg);
}

.service-icon-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-showcase-card:hover .service-icon-header i {
    color: #fff;
    transform: rotate(-10deg);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.3;
    transition: all 0.3s ease;
    transform: translateZ(20px);
    letter-spacing: -0.5px;
}

.service-showcase-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    transform: translateZ(10px);
}

.btn-learn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
    background: transparent;
}

.btn-learn-more::after {
    content: '\F138';
    /* Bootstrap Arrow Right */
    font-family: 'bootstrap-icons';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover {
    color: var(--secondary-color);
}

.btn-learn-more:hover::after {
    transform: translateX(5px);
}

/* Floating Elements for Backdrop */
.service-backdrop-decor {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float 7s ease-in-out infinite;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float 9s ease-in-out infinite reverse;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-feature-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.why-content h5 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.why-image-grid {
    padding: 20px;
}

.why-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-grid-item:hover {
    transform: scale(1.05);
}

.why-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-grid-item:hover img {
    transform: scale(1.1);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.why-grid-item:hover .grid-overlay {
    transform: translateY(0);
}

.grid-overlay h4 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.process-icon i {
    font-size: 2rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon i {
    color: #fff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a252f 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(139,195,74,0.1)"/></svg>');
    opacity: 0.5;
}

.cta-box {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(139, 195, 74, 0.1));
    padding: 60px;
    border-radius: 20px;
    border: 2px solid rgba(139, 195, 74, 0.2);
    position: relative;
    z-index: 1;
}

.cta-box .btn-light {
    background: #fff;
    color: var(--dark-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-box .btn-light:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

/* Services Section */
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 40px;
    color: #fff;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #218838;
    margin-left: 5px;
}

/* Service Features Section */
.service-features {
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.05), rgba(245, 166, 35, 0.05));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(139, 195, 74, 0.1);
    position: relative;
    overflow: hidden;
}

.service-features::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.service-features::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.service-features h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature-highlight {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    height: 100%;
}

.feature-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.feature-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-highlight:hover .feature-icon-small {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.feature-icon-small i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-highlight h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-highlight p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Portfolio Section */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.95) 0%, rgba(139, 195, 74, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    color: #fff;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s;
}

.portfolio-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.5s ease 0.3s;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p,
.portfolio-item:hover .portfolio-overlay .btn {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.slick-slide {
    display: none;
    float: left;

    height: auto !important;
    min-height: 1px;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    /* height: 100%; */
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.client-avatar img {
    width: 60px;
    height: 60px;
}

/* Testimonials Slider */
.testimonials-slider {
    margin: 0 -15px;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonials-slider .slick-slide {
    margin: 0 15px;
}

.testimonials-slider .slick-list {
    margin: 0 -15px;
}

/* Custom Slick Navigation */
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

.testimonials-slider .slick-prev {
    left: -25px;
}

.testimonials-slider .slick-next {
    right: -25px;
}

.testimonials-slider:hover .slick-prev,
.testimonials-slider:hover .slick-next {
    opacity: 1;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
    color: #fff;
    font-size: 20px;
    font-family: 'slick';
}

.testimonials-slider .slick-prev:before {
    content: '←';
}

.testimonials-slider .slick-next:before {
    content: '→';
}

/* Slick Dots */
.testimonials-slider .slick-dots {
    bottom: -40px;
}

.testimonials-slider .slick-dots li button:before {
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonials-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.contact-section .row.g-4 {
    display: flex;
    align-items: stretch;
}

.contact-section .col-lg-4,
.contact-section .col-lg-8 {
    display: flex;
    flex-direction: column;
}

.contact-info,
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 195, 74, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.contact-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 195, 74, 0.05);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(245, 166, 35, 0.2);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-right: 20px;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.4);
}

.contact-item h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(139, 195, 74, 0.05);
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.4);
    color: #fff;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 195, 74, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(245, 166, 35, 0.2);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.contact-form .row {
    position: relative;
    z-index: 1;
}

.contact-form .form-control {
    border: 2px solid rgba(139, 195, 74, 0.1);
    border-radius: 15px;
    padding: 18px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--dark-color);
    font-weight: 500;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.15);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.contact-form .btn-success {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form .btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-form .btn-success:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
    color: #fff;
}

.contact-form .btn-success:hover::before {
    left: 100%;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}

/* Cyber-Minimalist Footer */
.footer {
    background: linear-gradient(rgba(15, 23, 30, 0.92), rgba(15, 23, 30, 0.95)), url('../footer_abstract_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px !important;
    padding-bottom: 40px !important;
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
    overflow: hidden;
}

/* Booking Form Styling */
.booking-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.booking-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group-modern {
    position: relative;
    margin-bottom: 30px;
}

.form-label-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    display: block;
}

.form-input-modern {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #eee;
    background: transparent;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: var(--dark-color);
}

.form-input-modern:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

/* Choice Chips */
.choice-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.choice-chip {
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid #eee;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    font-size: 0.95rem;
}

.choice-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.choice-chip.active {
    background: #7C4DFF;
    /* Purple from the image */
    border-color: #7C4DFF;
    color: #fff;
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.3);
    transform: translateY(-2px);
}

.btn-submit-booking {
    background: #FFC107;
    /* Yellow/Orange from the image */
    color: #000;
    border: none;
    padding: 18px 60px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    margin: 40px auto 0;
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.3);
}

.btn-submit-booking:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.4);
}

.btn-submit-booking:active {
    transform: scale(0.98);
}



.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(139, 195, 74, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.03) 0%, transparent 40%);
    pointer-events: none;
}


.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* .footer-brand img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-brand img:hover {
    filter: brightness(0) invert(1) sepia(1) saturate(100) hue-rotate(50deg);
    transform: scale(1.05);
} */

.footer h4,
.footer h5,
.footer h6 {
    color: #fff;
}

.footer p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-links li {
    position: relative;
    padding-left: 0;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: #fff !important;
    transform: translateX(5px);
}

.footer-links li a:hover::after {
    width: 100%;
}


.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
}

.footer-social .social-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(245, 166, 35, 0.3);
}


.footer .footer-link {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer .footer-link:hover {
    color: var(--secondary-color) !important;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 12px 20px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #218838;
    transform: translateY(-5px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-5px) rotate(8deg);
}

/* FAQ Section */
.faq-section {
    background: #fdfdfd;
}

.faq-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 22px 25px;
    background: #fff;
    color: var(--dark-color);
    font-size: 1.1rem;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--primary-color);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 0 25px 25px 25px;
    background: #fff;
    color: #666;
    line-height: 1.8;
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}


/* Responsive Design */
@media (max-width: 991px) {
    .hero-main-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .hero-main-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        height: 500px;
    }

    .floating-card {
        padding: 15px;
    }

    .card-1 {
        top: 5%;
        right: 0;
    }

    .card-2 {
        bottom: 25%;
        left: 0;
    }

    .card-3 {
        bottom: 5%;
        right: 5%;
    }

    .hero-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 80px 0 0 0;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .hero-main-title {
        font-size: 2.0rem;
    }


    .hero-description {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .floating-card {
        padding: 12px;
        gap: 10px;
    }

    .floating-card .card-icon {
        width: 40px;
        height: 40px;
    }

    .floating-card .card-icon i {
        font-size: 1.2rem;
    }

    .floating-card .card-content h5 {
        font-size: 0.8rem;
    }

    .floating-card .card-content p {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon i {
        font-size: 1.2rem;
    }

    .info-value {
        font-size: 0.9rem;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 45px 25px 25px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .why-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .why-grid-item {
        height: 180px;
    }

    .process-card {
        padding: 35px 25px;
    }

    .cta-box {
        padding: 40px 30px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .display-3 {
        font-size: 2rem;
    }

    .hero-main-title {
        font-size: 1.6rem;
    }


    .hero-description {
        font-size: 0.95rem;
    }

    .hero-features .feature-item {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 10px);
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-image-wrapper {
        height: 300px;
    }

    .floating-card {
        display: none;
    }

    .shape-circle {
        display: none;
    }

    .shape-triangle {
        display: none;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .service-card,
    .testimonial-card,
    .contact-form {
        padding: 25px;
    }

    .service-image {
        height: 200px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 1.5rem;
    }

    .service-content {
        padding: 40px 20px 20px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .btn-learn-more {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .why-feature-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
    }

    .why-icon i {
        font-size: 1.5rem;
    }

    .why-grid-item {
        height: 150px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .process-icon {
        width: 70px;
        height: 70px;
    }

    .process-icon i {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}

/* Custom Page Styles */
.custom-page-content {
    background: #f8f9fa;
}

.page-article {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-article h1 {
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 2.5rem;
}

.page-article h2 {
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.8rem;
}

.page-article h3 {
    color: var(--dark-color);
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.4rem;
}

.page-article p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.page-article ul,
.page-article ol {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.page-article li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.page-article a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-article a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-article img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-article blockquote {
    border-left: 4px solid var(--secondary-color);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(245, 166, 35, 0.05);
    font-style: italic;
    color: var(--text-color);
}

.page-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.page-article table thead {
    background: var(--primary-color);
    color: white;
}

.page-article table th,
.page-article table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.page-article table tbody tr:nth-child(even) {
    background: #f5f5f5;
}

.page-article pre {
    background: #f4f4f4;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    overflow-x: auto;
    border-radius: 4px;
}

.page-article code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

/* Responsive Custom Page */
@media (max-width: 768px) {
    .page-article {
        padding: 20px;
    }

    .page-article h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .page-article h2 {
        font-size: 1.5rem;
        margin-top: 20px;
    }

    .page-article h3 {
        font-size: 1.2rem;
    }

    .page-article p,
    .page-article li {
        font-size: 0.95rem;
    }

    .custom-page-content {
        padding: 20px 0;
    }
}