/* Previous styles remain the same... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #0a2463;
    --secondary-color: #3e92cc;
    --accent-color: #d8315b;
    --highlight-color: #f9ca24;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%
    );
    /* min-height: 100%; */
    color: var(--text-light);
    perspective: 1500px;
    transform-style: preserve-3d;
    padding-top: 80px;

    /* display: flex;
            flex-direction: column; */
}


/*.content-wrapper {*/
/*    flex: 1;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: var(--text-light);
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%
    );
    z-index: -2;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%,
    100% {
        background: linear-gradient(
            135deg,
            var(--primary-color) 0%,
            var(--secondary-color) 50%,
            var(--accent-color) 100%
        );
    }

    25% {
        background: linear-gradient(
            135deg,
            #1a3a7c 0%,
            #4ea2dc 50%,
            #e84165 100%
        );
    }

    50% {
        background: linear-gradient(
            135deg,
            #0f1e4a 0%,
            #2c7ab8 50%,
            #c92a4a 100%
        );
    }

    75% {
        background: linear-gradient(
            135deg,
            #1d3566 0%,
            #5a9fd4 50%,
            #d23a5a 100%
        );
    }
}

/* Header Styles */
.main-header {
    background: rgba(10, 36, 99, 0.85);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--glass-border);
    /* padding: 0.8rem 0; */
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transform: translateZ(30px);
    background: linear-gradient(90deg, #fff, var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(249, 202, 36, 0.4);
    transition: all 0.3s ease;
    margin-right: 0;
    z-index: 1000;
}
.navbar-brand img {
    height: 80px;
}

.navbar-brand:hover {
    transform: translateZ(40px) scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.6rem 1.2rem !important;
    transform-style: preserve-3d;
    margin: 0 0.3rem;
    border-radius: 25px;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--secondary-color),
        var(--highlight-color)
    );
    transition: all 0.4s ease;
    transform: translateX(-50%) translateZ(-10px);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.7);
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-3px) translateZ(10px);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    background: var(--glass-bg);
}

/* Enhanced Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    background: rgba(10, 36, 99, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 0.8rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.8rem;
    min-width: 250px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid rgba(10, 36, 99, 0.95);
    }
}

/* Mobile click dropdown */
@media (max-width: 991px) {
    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        display: none;
    }

    .dropdown.show .dropdown-menu {
        display: block;
    }

    .dropdown-menu::before {
        display: none;
    }
}

.dropdown-item {
    color: var(--text-light);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.3rem;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--secondary-color),
        var(--highlight-color)
    );
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover::before {
    width: 100%;
}

.dropdown-item:hover {
    color: #fff;
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-item:hover i {
    color: var(--highlight-color);
    transform: scale(1.2);
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-arrow {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Enhanced Hamburger Menu */
.navbar-toggler {
    border: 2px solid var(--glass-border);
    padding: 0.5rem;
    width: 50px;
    height: 50px;
    position: relative;
    background: var(--glass-bg);
    outline: none !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    border-color: var(--highlight-color);
    box-shadow: 0 0 20px rgba(249, 202, 36, 0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 20px rgba(249, 202, 36, 0.3);
}

.hamburger-lines {
    display: block;
    width: 30px;
    height: 22px;
    position: relative;
    margin: 0 auto;
    z-index: 1000;
}

.hamburger-lines span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-lines span:nth-child(1) {
    top: 0px;
}

.hamburger-lines span:nth-child(2) {
    top: 9px;
}

.hamburger-lines span:nth-child(3) {
    top: 18px;
}

.navbar-toggler:not(.collapsed) .hamburger-lines span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.navbar-toggler:not(.collapsed) .hamburger-lines span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler:not(.collapsed) .hamburger-lines span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Mobile Sidebar Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 36, 99, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 80px 20px 20px;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        width: 100%;
        padding: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 1rem !important;
        border-radius: 10px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 13px;
    }

    .navbar-nav .nav-link:hover {
        background: var(--glass-bg);
        transform: none;
    }

    .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 10px;
        padding: 0.5rem;
        margin-top: 0.5rem;
        margin-left: 1rem;
    }

    .dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Close button for mobile menu */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--text-light);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--glass-bg);
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .mobile-menu-close:hover {
        background: var(--highlight-color);
        color: var(--primary-color);
        transform: rotate(90deg);
    }
}

/* Hero Section */
.hero-section {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(52, 152, 219, 0.2),
        rgba(249, 202, 36, 0.1)
    );
    filter: blur(40px);
    animation: floatShape 20s infinite ease-in-out;
}

.hero-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation-delay: 5s;
}

.hero-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.content-section {
    z-index: 2;
    transform: translateZ(80px);
    animation: fadeInLeft 1.2s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--highlight-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.content-section h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(90deg, #fff, var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 3s infinite alternate;
    transform: translateZ(50px);
    font-weight: 900;
    letter-spacing: -1px;
}

.typing-container {
    font-size: clamp(1rem, 2vw, 1.2em);
    margin-bottom: 2.5rem;
    max-width: 100%;
    line-height: 1.7;
    opacity: 0.95;
    animation: fadeIn 1.8s ease-out;
    transform: translateZ(40px);
}

.typing-container span {
    color: var(--highlight-color);
    font-weight: 700;
    border-right: 3px solid var(--highlight-color);
    animation: blink 0.8s infinite;
    text-shadow: 0 0 15px rgba(249, 202, 36, 0.6);
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: fadeInUp 2s ease-out;
    transform: translateZ(60px);
    flex-wrap: wrap;
}

.custom-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.custom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: -1;
}

