  :root {
            --primary: #2962ff;
            --secondary: #0d47a1;
            --accent: #ffab00;
            --light: #f5f7fa;
            --dark: #263238;
            --gray: #607d8b;
             --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
                --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
            :root {
        --primary: #2563eb;
            --secondary: #1e40af;
        --dark: #1a1a2e;
        --light: #f8f9fa;
        --accent: #4cc9f0;
        --success: #4caf50;
        --warning: #ff9800;
        --danger: #f44336;
            --gradient-1: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-2: linear-gradient(135deg, #10b981, #059669);
    --gradient-3: linear-gradient(135deg, #f59e0b, #d97706);
    --gradient-4: linear-gradient(135deg, #ec4899, #db2777);
    --gradient-5: linear-gradient(135deg, #8b5cf6, #7c3aed);
    --gradient-6: linear-gradient(135deg, #06b6d4, #0891b2);
    }
      :root {
            --primary: #4F46E5;
            --primary-light: #818CF8;
            --primary-dark: #3730A3;
            /* --secondary: #10B981; */
            --accent: #F59E0B;
            --accent-light: #FCD34D;
            --dark: #1F2937;
            --darker: #111827;
            --light: #e1e4e6ff;
            --light-gray: #E5E7EB;
            --success: #10B981;
            --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
            --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
            --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --section-py: 8rem;
            --glow: 0 0 20px rgba(79, 70, 229, 0.2);
        }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body {
        line-height: 1.7;
        color: #333;
        background-color: var(--light);
        overflow-x: hidden;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
     
/* Section Base */
.image-left-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Floating decorative gradient blur */
.image-left-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(0, 123, 255, 0.25), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.image-left-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.image-left-section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Image Styling */
.image-left-section .image {
  flex: 1 1 45%;
  position: relative;
}

.image-left-section .image img {
  width: 100%;
  border-radius: 18px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-left-section .image img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.25);
}

/* Text Styling */
.image-left-section .text {
  flex: 1 1 45%;
}

.image-left-section .text h2 {
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
}

.image-left-section .text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: #007bff;
  border-radius: 2px;
}

.image-left-section .text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin: 30px 0;
  max-width: 500px;
}

/* Button Styling */
.image-left-section .btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.image-left-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
  .image-left-section {
    padding: 60px 0;
  }

  .image-left-section .content {
    flex-direction: column;
    text-align: center;
  }

  .image-left-section .text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .image-left-section .text p {
    margin: 20px auto;
  }
}



    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    section {
        padding: 100px 0;
        position: relative;
    }
    
    /* Bubble Animation */
    .bubbles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
    }
    
    .bubble {
        position: absolute;
        bottom: -100px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        opacity: 0.5;
        animation: rise 15s infinite ease-in;
        filter: blur(1px);
    }
    
    .bubble:nth-child(1) {
        width: 40px;
        height: 40px;
        left: 10%;
        animation-duration: 8s;
        animation-delay: 0s;
    }
    
    .bubble:nth-child(2) {
        width: 20px;
        height: 20px;
        left: 20%;
        animation-duration: 5s;
        animation-delay: 1s;
    }
    
    .bubble:nth-child(3) {
        width: 50px;
        height: 50px;
        left: 35%;
        animation-duration: 7s;
        animation-delay: 2s;
    }
    
    .bubble:nth-child(4) {
        width: 80px;
        height: 80px;
        left: 50%;
        animation-duration: 11s;
        animation-delay: 0s;
    }
    
    .bubble:nth-child(5) {
        width: 35px;
        height: 35px;
        left: 55%;
        animation-duration: 6s;
        animation-delay: 1s;
    }
    
    .bubble:nth-child(6) {
        width: 45px;
        height: 45px;
        left: 65%;
        animation-duration: 8s;
        animation-delay: 3s;
    }
    
    .bubble:nth-child(7) {
        width: 25px;
        height: 25px;
        left: 75%;
        animation-duration: 7s;
        animation-delay: 2s;
    }
    
    .bubble:nth-child(8) {
        width: 80px;
        height: 80px;
        left: 80%;
        animation-duration: 6s;
        animation-delay: 1s;
    }
    
    .bubble:nth-child(9) {
        width: 15px;
        height: 15px;
        left: 70%;
        animation-duration: 5s;
        animation-delay: 0s;
    }
    
    .bubble:nth-child(10) {
        width: 50px;
        height: 50px;
        left: 85%;
        animation-duration: 10s;
        animation-delay: 4s;
    }
    
    @keyframes rise {
        0% {
            bottom: -100px;
            transform: translateX(0);
            opacity: 0;
        }
        50% {
            transform: translateX(100px);
            opacity: 0.5;
        }
        100% {
            bottom: 1080px;
            transform: translateX(-200px);
            opacity: 0;
        }
    }
    
    /* Breadcrumb Styles */
    .breadcrumb-container {
        position: absolute;
        bottom: 40px;
        left: 0;
        width: 100%;
        z-index: 10;
    }
    
    .breadcrumb {
        padding: 10px 0;
    }
    
    .breadcrumb ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .breadcrumb li {
        display: flex;
        align-items: center;
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        content: '/';
        margin: 0 10px;
        color: rgba(255,255,255,0.5);
    }
    
    .breadcrumb a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .breadcrumb a:hover {
        color: var(--accent);
        text-decoration: underline;
    }
    
    .breadcrumb .active {
        color: white;
        font-weight: 500;
    }
    
    .breadcrumb .fa-home {
        margin-right: 5px;
    }
    
    /* Header Styles */
    .hero-header {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        padding: 130px 0 100px;
        text-align: center;
        position: relative;
        overflow: hidden;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }
    
    .hero-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        opacity: 0.1;
        animation: parallax 20s linear infinite;
    }
    
    .hero-header h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        position: relative;
        text-shadow: 0 5px 15px rgba(0,0,0,0.2);
        transition: all 0.5s ease;
    }
    
    .hero-header h1:hover {
        text-shadow: 0 8px 25px rgba(0,0,0,0.3);
        transform: scale(1.02);
    }
    
    .hero-header .tagline {
        font-size: 1.5rem;
        max-width: 700px;
        margin: 0 auto 40px;
        position: relative;
        transition: all 0.5s ease;
    }
    
    .hero-header .tagline:hover {
        transform: translateY(-5px);
    }
    
    .scroll-down {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 1.8rem;
        animation: bounce 2s infinite;
        cursor: pointer;
        background: rgba(255,255,255,0.2);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 3;
    }
    
    .scroll-down:hover {
        background: rgba(255,255,255,0.3);
        transform: translateX(-50%) scale(1.1);
        box-shadow: 0 0 20px rgba(255,255,255,0.4);
    }
    
    /* Floating shapes */
    .floating-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }
    
    .floating-shapes .shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(2px);
        animation: float 15s infinite linear;
    }
    
    .shape-1 {
        width: 100px;
        height: 100px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
        top: 60%;
        left: 80%;
        animation-delay: 2s;
        animation-duration: 20s;
    }
    
    .shape-3 {
        width: 70px;
        height: 70px;
        top: 70%;
        left: 20%;
        animation-delay: 4s;
        animation-duration: 12s;
    }
    
    .shape-4 {
        width: 200px;
        height: 200px;
        top: 30%;
        left: 60%;
        animation-delay: 1s;
        animation-duration: 25s;
    }
    
    /* Particles container */
    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    /* Animations */
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0) translateX(-50%);
        }
        40% {
            transform: translateY(-20px) translateX(-50%);
        }
        60% {
            transform: translateY(-10px) translateX(-50%);
        }
    }
    
    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-50px) rotate(180deg);
        }
        100% {
            transform: translateY(0) rotate(360deg);
        }
    }
    
    @keyframes parallax {
        0% {
            transform: scale(1) translateY(0);
        }
        50% {
            transform: scale(1.05) translateY(-20px);
        }
        100% {
            transform: scale(1) translateY(0);
        }
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* ---------------------------------------------------------- */
    
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .services:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNDUsMjQ1LDI0NSwxKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.03;
            z-index: 0;
        }

        .services .container {
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            /* padding: 40px 20px; */
            border: 1px solid rgba(226, 232, 240, 0.5);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
            border-color: rgba(226, 232, 240, 0.8);
        }

        .service-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(30, 64, 175, 0.4));
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            position: absolute;
            top: 170px;
            left: 30px;
            z-index: 2;
            box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: translate(-10px, -5px) rotate(10deg);
            box-shadow: -15px 15px 30px rgba(30, 64, 175, 0.3);
        }
       

        .service-content {
            padding: 50px 30px 0px;
        }

        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary);
            position: relative;
            font-weight: 700;
        }

        .service-content h3:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .service-card:hover .service-content h3:after {
            width: 70px;
        }

        .service-content p {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .service-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: var(--secondary);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }










        /* -------------------------------- */
        .integration-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.integration-card:nth-child(2) .integration-icon { background: var(--gradient-2); }
