:root {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f97316;
    --dark-color: #0f172a;
    --light-color: #f1f5f9;
    --text-light: #64748b;
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --gradient-5: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --gradient-6: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Custom Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-brand {
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark-color) !important;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: var(--hero-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInUp 1s ease-out 0.2s both;
}

.btn-custom {
    background: linear-gradient(45deg, var(--secondary-color), var(--warning-color));
    border: none;
    padding: 18px 45px;
    font-weight: 700;
    border-radius: 50px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    background: linear-gradient(45deg, var(--warning-color), var(--secondary-color));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.6);
    color: white;
}

.hero-icon {
    font-size: 30rem;
    color: rgba(0, 0, 0, 20);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.about-icon {
    font-size: 15rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="200" r="60" fill="rgba(99,102,241,0.05)"/><circle cx="900" cy="400" r="80" fill="rgba(236,72,153,0.05)"/><circle cx="200" cy="800" r="70" fill="rgba(245,158,11,0.05)"/></svg>');
    opacity: 0.7;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 45px 35px;
    margin-bottom: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

.service-card-1::before {
    background: var(--gradient-1);
}

.service-card-2::before {
    background: var(--gradient-2);
}

.service-card-3::before {
    background: var(--gradient-3);
}

.service-card-4::before {
    background: var(--gradient-4);
}

.service-card-5::before {
    background: var(--gradient-5);
}

.service-card-6::before {
    background: var(--gradient-6);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: 25px;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0);
}

.service-card:hover::before {
    opacity: 0.95;
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover {
    transform: translateY(-20px) rotateX(5deg) scale(1.02);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-icon {
    font-size: 4rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    transition: all 0.6s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    color: white;
    -webkit-text-fill-color: white;
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.4));
}

.service-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
    transition: all 0.6s ease;
}

.service-card:hover .service-title {
    color: white;
    transform: translateY(-8px);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-description {
    color: var(--text-light);
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.95);
}

.service-details {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    text-align: left;
    padding: 25px;
}

.service-card:hover .service-details {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.02);
}

.service-card:hover .service-content {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
}

.service-content {
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    transform: translateX(-30px);
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.service-card:hover .service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:hover .service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:hover .service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:hover .service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:hover .service-item:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:hover .service-item:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:hover .service-item:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.service-item:hover {
    transform: translateX(8px);
    color: #fbbf24;
}

.service-item i {
    margin-right: 15px;
    width: 25px;
    color: #fbbf24;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.3) rotate(10deg);
    color: #f59e0b;
}

.service-details-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

/* Blog Section */
.blog-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.blog-image {
    height: 240px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.blog-card:nth-child(2) .blog-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.blog-card:nth-child(3) .blog-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="8" fill="rgba(255,255,255,0.2)"/><circle cx="70" cy="20" r="12" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="70" r="10" fill="rgba(255,255,255,0.15)"/></svg>');
    animation: float 4s ease-in-out infinite;
}

.blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 35px;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Subscribe Section */
.subscribe-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.subscribe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="300" cy="200" r="80" fill="rgba(255,255,255,0.1)"/><circle cx="700" cy="600" r="120" fill="rgba(255,255,255,0.1)"/><circle cx="500" cy="800" r="100" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 8s ease-in-out infinite;
}

.form-control-custom {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: white;
    transition: all 0.4s ease;
    font-weight: 500;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom:focus {
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.3);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    outline: none;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
}

.accordion-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 25px 30px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Privacy & Terms Section */
.privacy-terms-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.policy-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.policy-title {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.policy-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.policy-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h4 {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 30px;
}

.contact-form .form-control {
    border: 2px solid rgba(99, 102, 241, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.map-container {
    height: 300px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    text-align: center;
    padding: 20px;
}

.contact-info-item i {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-item h6 {
    color: var(--dark-color);
    font-weight: 700;
    margin: 15px 0 10px 0;
}

.contact-info-item p {
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1e293b 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}


.footer h5 {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.social-icons a {
    display: inline-block;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    line-height: 55px;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.4s ease;
    font-size: 1.3rem;
}

.social-icons a:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--warning-color));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

/* Section Headings */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .service-card {
        height: auto;
        min-height: 350px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .hero-icon {
        font-size: 10rem;
    }

    .about-icon {
        font-size: 8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 30px 20px;
        height: auto;
        min-height: 300px;
    }

    .btn-custom {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Additional Animations */
.bounce-in {
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    z-index: 9999;
    transition: width 0.1s ease;
}