.custom-btn:hover::before {
    transform: translateX(0);
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--secondary-color), #2980b9);
    color: white;
    transform: translateZ(30px);
}

.btn-primary-custom:hover {
    transform: translateY(-5px) translateZ(40px) rotateX(-10deg);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.5);
}

.btn-secondary-custom {
    background: linear-gradient(45deg, var(--highlight-color), #f0b90b);
    color: var(--primary-color);
    transform: translateZ(30px);
}

.btn-secondary-custom:hover {
    transform: translateY(-5px) translateZ(40px) rotateX(-10deg);
    box-shadow: 0 20px 40px rgba(249, 202, 36, 0.5);
}

/* Circle Container Styles */
.circle-container {
    position: relative;
    width: 100%;
    height: clamp(400px, 60vh, 600px);
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.central-circle {
    position: absolute;
    width: clamp(100px, 15vw, 140px);
    height: clamp(100px, 15vw, 140px);
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(52, 152, 219, 0.8);
    z-index: 10;
    transform: translateZ(50px);
    animation: pulse 3s infinite alternate;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.central-circle i {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #fff;
    animation: float 4s ease-in-out infinite;
}

.rotating-container {
    position: absolute;
    width: clamp(300px, 50vw, 450px);
    height: clamp(300px, 50vw, 450px);
    animation: rotate 40s linear infinite;
    transform-style: preserve-3d;
}

.outer-circle {
    position: absolute;
    width: clamp(60px, 10vw, 90px);
    height: clamp(60px, 10vw, 90px);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    border: 2px solid var(--glass-border);
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.outer-circle i {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: var(--highlight-color);
    transition: all 0.4s ease;
}

.outer-circle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateZ(40px) scale(1.15);
    box-shadow: 0 0 40px rgba(249, 202, 36, 0.6);
    border-color: var(--highlight-color);
}

.outer-circle:hover i {
    color: #fff;
    transform: scale(1.3) rotateY(360deg);
}

.circle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-2 {
    top: 15%;
    right: 15%;
}

.circle-3 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.circle-4 {
    bottom: 15%;
    right: 15%;
}

.circle-5 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-6 {
    bottom: 15%;
    left: 15%;
}

.circle-7 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.circle-8 {
    top: 15%;
    left: 15%;
}

/* Section Base Styles */
.section-padding {
    padding: clamp(2rem, 8vw, 3rem) 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(249, 202, 36, 0.4);
    transform: translateZ(30px);
    position: relative;
    text-transform: capitalize;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--secondary-color),
        var(--highlight-color)
    );
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(249, 202, 36, 0.5);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-align: center;
    /* color: var(--text-muted); */
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: linear-gradient(
        180deg,
        rgba(10, 36, 99, 0.4),
        rgba(62, 146, 204, 0.3)
    );
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--highlight-color),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    /* margin-bottom: 2rem; */
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
            transform: rotate(45deg);
            transition: all 0.5s ease;
            opacity: 0;
        } */

/* .service-card:hover::before {
            opacity: 1;
        } */

/* .service-card:hover {
            transform: translateY(-15px) translateZ(30px) rotateX(5deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--highlight-color);
        } */

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(249, 202, 36, 0.5);
    background: linear-gradient(135deg, var(--highlight-color), #f0b90b);
}

.service-icon {
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.4s ease;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    transform: translateZ(15px);
}

.service-description {
    font-size: 1rem;
    /*  color: var(--text-muted); */
    line-height: 1.7;
    transform: translateZ(10px);
}

.service-detals-button {
    /* background: linear-gradient(45deg, var(--highlight-color), #f0b90b); */
    color: #0a2463;
    box-shadow: 0 10px 20px rgba(249, 202, 36, 0.4);
    width: 100%;
    padding: 0.5rem;
    background: linear-gradient(45deg, #c59b1b, #2980b9);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}
.service-detals-button {
    width: 100%;
    color: rgb(0, 0, 0);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.7rem;
    background: linear-gradient(45deg, #ffc107, #f2bd11);
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 50px;
    transition: 0.3s;
}

.service-detals-button:hover {
    background-color: var(--accent-yellow);
}

/* Testimonial Section */
.testimonial-section {
    /* background: linear-gradient(
        180deg,
        rgba(62, 146, 204, 0.3),
        rgba(216, 49, 91, 0.2)
    ); */

    background: linear-gradient(180deg, rgb(63 88 105 / 30%), rgb(0 0 0 / 20%));
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--highlight-color);
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.testimonial-content::after {
    content: '"';
    font-size: 4rem;
    color: var(--highlight-color);
    position: absolute;
    bottom: -40px;
    right: -20px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--highlight-color);
}

.testimonial-info h4 {
    font-size: 1.2rem;
    color: var(--highlight-color);
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    font-size: 1rem;
    /* color: var(--text-muted); */
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background: var(--highlight-color);
    transform: scale(1.2);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(
        180deg,
        rgba(216, 49, 91, 0.2),
        rgba(10, 36, 99, 0.3)
    );
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    width: 350px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}
.code-lines .pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--highlight-color);
    box-shadow: 0 20px 40px rgba(249, 202, 36, 0.3);
}