.integration-card:nth-child(3) .integration-icon { background: var(--gradient-3); }
.integration-card:nth-child(4) .integration-icon { background: var(--gradient-4); }
.integration-card:nth-child(5) .integration-icon { background: var(--gradient-5); }
.integration-card:nth-child(6) .integration-icon { background: var(--gradient-6); }


          /* Technologies Section */
        .technologies {
            padding: 80px 0;
            background-color: white;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .tech-item {
            text-align: center;
            padding: 20px;
            transition: transform 0.3s;
        }

        .tech-item:hover {
            transform: scale(1.1);
        }

        .tech-item img {
            height: 60px;
            margin-bottom: 15px;
        }


              /* Process Section */
        .process {
            padding: 80px 0;
            background-color: var(--light);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 15px;
            position: relative;
            margin-bottom: 30px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -50px;
            width: 100px;
            height: 2px;
            background-color: var(--gray);
            opacity: 0.3;
        }


           /* Modern Client Scroller Styles */
    .client-scroller-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    }
    
    .scroller-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .scroller-header h2 {
        font-size: 32px;
        color: var(--secondary);
        margin: 0;
    }
    
    .scroller-controls {
        display: flex;
        gap: 10px;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        border: 1px solid rgba(30, 64, 175, 0.2);
        color: var(--primary);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .scroll-btn:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }
    
    .client-scroller {
        position: relative;
        overflow: hidden;
        padding: 20px 0;
    }
    
    .client-scroller-track {
        display: flex;
        gap: 30px;
        transition: transform 0.5s ease-out;
        padding: 0 50px;
    }
    
    .client-item {
        flex: 0 0 280px;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(30, 64, 175, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    
    .client-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
    }
    
    .client-logo-container {
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }
    
    .client-logo-container img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .client-item:hover .client-logo-container img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }
    
    .client-info {
        padding: 20px;
        text-align: center;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .client-info h4 {
        margin: 0 0 5px 0;
        color: var(--secondary);
        font-size: 18px;
    }
    
    .client-info p {
        margin: 0;
        color: var(--gray);
        font-size: 14px;
    }
    
    @media (max-width: 768px) {
        .scroller-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        
        .client-item {
            flex: 0 0 240px;
        }
        
        .client-scroller-track {
            gap: 20px;
            padding: 0 30px;
        }
    }


      /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: var(--light);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-photo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .client-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-name {
            font-weight: 700;
            color: var(--secondary);
        }

        .client-role {
            color: var(--gray);
            font-size: 14px;
        }

        /* CTA */
            /* CTA Section */
        .cta-section {
            background: var(--gradient);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,192L80,170.7C160,149,320,107,480,112C640,117,800,171,960,186.7C1120,203,1280,181,1360,170.7L1440,160L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
            animation: waveAnimation 15s linear infinite;
        }
        
        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .cta-section p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark);
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1.2s ease-out;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover i {
            transform: translateX(5px);
        }
        
        /* Floating elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 8s infinite ease-in-out;
        }
        
        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            width: 50px;
            height: 50px;
            top: 60%;
            right: 15%;
            animation-delay: 1s;
        }
        
        .floating-element:nth-child(3) {
            width: 30px;
            height: 30px;
            bottom: 20%;
            left: 20%;
            animation-delay: 2s;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }
        
        @keyframes waveAnimation {
            0% {
                background-position-x: 0%;
            }
            100% {
                background-position-x: 100%;
            }
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-section h2 {
                font-size: 2.2rem;
            }
            
            .cta-section p {
                font-size: 1.1rem;
                padding: 0 15px;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .floating-element {
                display: none;
            }
        }


          /* Integration Partners Styles */
        .integration-partners {
            padding: 100px 0;
            background-color: white;
            position: relative;
        }

        .integration-partners:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNDUsMjQ1LDI0NSwxKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.03;
            z-index: 0;
        }

        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .integration-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(226, 232, 240, 0.5);
            position: relative;
            z-index: 1;
        }

        .integration-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(30, 64, 175, 0.1);
        }

        .integration-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 32px;
            box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
            transition: all 0.3s ease;
        }

        .integration-card:hover .integration-icon {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 15px 25px rgba(30, 64, 175, 0.3);
        }

        .integration-card h3 {
            font-size: 22px;
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .integration-card p {
            color: var(--gray);
            line-height: 1.7;
        }

        .integrations-cta {
            text-align: center;
            margin-top: 40px;
            padding: 30px;
            background: rgba(37, 99, 235, 0.05);
            border-radius: 12px;
        }

        .integrations-cta p {
            margin-bottom: 20px;
            color: var(--dark);
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .integrations-grid {
                grid-template-columns: 1fr;
            }
        }

        .fas.fa-crm:before {
            content: "\f0c0";
        }


        /* ----------------------------------------------- */
        /* ----------------------------------------------- */

        /* Index Page  */
         .nd-container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Services Section - Modern Card Grid */
        .nd-services {
            padding: var(--section-py) 0;
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .nd-services::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
        }

        .nd-services::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
        }

        .nd-section-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            z-index: 1;
        }

        .nd-section-header__title {
            font-size: 3rem;
            color: var(--darker);
            margin-bottom: 1.5rem;
            font-weight: 800;
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            position: relative;
        }

        .nd-section-header__title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .nd-section-header__desc {
            color: #6B7280;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.25rem;
            line-height: 1.8;
        }

        .nd-services__container {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .nd-services__tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .nd-tab-btn {
            padding: 0.75rem 1.5rem;
            background: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--card-shadow);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nd-tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nd-tab-btn:hover, .nd-tab-btn--active {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.3);
        }

        .nd-tab-btn:hover::before, .nd-tab-btn--active::before {
            opacity: 1;
        }

        .nd-tab-btn__icon {
            width: 18px;
            height: 18px;
            transition: all 0.3s ease;
        }

        .nd-tab-btn:hover .nd-tab-btn__icon, .nd-tab-btn--active .nd-tab-btn__icon {
            transform: scale(1.1);
        }

        .nd-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .nd-service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            z-index: 1;
        }

        .nd-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nd-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .nd-service-card:hover::before {
            opacity: 0.03;
        }

        .nd-service-card__header {
            padding: 1.75rem;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            align-items: center;
            gap: 1.25rem;
            transition: all 0.3s ease;
        }

        .nd-service-card:hover .nd-service-card__header {
            background: rgba(79, 70, 229, 0.03);
        }

        .nd-service-card__icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            border-radius: 12px;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .nd-service-card:hover .nd-service-card__icon {
            transform: rotate(5deg) scale(1.05);
            box-shadow: var(--glow);
        }

        .nd-service-card__title {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--darker);
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .nd-service-card:hover .nd-service-card__title {
            color: var(--primary-dark);
        }

        .nd-service-card__content {
            padding: 1.75rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .nd-service-card__desc {
            color: #6B7280;
            margin-bottom: 1.75rem;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .nd-service-card__features {
            margin-bottom: 1.75rem;
        }

        .nd-feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--dark);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .nd-feature-item:hover {
            color: var(--primary-dark);
            transform: translateX(5px);
        }

        .nd-feature-item__icon {
            width: 18px;
            height: 18px;
            color: var(--success);
            transition: all 0.3s ease;
        }

        .nd-feature-item:hover .nd-feature-item__icon {
            transform: scale(1.2);
        }

        .nd-service-card__footer {
            margin-top: auto;
            padding: 0 1.75rem 1.75rem;
        }

        .nd-service-card__link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            background: var(--gradient);
            color: white;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -1px rgba(79, 70, 229, 0.12);
            position: relative;
            overflow: hidden;
        }

        .nd-service-card__link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .nd-service-card__link:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
        }

        .nd-service-card__link:hover::before {
            left: 100%;
        }

        .nd-service-card__link-icon {
            margin-left: 0.75rem;
            transition: all 0.3s ease;
        }

        .nd-service-card__link:hover .nd-service-card__link-icon {
            transform: translateX(5px);
        }

        .nd-service-card__badge {
            margin-left: auto;
            background: var(--gradient-accent);
            padding: 0.375rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
            }
        }

        .nd-floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(145deg, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.05));
            backdrop-filter: blur(5px);
            z-index: 0;
        }

        .nd-floating-element--1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }

        .nd-floating-element--2 {
            width: 150px;
            height: 150px;
            bottom: 15%;
            right: 5%;
            animation: float 10s ease-in-out infinite 2s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        @media (max-width: 1200px) {
            .nd-services-grid {
                gap: 2rem;
            }
        }

        @media (max-width: 992px) {
            .nd-section-header__title {
                font-size: 2.5rem;
            }
            
            .nd-services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nd-services {
                padding: 5rem 0;
            }
            
            .nd-section-header__title {
                font-size: 2.25rem;
            }
            
            .nd-section-header__desc {
                font-size: 1.1rem;
            }
            
            .nd-services__tabs {
                gap: 0.75rem;
                margin-bottom: 2.5rem;
            }

            .nd-tab-btn {
                padding: 0.625rem 1.25rem;
                font-size: 0.9375rem;
            }
        }

        @media (max-width: 576px) {
            .nd-services {
                padding: 4rem 0;
            }
            
            .nd-section-header__title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .nd-section-header__desc {
                font-size: 1rem;
            }
            
            .nd-services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .nd-service-card {
                max-width: 400px;
                margin: 0 auto;
            }

            .nd-floating-element--1, .nd-floating-element--2 {
                display: none;
            }
        }

             
        .blog-section {
            margin: 40px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, #3498db);
            border-radius: 2px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .card-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .card-img img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-tag {
            display: inline-block;
            background: linear-gradient(to right, #3498db);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }
        
        .card-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #2c3e50;
            line-height: 1.3;
        }
        
        .card-excerpt {
            color: #7f8c8d;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #f1f1f1;
            padding-top: 15px;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        
        .author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }
        
        .read-more {
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .read-more:hover {
            color: #2980b9;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(3px);
        }
        
        .view-all {
            text-align: center;
            margin-top: 50px;
        }
        
        .view-all-btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }
        
        .view-all-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        }
        
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }

         
        .page-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        /* Features section */
        .section-features {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
        }

        .section__header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section__title {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section__title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: #3498db;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section__description {
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }

        .features__grid {
            display: grid !important;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            color: white;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover .feature-card__title,
        .feature-card:hover .feature-card__icon {
            color: white;
        }

        .feature-card__icon {
            font-size: 50px;
            color: #3498db;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .feature-card__title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
            transition: all 0.3s ease;
        }

        .feature-card__description {
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-card__description {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Pulse animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .animation--pulse {
            animation: pulse 2s infinite;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .section__title {
                font-size: 28px;
            }

            .section__description {
                font-size: 16px;
            }

            .features__grid {
                grid-template-columns: 1fr;
            }
        }



             .nd-container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Services Section - Modern Card Grid */
        .nd-services {
            padding: var(--section-py) 0;
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .nd-services::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
        }

        .nd-services::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
        }

        .nd-section-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            z-index: 1;
        }

        .nd-section-header__title {
            font-size: 3rem;
            color: var(--darker);
            margin-bottom: 1.5rem;
            font-weight: 800;
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            position: relative;
        }

        .nd-section-header__title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .nd-section-header__desc {
            color: #6B7280;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.25rem;
            line-height: 1.8;
        }

        .nd-services__container {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .nd-services__tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .nd-tab-btn {
            padding: 0.75rem 1.5rem;
            background: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--card-shadow);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nd-tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nd-tab-btn:hover,
        .nd-tab-btn--active {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.3);
        }

        .nd-tab-btn:hover::before,
        .nd-tab-btn--active::before {
            opacity: 1;
        }

        .nd-tab-btn__icon {
            width: 18px;
            height: 18px;
            transition: all 0.3s ease;
        }

        .nd-tab-btn:hover .nd-tab-btn__icon,
        .nd-tab-btn--active .nd-tab-btn__icon {
            transform: scale(1.1);
        }

        .nd-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .nd-service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            z-index: 1;
        }

        .nd-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nd-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .nd-service-card:hover::before {
            opacity: 0.03;
        }

        .nd-service-card__header {
            padding: 1.75rem;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            align-items: center;
            gap: 1.25rem;
            transition: all 0.3s ease;
        }

        .nd-service-card:hover .nd-service-card__header {
            background: rgba(79, 70, 229, 0.03);
        }

        .nd-service-card__icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            border-radius: 12px;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .nd-service-card:hover .nd-service-card__icon {
            transform: rotate(5deg) scale(1.05);
            box-shadow: var(--glow);
        }

        .nd-service-card__title {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--darker);
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .nd-service-card:hover .nd-service-card__title {
            color: var(--primary-dark);
        }

        .nd-service-card__content {
            padding: 1.75rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .nd-service-card__desc {
            color: #6B7280;
            margin-bottom: 1.75rem;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .nd-service-card__features {
            margin-bottom: 1.75rem;
        }

        .nd-feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--dark);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .nd-feature-item:hover {
            color: var(--primary-dark);
            transform: translateX(5px);
        }

        .nd-feature-item__icon {
            width: 18px;
            height: 18px;
            color: var(--success);
            transition: all 0.3s ease;
        }

        .nd-feature-item:hover .nd-feature-item__icon {
            transform: scale(1.2);
        }

        .nd-service-card__footer {
            margin-top: auto;
            padding: 0 1.75rem 1.75rem;
        }

        .nd-service-card__link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            background: var(--gradient);
            color: white;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -1px rgba(79, 70, 229, 0.12);
            position: relative;
            overflow: hidden;
        }

        .nd-service-card__link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .nd-service-card__link:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
        }

        .nd-service-card__link:hover::before {
            left: 100%;
        }

        .nd-service-card__link-icon {
            margin-left: 0.75rem;
            transition: all 0.3s ease;
        }

        .nd-service-card__link:hover .nd-service-card__link-icon {
            transform: translateX(5px);
        }

        .nd-service-card__badge {
            margin-left: auto;
            background: var(--gradient-accent);
            padding: 0.375rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
            }
        }

        .nd-floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(145deg, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.05));
            backdrop-filter: blur(5px);
            z-index: 0;
        }

        .nd-floating-element--1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }

        .nd-floating-element--2 {
            width: 150px;
            height: 150px;
            bottom: 15%;
            right: 5%;
            animation: float 10s ease-in-out infinite 2s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }

            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        @media (max-width: 1200px) {
            .nd-services-grid {
                gap: 2rem;
            }
        }

        @media (max-width: 992px) {
            .nd-section-header__title {
                font-size: 2.5rem;
            }

            .nd-services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nd-services {
                padding: 5rem 0;
            }

            .nd-section-header__title {
                font-size: 2.25rem;
            }

            .nd-section-header__desc {
                font-size: 1.1rem;
            }

            .nd-services__tabs {
                gap: 0.75rem;
                margin-bottom: 2.5rem;
            }

            .nd-tab-btn {
                padding: 0.625rem 1.25rem;
                font-size: 0.9375rem;
            }
        }

        @media (max-width: 576px) {
            .nd-services {
                padding: 4rem 0;
            }

            .nd-section-header__title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .nd-section-header__desc {
                font-size: 1rem;
            }

            .nd-services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .nd-service-card {
                max-width: 400px;
                margin: 0 auto;
            }

            .nd-floating-element--1,
            .nd-floating-element--2 {
                display: none;
            }
        }

        /* Terms & Conditions */
      /* Main Content Layout */
        .content-wrapper {
            display: flex;
            gap: 30px;
            margin: 50px auto;
        }

        /* Table of Contents */
        .toc-container {
            flex: 0 0 280px;
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .toc-container h4 {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            display: flex;
            align-items: center;
        }

        .toc-container h4 i {
            margin-right: 10px;
            color: #3498db;
        }

        .toc-list {
            list-style: none;
        }

        .toc-list li {
            margin-bottom: 10px;
            position: relative;
            transition: all 0.3s ease;
        }

        .toc-list li a {
            color: #7f8c8d;
            text-decoration: none;
            display: block;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .toc-list li a i {
            margin-right: 8px;
            font-size: 12px;
        }

        .toc-list li a:hover,
        .toc-list li.active a {
            color: #3498db;
            background-color: rgba(52, 152, 219, 0.1);
            padding-left: 20px;
        }

        .toc-list li.active a {
            font-weight: 600;
        }

        /* Terms Content */
        .terms-container {
            flex: 1;
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .terms-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
            scroll-margin-top: 100px;
        }

        .terms-section:last-of-type {
            border-bottom: none;
        }

        .terms-section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            position: relative;
            display: flex;
            align-items: center;
        }

        .terms-section h2 i {
            margin-right: 10px;
            color: #3498db;
        }

        .terms-section h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: #e74c3c;
        }

        .terms-section p {
            color: #34495e;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .terms-section ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .terms-section ul li {
            margin-bottom: 10px;
            line-height: 1.7;
            color: #34495e;
        }

        .terms-section ul li strong {
            color: #2c3e50;
        }

        /* Highlight Card */
        .highlight-card {
            background: linear-gradient(135deg, #fff6e9 0%, #ffe4cc 100%);
            border-left: 4px solid #f39c12;
            padding: 20px;
            border-radius: 5px;
            margin: 25px 0;
        }

        .highlight-card h5 {
            color: #d35400;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .highlight-card h5 i {
            margin-right: 10px;
        }

        .highlight-card p {
            margin-bottom: 0;
            color: #7d6608;
        }

        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            color: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            margin-top: 40px;
        }

        .contact-cta h3 {
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .contact-cta p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #3498db;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            color: #2980b9;
        }

        /* Address styling */
        address {
            font-style: normal;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
            margin-top: 15px;
        }

        address a {
            color: #3498db;
            text-decoration: none;
        }

        address a:hover {
            text-decoration: underline;
        }


        /* Responsive Design */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }

            .toc-container {
                position: static;
                margin-bottom: 30px;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                margin-top: 15px;
                justify-content: center;
            }

            nav ul li {
                margin: 0 10px;
            }

            .hero-section {
                padding: 60px 0 100px;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .terms-container,
            .toc-container {
                padding: 20px;
            }

            .contact-cta {
                padding: 30px 20px;
            }

            .footer-content {
                flex-direction: column;
            }
        }

        /* Animation classes */
        .animate__animated {
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        .animate__fadeInDown {
            animation-name: fadeInDown;
        }

        .animate__fadeInUp {
            animation-name: fadeInUp;
        }

        .animate__delay-1s {
            animation-delay: 1s;
        }

        .animate__delay-2s {
            animation-delay: 2s;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translate3d(0, -30px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 30px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        
        /* ------------------------------------------------------- */
        /* ------------------------------------------------------- */
        /* ------------------------------------------------------- */

        /* -------------------Thanks Page------------------------- */

        /* ------------------------------------------------------- */
        /* ------------------------------------------------------- */
        /* ------------------------------------------------------- */



       .next-steps {
            background: rgba(108, 77, 246, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
            text-align: left;
            animation: fadeIn 1.2s ease-out;
        }
        
        .next-steps h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .next-steps ul {
            list-style: none;
            padding-left: 1.5rem;
        }
        
        .next-steps li {
            margin-bottom: 0.8rem;
            position: relative;
        }
        
        .next-steps li:before {
            content: "•";
            color: var(--secondary);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .action-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
            animation: fadeIn 1.4s ease-out;
        }
        
           .btns {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .btns-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(108, 77, 246, 0.3);
        }
        
        .btns-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(108, 77, 246, 0.4);
        }
        
        .btns-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }
        
        .btns-outline:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .contact-info {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--gray);
            animation: fadeIn 1.6s ease-out;
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
            color: #666;
        }
        
        .contact-info a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }
           .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            text-align: center;
        }
        
        .thanks-container {
            max-width: 800px;
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .circle-bg {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(108, 77, 246, 0.05);
            top: -150px;
            right: -150px;
            z-index: 0;
        }
        
        .circle-bg-2 {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 123, 169, 0.05);
            bottom: -100px;
            left: -100px;
            z-index: 0;
        }
        
        .thanks-content {
            position: relative;
            z-index: 2;
        }
        
        .checkmark-circle {
            width: 100px;
            height: 100px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            animation: scaleIn 0.5s ease-out;
        }
        
        .checkmark-circle i {
            color: var(--white);
            font-size: 3.5rem;
        }
        
        @keyframes scaleIn {
            0% { transform: scale(0); opacity: 0; }
            70% { transform: scale(1.1); }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .thanks-title {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            animation: fadeIn 0.8s ease-out;
        }
        
        .thanks-message {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2.5rem;
            animation: fadeIn 1s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        




        

        /* BLOG PAGE */




           /* Grid System */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-lg-4,
        .col-md-6 {
            padding: 0 15px;
        }

        .col-lg-4 {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }

        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        @media (max-width: 992px) {
            .col-lg-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (max-width: 768px) {

            .col-lg-4,
            .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        /* Blog Header */
        .blog-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 80px 0 60px;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .blog-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .blog-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
        }

        .blog-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
        }

        /* Blog Card */
        .blog-card {
            background: #fff;
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            box-shadow: var(--box-shadow);
            margin-bottom: 30px;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .blog-img-container {
            position: relative;
            overflow: hidden;
            height: 240px;
        }

        .blog-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            padding: 10px;
            border-radius: 20px;
        }

        .blog-card:hover img {
            transform: scale(1.05);
        }

        .blog-date {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-card h3 {
            font-size: 1.35rem;
            margin-bottom: 12px;
            color: var(--dark);
            font-weight: 600;
            line-height: 1.3;
        }

        .blog-excerpt {
           
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            font-size: 0.9rem;
            color: var(--secondary);
        }

        .read-more {
            color: var(--primary);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }

        .read-more:hover {
            color: var(--accent);
        }

        .read-more i {
            margin-left: 5px;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .read-more:hover i {
            transform: translateX(3px);
        }

        /* Pagination */
        .pagination-container {
            margin: 50px 0 30px;
            display: flex;
            justify-content: center;
        }

        .pagination {
            display: flex;
            list-style: none;
            padding: 0;
        }

        .page-item {
            margin: 0 4px;
        }

        .page-item.active .page-link {
            background-color: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        .page-link {
            display: block;
            padding: 8px 16px;
            border-radius: var(--border-radius);
            border: 1px solid #dee2e6;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .page-link:hover {
            color: var(--primary);
            background-color: #e9ecef;
            border-color: #dee2e6;
        }

        .page-item.disabled .page-link {
            color: #6c757d;
            pointer-events: none;
            background-color: #fff;
            border-color: #dee2e6;
        }

        /* No posts message */
        .no-posts {
            text-align: center;
            padding: 60px 0;
            color: var(--secondary);
            width: 100%;
        }

        .no-posts i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #dee2e6;
        }

        .no-posts h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .blog-header {
                padding: 60px 0 40px;
            }

            .blog-header h1 {
                font-size: 2.2rem;
            }

            .blog-header p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .blog-card h3 {
                font-size: 1.2rem;
            }

            .blog-content {
                padding: 20px;
            }

            .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .blog-header {
                padding: 40px 0 30px;
            }

            .blog-header h1 {
                font-size: 1.8rem;
            }

            .blog-header p {
                font-size: 1rem;
            }

            .blog-img-container {
                height: 200px;
            }

            .pagination {
                flex-wrap: wrap;
                justify-content: center;
            }

            .page-item {
                margin-bottom: 8px;
            }
        }

        /* Utility Classes */
        .mb-4 {
            margin-bottom: 1.5rem;
        }

        .py-5 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }

        .text-center {
            text-align: center;
        }


         

        /* ------------------------------------------------ */
        /* ------------------------------------------------ */
        /* Banner Index Page */
        /* ------------------------------------------------ */
        /* ------------------------------------------------ */

              
        /* Main Container */
        .showcase-wrapper {
            width: 100%;
            height: 99vh;
            min-height: 600px;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Slide Wrapper */
        .showcase-content {
            display: flex;
            width: 100%;
            height: 89.8%;
            position: relative;
            transition: var(--transition);
        }
        
        /* Individual Slides */
        .showcase-panel {
            min-width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Slide Backgrounds */
        .panel-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transform: scale(1.1);
            transition: transform 8s ease-out;
            z-index: 1;
        }
        
        .showcase-panel.active .panel-bg {
            transform: scale(1);
        }
        
        /* Gradient Overlay */
        .panel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 2;
        }
        
        /* Slide Content Container */
        .panel-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 3;
        }
        
        /* Text Content */
        .panel-text {
            color: white;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .panel-tag {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .showcase-panel h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.2;
            font-weight: 700;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition);
        }
        
        .showcase-panel p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 500px;
            opacity: 0.9;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition) 0.2s;
        }
        
        /* Buttons */
        .btn-group {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent);
            color: white;
            padding: 15px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition) 0.4s;
            border: 2px solid var(--accent);
        }
        
        .alt-button {
            background-color: transparent;
            border: 2px solid rgba(255,255,255,0.3);
            box-shadow: none;
        }
        
        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(247, 37, 133, 0.4);
        }
        
        .alt-button:hover {
            background-color: rgba(255,255,255,0.1);
            box-shadow: none;
        }
        
        .action-btn i {
            margin-right: 10px;
            font-size: 1rem;
        }
        
        /* Image Container */
        .panel-image {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
        }
        
        .feature-img {
            max-width: 100%;
            max-height: 80%;
            border-radius: 10px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            transform: translateX(50px) rotateY(10deg);
            opacity: 0;
            transition: var(--transition) 0.3s;
            backface-visibility: hidden;
        }
        
        /* Active Slide Animations */
        .showcase-panel.active h1,
        .showcase-panel.active p,
        .showcase-panel.active .action-btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .showcase-panel.active .feature-img {
            opacity: 1;
            transform: translateX(0) rotateY(0);
        }
        
        /* Navigation Controls */
        .showcase-nav {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
            background: rgba(0,0,0,0.3);
            padding: 10px 20px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
        }
        
        .nav-btn {
            background: rgba(255,255,255,0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nav-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }
        
        /* Indicators */
        .showcase-markers {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .marker {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }
        
        .marker::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 50%;
            opacity: 0;
            transition: var(--transition);
        }
        
        .marker.active {
            background: white;
            transform: scale(1.2);
        }
        
        .marker.active::after {
            opacity: 1;
        }
        
        /* Progress Bar */
        .progress-wrapper {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.2);
            z-index: 10;
        }
        
        .progress-fill {
            height: 100%;
            background: white;
            width: 0%;
            transition: width 0.1s linear;
        }
        
        /* Floating Elements */
        .floating-item {
            position: absolute;
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            animation: float 6s infinite ease-in-out;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .showcase-panel h1 {
                font-size: 3rem;
            }
            
            .panel-content {
                gap: 40px;
                padding: 0 40px;
            }
        }
        
        @media (max-width: 992px) {
            .panel-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 0 30px;
            }
            
            .panel-text {
                align-items: center;
                margin-top: 80px;
            }
            
            .showcase-panel p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .panel-image {
                height: 300px;
                margin-top: 40px;
            }
            
            .showcase-markers {
                bottom: 180px;
            }
            
            .showcase-nav {
                bottom: 80px;
            }
        }
        
        @media (max-width: 768px) {
            .showcase-wrapper {
                height: auto;
                min-height: 500px;
            }
            
            .showcase-panel h1 {
                font-size: 2.5rem;
            }
            
            .btn-group {
                flex-direction: column;
                width: 100%;
            }
            
            .action-btn {
                width: 100%;
            }
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(2deg);
            }
        }