.pricing-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--highlight-color);
    color: var(--primary-color);
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    /* color: var(--text-muted); */
}

.pricing-period {
    font-size: 1rem;
    /* color: var(--text-muted); */
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--highlight-color);
    font-size: 1rem;
}

.pricing-btn {
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(45deg, var(--secondary-color), #2980b9);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(45deg, var(--highlight-color), #f0b90b);
    color: var(--primary-color);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4);
}

.pricing-card.featured .pricing-btn:hover {
    box-shadow: 0 10px 20px rgba(249, 202, 36, 0.4);
}

/* About Us Section */
.about-section {
    /* background: linear-gradient(
        180deg,
        rgba(10, 36, 99, 0.3),
        rgba(62, 146, 204, 0.2)
    ); */
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image-wrapper {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(52, 152, 219, 0.2),
        rgba(249, 202, 36, 0.2)
    );
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about-image-wrapper:hover .about-image {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--highlight-color);
    font-weight: 800;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    /* margin-top: 4rem; */
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--secondary-color),
        var(--highlight-color)
    );
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px) translateZ(20px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--highlight-color);
    display: block;
    text-shadow: 0 0 20px rgba(249, 202, 36, 0.5);
}

.stat-label {
    font-size: 1rem;
    /* color: var(--text-muted); */
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Process Section */
.process-section {
    /* background: linear-gradient(
        180deg,
        rgba(62, 146, 204, 0.2),
        rgba(10, 36, 99, 0.3)
    ); */

    background: linear-gradient(
        180deg,
        rgb(0 0 0 / 20%),
        rgba(10, 36, 99, 0.3)
    );
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.process-timeline {
    position: relative;
    /* padding: 3rem 0; */
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        var(--secondary-color),
        var(--highlight-color)
    );
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(249, 202, 36, 0.5);
}

.process-item {
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.process-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-content {
    flex: 1;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
        margin: 0 0 0 3rem;
    transition: all 0.4s ease;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.process-content::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.process-item:nth-child(even) .process-content::before {
    right: -20px;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent transparent
        var(--glass-bg);
}

.process-item:nth-child(odd) .process-content::before {
    left: -20px;
    border-width: 15px 20px 15px 0;
    border-color: transparent var(--glass-bg) transparent transparent;
}

.process-content:hover {
    transform: translateZ(30px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--highlight-color);
}

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.6);
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.process-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.process-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-section-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
    position: relative;
    overflow: hidden;
}

.process-section-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(52, 152, 219, 0.2),
        rgba(249, 202, 36, 0.2)
    );
    z-index: 1;
}

.process-section-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.process-section-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Why Choose Us Section */
.why-section {
    /* background: linear-gradient(
        180deg,
        rgba(10, 36, 99, 0.3),
        rgba(62, 146, 204, 0.2)
    ); */
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(249, 202, 36, 0.1) 0%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-15px) translateZ(30px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--highlight-color);
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--highlight-color), #f0b90b);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(249, 202, 36, 0.4);
    transition: all 0.5s ease;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(249, 202, 36, 0.6);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    /*  color: var(--text-muted); */
    line-height: 1.7;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(
        180deg,
        rgba(62, 146, 204, 0.3),
        rgba(216, 49, 91, 0.2)
    );
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-15px) translateZ(30px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--highlight-color);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--highlight-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(249, 202, 36, 0.4);
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    /* color: var(--text-muted); */
    font-size: 0.9rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--highlight-color);
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.3;
    transform: translateZ(15px);
}

.blog-excerpt {
    font-size: 1rem;
    /* color: var(--text-muted); */
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    transform: translateZ(10px);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--highlight-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateZ(15px);
}

.blog-read-more:hover {
    color: #fff;
    transform: translateZ(20px) translateX(5px);
}

/* Footer */
.main-footer {
    background: rgba(10, 36, 99, 0.9);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1000;
    transform-style: preserve-3d;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--glass-border);
    padding: 3rem 0 1.5rem;
    flex-shrink: 0;
}

.footer-content {
    transform: translateZ(30px);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #fff, var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(249, 202, 36, 0.4);
    display: inline-block;
    /* margin-bottom: 1.5rem; */
    transition: all 0.3s ease;
}
.footer-logo img {
    height: 100px;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    /* color: var(--text-muted); */
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--secondary-color),
        var(--highlight-color)
    );
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--highlight-color);
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.social-icons a:hover {
    color: var(--highlight-color);
    transform: translateY(-5px) scale(1.1);
    background: rgba(249, 202, 36, 0.2);
    box-shadow: 0 10px 25px rgba(249, 202, 36, 0.4);
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    /* color: var(--text-muted); */
    font-size: 1rem;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    transform-style: preserve-3d;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: particleFloat 25s linear infinite;
    transform-style: preserve-3d;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: var(--glass-bg);
    border-radius: 50%;
    filter: blur(5px);
    animation: floatElement 20s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 30s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 30%;
    animation-delay: 6s;
    animation-duration: 22s;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) translateZ(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateZ(80px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.95;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(249, 202, 36, 0.6);
    }

    to {
        text-shadow: 0 0 40px rgba(249, 202, 36, 0.8),
            0 0 50px rgba(249, 202, 36, 0.6);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotateX(0);
    }

    50% {
        transform: translateY(-15px) rotateX(5deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px rgba(52, 152, 219, 0.8);
        transform: translateZ(50px) scale(1);
    }

    100% {
        box-shadow: 0 0 50px rgba(52, 152, 219, 1);
        transform: translateZ(60px) scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(120vh) translateX(0) rotate(0deg) translateZ(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-20vh) translateX(100px) rotate(360deg)
            translateZ(50px);
        opacity: 0;
    }
}

@keyframes floatElement {
    0%,
    100% {
        transform: translate(0, 0) translateZ(0);
    }

    25% {
        transform: translate(30px, -30px) translateZ(40px);
    }

    50% {
        transform: translate(-20px, 20px) translateZ(80px);
    }

    75% {
        transform: translate(25px, 25px) translateZ(40px);
    }
}

@keyframes blink {
    0%,
    50% {
        border-color: var(--highlight-color);
    }

    51%,
    100% {
        border-color: transparent;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        gap: 3rem;
    }

    .contact-container {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .content-section h1 {
        font-size: 2.8rem;
    }

    .typing-container {
        font-size: 1rem;
    }

    .circle-container {
        height: 400px;
    }

    .rotating-container {
        width: 350px;
        height: 350px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-item {
        flex-direction: row !important;
        margin-left: 70px;
    }

    .process-number {
        left: 30px;
        transform: translateX(-50%);
    }

    .process-content::before {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-15px) scale(1.02);
    }

    .blog-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .content-section h1 {
        font-size: 2.2rem;
    }

    .typing-container {
        font-size: 1rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .custom-btn {
        width: 70%;
        /* max-width: 300px; */
        display: flex;
        justify-content: center;
    }

    .circle-container {
        height: 350px;
    }

    .rotating-container {
        width: 300px;
        height: 300px;
    }

    .central-circle {
        width: 100px;
        height: 100px;
    }

    .central-circle i {
        font-size: 2.5rem;
    }

    .outer-circle {
        width: 60px;
        height: 60px;
    }

    .outer-circle i {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item {
        margin-left: 50px;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .footer-content {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slide {
        padding: 2rem;
    }

    .testimonial-content {
        font-size: 1rem;
    }

    .blog-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .content-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section {
    /* min-height: 100vh; */
    display: flex
;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 1rem 0;
}

.navbar-brand img {
    height: 65px;
}

    .typing-container {
        font-size: 1rem;
            margin-bottom: 2rem;
    }

    .custom-btn {
              padding: 0.8rem 0rem;
        font-size: 0.9rem;
        width: 70%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }
    .service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
    transition: all 0.4s 
ease;
}
.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    transform: translateZ(15px);
}

.pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.pricing-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

    .circle-container {
        height: 300px;
    }

    .rotating-container {
        width: 280px;
        height: 280px;
    }

    .central-circle {
        width: 80px;
        height: 80px;
    }

    .central-circle i {
        font-size: 2rem;
    }

    .outer-circle {
        width: 50px;
        height: 50px;
    }

    .outer-circle i {
        font-size: 1.2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .process-item {
        margin-left: 40px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .process-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .about-text {
        padding: 1rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s 
ease;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--highlight-color);
    display: block;
    margin-bottom: 0.5rem;
}
   
   .stats-container {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    /* margin-top: 4rem; */
} 

    .testimonial-slide {
        padding: 1.5rem;
    }

    .testimonial-content {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-card {
        width: 100%;
        max-width: 360px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-title {
        font-size: 1.3rem;
    }
    .header-quote {
        display: none;
    }
}

/* blog details page */
/* Blog Header */
.blog-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.blog-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(249, 202, 36, 0.6);
    }

    to {
        text-shadow: 0 0 40px rgba(249, 202, 36, 0.8),
            0 0 50px rgba(249, 202, 36, 0.6);
    }
}

.blog-subtitle {
    font-size: 1.2rem;
    /* color: var(--text-muted); */
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Search Box */
.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--highlight-color);
    box-shadow: 0 0 20px rgba(249, 202, 36, 0.3);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    /* color: var(--text-muted); */
    font-size: 1rem;
}

/* Categories */
.category-list {
    list-style: none;
    padding: 0;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    padding-left: 0.5rem;
    color: var(--highlight-color);
}

.category-item.active {
    color: var(--highlight-color);
    font-weight: 600;
}

.category-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.85rem;
}

/* Tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tag.active {
    background: var(--highlight-color);
    color: var(--primary-color);
    border-color: var(--highlight-color);
}

/* Recent Posts */
.recent-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.recent-post:last-child {
    border-bottom: none;
}

.recent-post:hover {
    padding-left: 0.5rem;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-content {
    flex-grow: 1;
}

.recent-post-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.3;
}

.recent-post-date {
    /* color: var(--text-muted); */
    font-size: 0.85rem;
}

/* Archive */
.archive-list {
    list-style: none;
    padding: 0;
}

.archive-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.archive-item:last-child {
    border-bottom: none;
}

.archive-item:hover {
    padding-left: 0.5rem;
    color: var(--highlight-color);
}

/* Main Content */
.blog-main {
    min-height: 100vh;
}

/* Blog Controls */
.blog-controls {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.view-btn.active {
    background: var(--highlight-color);
    color: var(--primary-color);
    border-color: var(--highlight-color);
}

.sort-dropdown {
    position: relative;
}

.sort-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Blog Posts Grid */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-posts.list-view {
    grid-template-columns: 1fr;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--highlight-color);
}

.blog-card.list-view {
    display: flex;
    flex-direction: row;
    height: 200px;
}

.blog-card.list-view:hover {
    transform: translateX(10px);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card.list-view .blog-image {
    width: 300px;
    height: 100%;
    flex-shrink: 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--highlight-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(249, 202, 36, 0.4);
    z-index: 1;
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    /* color: var(--text-muted); */
    font-size: 0.9rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--highlight-color);
}

.blog-post-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-post-title {
    color: var(--highlight-color);
}

.blog-excerpt {
    font-size: 1rem;
    /* color: var(--text-muted); */
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--highlight-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-read-more:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.page-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--highlight-color);
    color: var(--primary-color);
    border-color: var(--highlight-color);
}

/* Newsletter */
.newsletter-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.newsletter-description {
    /* color: var(--text-muted); */
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--highlight-color);
}

.newsletter-btn {
    background: linear-gradient(45deg, var(--secondary-color), #2980b9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4);
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--glass-border);
    border-top: 3px solid var(--highlight-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* No Results */
.no-results {
    display: none;
    text-align: center;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.no-results-icon {
    font-size: 4rem;
    /* color: var(--text-muted); */
    margin-bottom: 1rem;
}

.no-results-text {
    font-size: 1.2rem;
    /* color: var(--text-muted); */
}

/* Responsive */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        order: 2;
    }

    .blog-main {
        order: 1;
    }

    .blog-posts {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-controls {
        /*flex-direction: column;*/
        align-items: stretch;
    }

    .blog-posts {
        grid-template-columns: 1fr;
    }

    .blog-card.list-view {
        flex-direction: column;
        height: auto;
    }

    .blog-card.list-view .blog-image {
        width: 100%;
        height: 200px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Mobile Menu Toggle */
.mobile-sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: var(--highlight-color);
    border-radius: 50%;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(249, 202, 36, 0.4);
    transition: all 0.3s ease;
}

.mobile-sidebar-toggle:hover {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .mobile-sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blog-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 36, 99, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: 2rem;
    }

    .blog-sidebar.active {
        right: 0;
    }
}

/***********************  contact page************************* */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.contact-hero {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-subtitle {
    font-size: 1rem;
    /* color: var(--text-muted); */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--highlight-color);
    margin-right: 1.5rem;
    min-width: 50px;
    text-align: center;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    /* color: var(--text-muted); */
    margin: 0;
}

.social-section {
    margin-top: 2rem;
}

.social-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--highlight-color);
    box-shadow: 0 0 20px rgba(249, 202, 36, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--secondary-color), #2980b9);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4);
}

.map-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    /*padding: 3rem;*/
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.map-container {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: var(--text-muted); */
}

.faq-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.1);
    color: var(--highlight-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    /* color: var(--text-muted); */
    padding: 0 1.5rem 1.5rem;
}