/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */
/* About Us */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */


        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-shapes .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(2px);
            animation: float 15s infinite linear;
        }

        .shape-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
            animation-duration: 20s;
        }

        .shape-3 {
            width: 70px;
            height: 70px;
            top: 70%;
            left: 20%;
            animation-delay: 4s;
            animation-duration: 12s;
        }

        .shape-4 {
            width: 200px;
            height: 200px;
            top: 30%;
            left: 60%;
            animation-delay: 1s;
            animation-duration: 25s;
        }

        /* Bubble Animation */
        .bubbles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .bubble {
            position: absolute;
            bottom: -100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            opacity: 0.5;
            animation: rise 15s infinite ease-in;
            filter: blur(1px);
        }

        .bubble:nth-child(1) {
            width: 40px;
            height: 40px;
            left: 10%;
            animation-duration: 8s;
            animation-delay: 0s;
        }

        .bubble:nth-child(2) {
            width: 20px;
            height: 20px;
            left: 20%;
            animation-duration: 5s;
            animation-delay: 1s;
        }

        .bubble:nth-child(3) {
            width: 50px;
            height: 50px;
            left: 35%;
            animation-duration: 7s;
            animation-delay: 2s;
        }

        .bubble:nth-child(4) {
            width: 80px;
            height: 80px;
            left: 50%;
            animation-duration: 11s;
            animation-delay: 0s;
        }

        .bubble:nth-child(5) {
            width: 35px;
            height: 35px;
            left: 55%;
            animation-duration: 6s;
            animation-delay: 1s;
        }

        .bubble:nth-child(6) {
            width: 45px;
            height: 45px;
            left: 65%;
            animation-duration: 8s;
            animation-delay: 3s;
        }

        .bubble:nth-child(7) {
            width: 25px;
            height: 25px;
            left: 75%;
            animation-duration: 7s;
            animation-delay: 2s;
        }

        .bubble:nth-child(8) {
            width: 80px;
            height: 80px;
            left: 80%;
            animation-duration: 6s;
            animation-delay: 1s;
        }

        .bubble:nth-child(9) {
            width: 15px;
            height: 15px;
            left: 70%;
            animation-duration: 5s;
            animation-delay: 0s;
        }

        .bubble:nth-child(10) {
            width: 50px;
            height: 50px;
            left: 85%;
            animation-duration: 10s;
            animation-delay: 4s;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--dark);
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        /* About Section */
        .about-section {
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0) 70%);
            z-index: 0;
        }

        .content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .text-content {
            flex: 1;
            min-width: 300px;
        }

        .text-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.9;
            color: #555;
            position: relative;
            padding-left: 20px;
        }

        .text-content p::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }

        .image-content {
            flex: 1;
            min-width: 300px;
            position: relative;
            perspective: 1000px;
        }

        .image-content img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 30px 50px rgba(67, 97, 238, 0.2);
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: grayscale(20%) contrast(1.1);
        }

        .image-content:hover img {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
            box-shadow: 0 40px 70px rgba(67, 97, 238, 0.3);
            filter: grayscale(0%) contrast(1);
        }

        .image-content::before,
        .image-content::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            transition: all 0.6s ease;
            z-index: -1;
        }

        .image-content::before {
            border: 3px solid var(--primary);
            top: -15px;
            left: -15px;
            opacity: 0.5;
        }

        .image-content::after {
            border: 3px solid var(--accent);
            bottom: -15px;
            right: -15px;
            opacity: 0.5;
        }

        .image-content:hover::before {
            top: -20px;
            left: -20px;
            opacity: 0.8;
        }

        .image-content:hover::after {
            bottom: -20px;
            right: -20px;
            opacity: 0.8;
        }

        /* Button Styles */
        .btn-primary {
            margin-top: 20px;
            padding: 15px 35px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
            font-size: 1rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
            background: var(--secondary);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }

        .btn-primary:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }

        /* Services Section */
        .services {
            background-color: #f5f7ff;
            clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
            padding: 150px 0;
            margin: -50px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: white;
            /* padding: 40px 30px; */
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(67, 97, 238, 0.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border-color: transparent;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-icons {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: all 0.5s ease;
            display: inline-block;
        }

        .service-card:hover .service-icons {
            color: white;
            transform: scale(1.1) translateY(-5px);
            animation: bounce 0.8s ease;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding: 0px 0px 20px 0px ;
            color: var(--dark);
            transition: all 0.5s ease;
            position: relative;
            display: inline-block;
        }

        .service-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: var(--primary);
            transition: all 0.5s ease;
        }

        .service-card:hover .service-title {
            color: white;
        }

        .service-card:hover .service-title::after {
            background: white;
            width: 60px;
        }

        .service-card p {
            color: #666;
            transition: all 0.5s ease;
            position: relative;
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Team Section */
        .team-section {
            background-color: white;
            position: relative;
            overflow: hidden;
            padding: 150px 0;
        }

        .team-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.03;
            z-index: 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .team-member {
            text-align: center;
            position: relative;
            padding: 40px 30px;
            border-radius: 15px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: white;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(67, 97, 238, 0.1);
            overflow: hidden;
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: all 0.5s ease;
        }

        .team-member:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .team-member:hover::before {
            height: 10px;
        }

        .member-photo {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 25px;
            border: 5px solid rgba(67, 97, 238, 0.1);
            transition: all 0.5s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .team-member:hover .member-photo {
            border-color: var(--primary);
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(67, 97, 238, 0.3);
        }

        .team-member h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: var(--dark);
            transition: all 0.5s ease;
        }

        .team-member:hover h3 {
            color: var(--primary);
        }

        .team-member p {
            color: var(--primary);
            font-weight: 500;
            transition: all 0.5s ease;
        }

        .team-member:hover p {
            color: var(--secondary);
        }

        .social-links {
            margin-top: 25px;
            display: flex;
            justify-content: center;
            gap: 15px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .team-member .social-links {
            transform: translateY(0);
            opacity: 1;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(67, 97, 238, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
        }

        /* Values Section */
        .values-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
            padding: 150px 0 100px;
            margin-top: -50px;
        }

        .values-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }

        .values-section .section-title h2 {
            color: white;
        }

        .values-section .section-title h2::after {
            background: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            text-align: center;
            padding: 50px 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .value-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .value-card:hover::before {
            height: 100%;
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            color: white;
            transition: all 0.5s ease;
            display: inline-block;
        }

        .value-card:hover .value-icon {
            transform: scale(1.2) rotate(10deg);
            text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .value-card h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: white;
            transition: all 0.5s ease;
        }

        .value-card:hover h3::after {
            width: 60px;
        }

        .value-card p {
            opacity: 0.9;
            transition: all 0.5s ease;
        }

        .value-card:hover p {
            opacity: 1;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #6565b5, #16283e);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.03;
        }

        .stats-section .section-title h2 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .stats-section .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            position: relative;
        }

        .circular-chart {
            display: block;
            width: 100%;
            height: 100%;
        }

        .circle-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 3;
        }

        .circle-fill {
            fill: none;
            stroke: #4cc9f0;
            stroke-width: 3;
            stroke-linecap: round;
            animation: circle-fill-animation 1.5s ease-in-out forwards;
        }

        .stat-content {
            position: relative;
            z-index: 2;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #4cc9f0;
            transition: all 0.5s ease;
        }

        .stat-item:hover .stat-number {
            color: white;
            text-shadow: 0 0 15px rgba(76, 201, 240, 0.5);
        }

        .stat-label {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.5s ease;
        }

        .stat-item:hover .stat-label {
            color: white;
        }

        .stat-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4361ee, #4cc9f0);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .stat-item:hover .stat-wave {
            transform: scaleX(1);
        }

        /* Testimonials Section */
        .testimonials-section {
            background-color: white;
            padding: 150px 0;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.03;
        }

        .testimonials-slider {
            max-width: 1000px;
            margin: 50px auto 0;
            position: relative;
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin: 0 20px;
            position: relative;
            border: 1px solid rgba(67, 97, 238, 0.1);
            transition: all 0.5s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 5rem;
            color: rgba(67, 97, 238, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .author-photo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(67, 97, 238, 0.2);
        }

        .author-info h4 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--primary);
            font-weight: 500;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-header h1 {
                font-size: 3.5rem;
            }
            .hero-header .tagline {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 992px) {
            .hero-header {
                padding: 140px 0 80px;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
            }
            .hero-header h1 {
                font-size: 3rem;
            }
            section {
                padding: 100px 0;
            }
            .services {
                padding: 120px 0;
                clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
            }
            .team-section {
                padding: 120px 0;
            }
            .values-section {
                padding: 120px 0 80px;
            }
        }

        @media (max-width: 768px) {
            .hero-header {
                padding: 120px 0 60px;
            }
            .hero-header h1 {
                font-size: 2.5rem;
            }
            .hero-header .tagline {
                font-size: 1.1rem;
                max-width: 500px;
            }
            .content {
                flex-direction: column;
            }
            .image-content {
                margin-top: 40px;
            }
            .section-title h2 {
                font-size: 2.2rem;
            }
            .services {
                padding: 100px 0;
                clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
            }
            .team-section {
                padding: 100px 0;
            }
            .values-section {
                padding: 100px 0 60px;
            }
            .stat-number {
                font-size: 3rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-section {
                padding: 80px 0;
            }
            .stats-section .section-title h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-header {
                padding: 100px 0 50px;
            }
            .hero-header h1 {
                font-size: 2rem;
            }
            section {
                padding: 80px 0;
            }
            .services {
                padding: 80px 0;
                margin: -30px 0;
                clip-path: polygon(0 1%, 100% 0, 100% 99%, 0 100%);
            }
            .team-section {
                padding: 80px 0;
            }
            .values-section {
                padding: 80px 0 40px;
                margin-top: -30px;
            }
            .section-title h2 {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .stat-label {
                font-size: 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .stats-section .section-title h2 {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 3rem;
            }
        }


          :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --primary-light: #818cf8;
            --secondary: #06d6a0;
            --secondary-dark: #05c090;
            --accent: #f59e0b;
            --dark: #1e293b;
            --darker: #0f172a;
            --light: #ffffff;
            --bg-light: #f8fafc;
            --bg-lighter: #f1f5f9;
            --gray: #64748b;
            --gray-light: #94a3b8;
            --gray-very-light: #e2e8f0;
            --card-bg: rgba(255, 255, 255, 0.9);
            --gradient-bg: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --gradient-secondary: linear-gradient(135deg, #06d6a0 0%, #10b981 100%);
            --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
            --shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
            --shadow-lg: 0 20px 60px rgba(99, 102, 241, 0.12);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .service-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--gray-very-light);
            border-radius: 20px;
            padding: 40px 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 5rem;
            font-weight: 900;
            color: rgba(99, 102, 241, 0.05);
            line-height: 1;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            position: relative;
            overflow: hidden;
            color: white;
            top:0 !important;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
        }

        .service-card:nth-child(1) .service-icon {
            background: var(--gradient-primary);
        }

        .service-card:nth-child(2) .service-icon {
            background: var(--gradient-secondary);
        }

        .service-card:nth-child(3) .service-icon {
            background: var(--gradient-accent);
        }

        .service-card:nth-child(4) .service-icon {
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
        }

        .service-card:nth-child(5) .service-icon {
            background: linear-gradient(135deg, #10b981 0%, #06d6a0 100%);
        }

        .service-card:nth-child(6) .service-icon {
            background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--darker);
        }

        .service-description {
            color: var(--gray);
            margin-bottom: 25px;
            font-size: 1rem;
            line-height: 1.7;
        }

        .service-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

             .badge {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .main-title {
            font-size: 4rem;
            font-weight: 800;
            color: var(--darker);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .highlight {
            position: relative;
            display: inline-block;
            color: var(--primary);
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background: linear-gradient(to right, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            z-index: -1;
            border-radius: 4px;
        }

        .subtitle {
            font-size: 1.3rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 60px;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-very-light);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            min-width: 160px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .feature-tag {
            background: rgba(99, 102, 241, 0.08);
            color: var(--primary-dark);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid rgba(99, 102, 241, 0.1);
        }

        .service-card:hover .feature-tag {
            background: rgba(99, 102, 241, 0.15);
            transform: translateY(-2px);
        }

        .service-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .service-cta:hover {
            color: var(--primary-dark);
            gap: 12px;
        }

        /* Floating Icons */
        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.05;
            animation: floatIcon 20s infinite linear;
            color: var(--primary);
        }

        @keyframes floatIcon {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(100px, -100px) rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .main-title {
                font-size: 3.5rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2.8rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-bar {
                gap: 20px;
                padding: 30px 20px;
            }
            
            .stat-item {
                min-width: 120px;
            }
            
            .cta-container {
                padding: 40px 20px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .button-group {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .button-secondary {
                margin-left: 0;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 2.2rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            .service-card {
                padding: 30px 20px;
            }
        }

        /* Scroll Animation */
        .service-card, .stat-item, .cta-container {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .visible {
            opacity: 1;
            transform: translateY(0);
        }
          .header {
            padding: 80px 0 40px;
            text-align: center;
        } 
        
        
        
        
        /*Footer*/
        
        
             /* FOOTER STYLES */
       
           .footer {
    /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); */

            color: white;
            margin-top: auto;
            position: relative;
            overflow: hidden;
        }

 .footer {
    background: 
        linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}


        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        
        /* TOP SECTION */
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .brand {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .brand-text h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .brand-text p {
            color: var(--text);
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }
        
        /* GRID LAYOUT */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-links i {
            color: var(--primary);
            font-size: 0.8rem;
        }
        
        /* CONTACT INFO */
        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        
        .contact-text h4 {
            font-size: 0.9rem;
            color: var(--accent);
            margin-bottom: 5px;
        }
        
        .contact-text p {
            color: var(--text);
            line-height: 1.5;
        }
        
        /* NEWSLETTER */
        .newsletter {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            width: fit-content;
        }
        
        .newsletter h3 {
            margin-bottom: 15px;
            color: white;
        }
        
        .newsletter p {
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
        }
        
        .newsletter-button {
            padding: 12px 25px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .newsletter-button:hover {
            transform: translateY(-2px);
        }
        
        /* BOTTOM BAR */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            color: var(--text);
            font-size: 0.9rem;
        }
        
        .legal-links {
            display: flex;
            gap: 20px;
        }
        
        .legal-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .legal-links a:hover {
            color: white;
        }
        
        /* RESPONSIVE */
        @media (max-width: 768px) {
            .footer-top {
                flex-direction: column;
                text-align: center;
            }
            
            .brand {
                flex-direction: column;
                text-align: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .demo-header h1 {
                font-size: 2.2rem;
            }
        }
        
        
        
        
        
        
        
        
        
        