.office-locations {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.location-icon {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.location-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.location-address {
    /* color: var(--text-muted); */
    margin-bottom: 1rem;
}

.location-phone {
    color: var(--highlight-color);
    text-decoration: none;
}

.location-phone:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/***********************  contact page ************************* */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.about-hero {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.about-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-subtitle {
    font-size: 1rem;
    /* color: var(--text-muted); */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: capitalize;
} */

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text h3 {
    font-size: 1.5rem;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    /*margin-bottom: 1.5rem;*/
}

.values-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.value-description {
    /* color: var(--text-muted); */
    line-height: 1.6;
}

.team-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 3px solid var(--highlight-color);
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.member-bio {
    /* color: var(--text-muted); */
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    /* color: var(--text-muted); */
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--highlight-color);
}

.stats-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--highlight-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    /* color: var(--text-muted); */
}

.culture-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.culture-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.culture-image img {
    width: 100%;
    height: auto;
    display: block;
}

.culture-features {
    list-style: none;
    padding: 0;
}

.culture-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.culture-features i {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 30px;
}

.cta-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1rem;
    /* color: var(--text-muted); */
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), #2980b9);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--highlight-color);
    padding: 1rem 2rem;
    border: 2px solid var(--highlight-color);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

    .story-content,
    .culture-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ********************************************* service details page *********************************************** */
:root {
    --primary-dark: #0f0f0f;
    --secondary-dark: #1a1a1a;
    --accent-gold: #ffd700;
    --accent-yellow: #ffc107;
    --accent-orange: #ff9800;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --card-bg: rgba(30, 30, 30, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --gradient-gold: linear-gradient(
        135deg,
        var(--accent-gold),
        var(--accent-yellow)
    );
}

/* Lighting effect */
/* body::before {
            content: "";
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(ellipse at center,
                    rgba(255, 215, 0, 0.1) 0%,
                    transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .container-fluid {
            position: relative;
            z-index: 1;
        } */

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(
        135deg,
        rgba(15, 15, 15, 0.95) 0%,
        rgba(26, 26, 26, 0.9) 50%,
        rgba(15, 15, 15, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.08),
        transparent
    );
    animation: shimmer 8s infinite;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-gold),
        transparent
    );
    animation: scan 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.page-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-title-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-icon-container {
    position: relative;
}

.page-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.page-icon:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: var(--gradient-gold);
    opacity: 0.3;
    z-index: 1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

.page-title-info {
    display: flex;
    flex-direction: column;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.page-subtitle {
    font-size: 0.95rem;
    /* color: var(--text-muted); */
    margin: 5px 0 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.breadcrumb-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 8px 15px;
}

.breadcrumb-item {
    /* color: var(--text-muted); */
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    /* color: var(--text-muted); */
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.breadcrumb-item.active {
    color: var(--accent-gold);
    font-weight: 500;
    gap: 5px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin: 0 10px;
    /* color: var(--text-muted); */
    font-size: 0.7rem;
}

.page-actions {
    display: flex;
    gap: 10px;
}

.page-action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.page-action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.page-action-btn:hover::before {
    left: 100%;
}

.page-action-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-action-btn i {
    font-size: 1rem;
}

/* Hero Section */

/* 
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 15px;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
        animation: glow 3s ease-in-out infinite alternate;
    } */

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    }
}

/* Web Development Illustration */
.web-illustration {
    position: relative;
    /*height: 300px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 30px;*/
}

.browser-frame {
    width: 370px;
    height: 270px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    border: 2px solid var(--accent-gold);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.browser-header {
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background-color: #ff5f56;
}

.dot-yellow {
    background-color: #ffbd2e;
}

.dot-green {
    background-color: #27c93f;
}

.browser-content {
    height: calc(100% - 30px);
    background: #000;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.code-lines {
    font-family: "Courier New", monospace;
    font-size: 10px;
    color: #ffffff;
    opacity: 0.8;
}

.code-line {
    margin-bottom: 5px;
    animation: typing 3s steps(30) infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.tech-badges {
    position: absolute;
    top: -20px;
    right: 5px;
    display: flex;
    gap: 10px;
}

.tech-badge {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 20px;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.tech-badge:nth-child(2) {
    animation-delay: 0.5s;
}

.tech-badge:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.tech-badge:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* service-details Cards Section */
.service-details-cards-section {
    padding: 20px 0;
}

/* Enhanced service-details Cards */
.service-details-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-yellow);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-details-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
}

.service-details-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
}

.service-details-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.service-details-card:hover .service-details-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

.service-details-title {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-details-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-details-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-details-features li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-details-features li:last-child {
    border-bottom: none;
}

.service-details-features i {
    color: var(--accent-gold);
    margin-top: 3px;
    font-size: 1rem;
}

.service-details-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.service-details-price .currency {
    font-size: 1.2rem;
}

.service-details-price .period {
    font-size: 1rem;
    /* color: var(--text-muted); */
    font-weight: 400;
}

.service-details-btn {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.service-details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    color: var(--primary-dark);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Sidebar Quote Form */
.quote-sidebar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
    position: sticky;
    top: 20px;
    margin-top: 30px;
}

.quote-title {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-light);
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    color: var(--text-light);
}

.form-control::placeholder {
    /* color: var(--text-muted); */
}

.btn-quote {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Other services-details Box */
.other-services-details {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.other-services-details-title {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.other-service-details-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.other-service-details-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.other-service-details-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent-gold);
    font-size: 18px;
}

.other-service-details-info {
    flex: 1;
}

.other-service-details-name {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 3px;
}

.other-service-details-desc {
    /* color: var(--text-muted); */
    font-size: 0.85rem;
}

.other-service-details-arrow {
    /* color: var(--text-muted); */
    font-size: 14px;
    transition: all 0.3s ease;
}

.other-service-details-item:hover .other-service-details-arrow {
    color: var(--accent-gold);
    transform: translateX(3px);
}

/* Info Cards */
.info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.info-card-title {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card-text {
    /*  color: var(--text-muted); */
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Feature Comparison Table */

.comparison-title {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    border: 1px solid #ffffff;
}

.comparison-table th {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 15px;
    text-align: left;
}

.comparison-table td {
    background: var(--card-bg);
    padding: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.comparison-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .feature-check {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.comparison-table .feature-cross {
    /* color: var(--text-muted); */
    font-size: 1.2rem;
}

/* Process Section with Info Cards */
.process-section {
    margin: 40px 0;
    padding: 40px 0;
}

.process-title {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.process-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-timeline {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 2px;
    background: rgba(255, 215, 0, 0.3);
}

.process-step {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 21px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    z-index: 1;
}

.process-title-small {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.process-description {
    color: var(--text-light);
    line-height: 1.6;
}

.info-cards-container {
    flex: 1;
    min-width: 300px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title-section {
        width: 100%;
    }

    .breadcrumb-section {
        width: 100%;
        justify-content: center;
    }

    .page-actions {
        width: 100%;
        justify-content: center;
    }

    .process-container {
        flex-direction: column;
    }

    .process-timeline::before {
        left: 15px;
    }

    .process-step {
        padding-left: 40px;
    }

    .process-step::before {
        left: 6px;
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .quote-sidebar {
        position: relative;
        margin-top: 30px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .breadcrumb {
        padding: 6px 12px;
    }

    .page-action-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .browser-frame {
        width: 300px;
        height: 190px;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }

    .service-details-card {
        margin-bottom: 20px;
    }

    .service-details-title {
        font-size: 1.5rem;
    }

    .service-details-price {
        font-size: 1.5rem;
    }

    .process-title {
        font-size: 1.5rem;
    }

    .comparison-title {
        font-size: 1.5rem;
    }

    .other-servce-details-item {
        padding: 10px;
    }

    .other-service-details-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 41px 0 24px 0;
    }
.story-text h3 {
    font-size: 1.3rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.about-hero, .story-section, .values-section, .stats-section, .culture-section, .contact-hero{
    
margin-bottom: 1.5rem;

}
.contact-item {
    margin-bottom: 1.2rem;
    padding: 1.2rem;
}
.contact-section-title {
    font-size: 1.3rem;
}

.blog-post-title {
    font-size: 1.3rem;
}
.newsletter-title{
    font-size: 1.5rem;
 }

    .page-title-section {
        gap: 15px;
    }

    .page-title {
        font-size: 1.3rem;
    }

    .page-subtitle {
        font-size: 0.85rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .page-actions {
        gap: 8px;
    }

    .page-action-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .page-action-btn span {
        display: none;
    }

    .browser-frame {
        width: 260px;
        height: 165px;
    }

    .service-details-title {
        font-size: 1.3rem;
    }

    .service-details-price {
        font-size: 1.3rem;
    }

    .process-title {
        font-size: 1.3rem;
    }

    .comparison-title {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    /* .hero-subtitle {
            font-size: 1rem;
        } */

    .service-details-card {
        padding: 20px;
    }

    .service-details-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .info-card {
        padding: 15px;
    }

    .info-card-title {
        font-size: 1rem;
    }

    .info-card-text {
        font-size: 0.85rem;
    }

    .other-services-details-title {
        font-size: 1rem;
    }

    .other-service-details-item {
        padding: 8px 10px;
    }

    .other-service-details-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-right: 10px;
    }

    .other-service-details-name {
        font-size: 0.9rem;
    }

    .other-service-details-desc {
        font-size: 0.8rem;
    }
    .navbar-collapse {
        position: fixed;
        top: 25px;
        right: -100%;
        width: 296px;
        height: 100vh;
        background: rgba(10, 36, 99, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 80px 20px 20px;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    
    .feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s 
ease;
}
    .feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--highlight-color), #f0b90b);
    border-radius: 50%;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(249, 202, 36, 0.4);
    transition: all 0.5s 
ease;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.5s 
ease;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.feature-grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.footer-logo img {
    height: 80px;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    width: 350px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s 
ease;
    position: relative;
    overflow: hidden;
}
.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    /* margin-bottom: 2rem; */
    transition: all 0.5s 
ease;
    transform-style: preserve-3d;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-item {
        padding: 1rem;
    
    }
    .stat-number {
    font-size: 1.5rem;
    }

.content-section h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(90deg, #fff, var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 3s infinite alternate;
    transform: translateZ(50px);
    font-weight: 900;
    letter-spacing: 0px;
}


.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    /* margin-bottom: 2rem; */
    transition: all 0.5s 
ease;
    transform-style: preserve-3d;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-section row{
display: flex;
    gap: 1.5rem;
}
    
}

/* more and less button */

.feature-toggle-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 160px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.feature-toggle-list.expanded {
    max-height: 1000px;
}

.feature-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #254b72;
    color: #fff;
    border-radius: 8px;
    padding: 6px 6px;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-toggle-btn:hover {
    background-color: #007bff;
    color: #fff;
}

.feature-toggle-btn i {
    transition: transform 0.3s ease;
}

.feature-toggle-btn.active i {
    transform: rotate(180deg);
}

.service-details-cards-section .row {
    align-items: flex-start !important;
}

.service-details-card,
.pricing-card {
    height: auto !important;
    display: block !important;
}

/* for sent messages spiner */
.spinner-border {
    display: none;
}

select {
    word-wrap: normal;
    border: 1px solid #5488bb;
    padding: 7px;
    background: #587083;
    border-radius: 2%;
    font-size: 15px;
    color: #ffffff;
}

/* Blog Details Page Styles */
.blog-details-page-container {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px 0;
}

.blog-details-page-single {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

/* Header Styles */
.blog-details-page-header {
    padding: clamp(25px, 5vw, 50px);
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.blog-details-page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.2;
}

.blog-details-page-header h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: clamp(15px, 3vw, 25px);
    line-height: 1.2;
    position: relative;
}

.blog-details-page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 20px);
    margin-bottom: clamp(15px, 3vw, 25px);
    font-size: clamp(13px, 2vw, 15px);
    opacity: 0.9;
}

.blog-details-page-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-details-page-meta i {
    font-size: clamp(12px, 1.5vw, 14px);
}

.blog-details-page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 1.5vw, 12px);
}

.blog-details-page-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 12px);
    border-radius: 20px;
    font-size: clamp(12px, 1.5vw, 14px);
    backdrop-filter: blur(5px);
}

/* Image Styles */
.blog-details-page-image {
    position: relative;
    margin: 0;
    overflow: hidden;
    width: 100%;
}

.blog-details-page-image img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .blog-details-page-image img {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .blog-details-page-image img {
        height: 600px;
    }
}

.blog-details-page-image:hover img {
    transform: scale(1.03);
}

/* Content Styles */
.blog-details-page-content {
    padding: clamp(20px, 5vw, 40px);
}

.blog-details-page-content h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin: clamp(20px, 4vw, 30px) 0 clamp(10px, 2vw, 15px);
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.blog-details-page-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(40px, 5vw, 60px);
    height: 3px;
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    border-radius: 2px;
}

.blog-details-page-content h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin: clamp(20px, 4vw, 25px) 0 clamp(10px, 2vw, 15px);
    color: #444;
}

.blog-details-page-content h4 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin: clamp(15px, 3vw, 20px) 0 clamp(8px, 1.5vw, 10px);
    color: #555;
}

.blog-details-page-content p {
    margin-bottom: clamp(15px, 3vw, 20px);
    color: #555;
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.7;
}

.blog-details-page-content ul,
.blog-details-page-content ol {
    margin: clamp(15px, 3vw, 20px) 0;
    padding-left: clamp(20px, 3vw, 25px);
}

.blog-details-page-content li {
    margin-bottom: clamp(8px, 1.5vw, 10px);
    color: #555;
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.7;
}

.blog-details-page-content strong {
    color: #6b46c1;
    font-weight: 600;
}

.blog-details-page-content blockquote {
    margin: clamp(20px, 4vw, 25px) 0;
    padding: clamp(12px, 3vw, 20px);
    background: #f9fafb;
    border-left: 4px solid #6b46c1;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
    font-size: clamp(15px, 2vw, 16px);
}

.blog-details-page-content code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
}

.blog-details-page-content pre {
    background: #1f2937;
    color: #f9fafb;
    padding: clamp(15px, 3vw, 20px);
    border-radius: 8px;
    overflow-x: auto;
    margin: clamp(20px, 4vw, 25px) 0;
}

.blog-details-page-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Related Posts Section */
.blog-details-page-related-posts {
    padding: 0 clamp(20px, 5vw, 40px) clamp(20px, 5vw, 40px);
}

.blog-details-page-related-posts h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: clamp(20px, 4vw, 30px);
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.blog-details-page-related-posts h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(40px, 5vw, 60px);
    height: 3px;
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    border-radius: 2px;
}

.blog-details-page-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(15px, 3vw, 25px);
}

.blog-details-page-related-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-details-page-related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-details-page-related-post-card img {
    width: 100%;
    height: clamp(150px, 25vw, 200px);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-details-page-related-post-card:hover img {
    transform: scale(1.05);
}

.blog-details-page-related-post-card h3 {
    padding: clamp(12px, 3vw, 15px);
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.blog-details-page-related-post-card h3 a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-details-page-related-post-card h3 a:hover {
    color: #6b46c1;
}

/* Responsive adjustments for specific screen sizes */
@media (max-width: 480px) {
    .blog-details-page-container {
        padding: 15px 0;
    }

    .blog-details-page-header {
        padding: 20px 15px;
    }

    .blog-details-page-content {
        padding: 20px 15px;
    }

    .blog-details-page-related-posts {
        padding: 0 15px 20px;
    }

    .blog-details-page-meta {
        font-size: 12px;
    }

    .blog-details-page-meta i {
        font-size: 11px;
    }

    .blog-details-page-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .blog-details-page-header {
        padding: 25px 20px;
    }

    .blog-details-page-content {
        padding: 25px 20px;
    }

    .blog-details-page-related-posts {
        padding: 0 20px 25px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .blog-details-page-header {
        padding: 35px 30px;
    }

    .blog-details-page-content {
        padding: 35px 30px;
    }

    .blog-details-page-related-posts {
        padding: 0 30px 35px;
    }

    .blog-details-page-related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .blog-details-page-related-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1440px) {
    .blog-details-page-related-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Ensure images don't overflow on small screens */
@media (max-width: 480px) {
    .blog-details-page-image img {
        max-height: 250px;
    }
}

/* Improve touch targets on mobile */
@media (max-width: 767px) {
    .blog-details-page-related-post-card h3 a {
        padding: 5px 0;
    }
    
}



/* The whatsapp-button button container */
.whatsapp-button {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* --- Animation --- */
  animation: pulse 2s infinite;
  transition: transform 0.2s ease-in-out;
}

/* Hover effect */
.whatsapp-button:hover {
  transform: scale(1.1);
}

/* The pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Styling for the SVG icon */
.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: white;
}




/* --- Fix button click issue --- */

.hero-section,
.content-section,
.custom-btn,
.btn-group {
    position: relative;
    pointer-events: auto !important;
    z-index: 10;
}

.hero-bg-shapes,
.animated-bg {
    pointer-events: none !important;
}

body {
    perspective: none !important;
    transform-style: flat !important;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
}





@media (max-width: 768px) {
  * {
    /*outline: 1px solid red !important;*/
  }
  html, body {
    overflow-x: hidden !important;
  }
  
.floating-element:nth-child(2) {
    width: 130px;
    height: 130px;
    top: 37%;
    left: 17%;
    animation-delay: 3s;
    animation-duration: 30s;
}
}



