:root {
    --primary-color: #e83e8c;
    --primary-dark: #d5317a;
    --secondary-color: #6f42c1;
    --accent-color: #20c997;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #495057;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--text-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-content {
    text-align: center;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(232, 62, 140, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    padding: 1.2rem 2rem;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.7rem 2rem;
}

.navbar-brand {
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    transition: all 0.3s ease;
    color: #fff;
}

.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

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

.nav-link:hover:after {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 62, 140, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.btn-secondary:hover {
    background-color: #5e35b1;
    border-color: #5e35b1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
}

.btn-outline-light {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1584515933487-779824d29309?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.8) 0%, rgba(111, 66, 193, 0.8) 100%);
    opacity: 0.85;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-shape {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Section Styles */
.section-padding {
    padding: 120px 0;
}

.section-title {
    margin-bottom: 70px;
    text-align: center;
}

.section-title h2 {
    font-weight: 800;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-img img {
    transition: all 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-feature {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.services-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.1) 0%, rgba(111, 66, 193, 0.1) 100%);
    border-radius: 50%;
    transform: translate(200px, -200px);
    z-index: 0;
}

.services-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.1) 0%, rgba(111, 66, 193, 0.1) 100%);
    border-radius: 50%;
    transform: translate(-150px, 150px);
    z-index: 0;
}

.service-box {
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    background: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.05) 0%, rgba(111, 66, 193, 0.05) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color);
}

.service-box:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.service-box:hover .service-icon {
    transform: rotateY(360deg);
    color: var(--secondary-color);
}

.service-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-box p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.how-it-works-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.05) 0%, rgba(111, 66, 193, 0.05) 100%);
    border-radius: 50%;
    transform: translate(150px, -150px);
    z-index: 0;
}

.process-box {
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    background: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.process-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color);
}

.process-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
    background: rgba(232, 62, 140, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
}

.process-box:hover .process-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.process-step {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

.process-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-box p {
    margin-bottom: 0;
    line-height: 1.7;
}

.process-connector {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.connector-line:before, .connector-line:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.connector-line:before {
    left: 0;
}

.connector-line:after {
    right: 0;
    background: var(--secondary-color);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2ZmZmZmZiI+PHBhdGggZD0iTTEyODAgMy40QzEwNTAuNTkgMTggMTAxOS40IDg0Ljg5IDczNC40MiA4NC44OWMtMzIwIDAtMzIwLTg0LjMtNjQwLTg0LjNDNTkuNC41OSAyOC4yIDEuNiAwIDMuNFYxNDBoMTI4MHoiIGZpbGwtb3BhY2l0eT0iLjMiLz48cGF0aCBkPSJNMCAyNC4zMWM0My40Ni01LjY5IDk0LjU2LTkuMjUgMTU4LjQyLTkuMjUgMzIwIDAgMzIwIDg5LjI0IDY0MCA4OS4yNCAyNTYuMTMgMCAzMDcuMjgtNTcuMTYgNDgxLjU4LTgwVjE0MEgweiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik0xMjgwIDUxLjc2Yy0yMDEgMTIuNDktMjQyLjQzIDUzLjQtNTEzLjU4IDUzLjQtMzIwIDAtMzIwLTU3LTY0MC01Ny00OC44NS4wMS05MC4yMSAxLjM1LTEyNi40MiAzLjZWMTQwaDEyODB6Ii8+PC9nPjwvc3ZnPg==');
    background-size: 100% 100%;
    z-index: 1;
    opacity: 0.1;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.team-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.1) 0%, rgba(111, 66, 193, 0.1) 100%);
    border-radius: 50%;
    transform: translate(150px, 150px);
    z-index: 0;
}

.team-member {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    transition: all 0.5s ease;
}

.team-member:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(232, 62, 140, 0.9);
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-member:hover .team-social {
    bottom: 0;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

.team-info {
    padding: 25px;
    text-align: center;
    background: white;
}

.team-info h5 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-info p {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Testimonials */
.testimonial-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-shape {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.05) 0%, rgba(111, 66, 193, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 5px solid rgba(232, 62, 140, 0.1);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.testimonial-position {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.testimonial-rating {
    margin-top: 15px;
    color: #ffc107;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1609220136736-443140cffec6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.8) 0%, rgba(111, 66, 193, 0.8) 100%);
    opacity: 0.9;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Partners Section */
.partners-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.partner-logo {
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    margin: 20px;
    opacity: 0.7;
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    opacity: 1;
}

.main-sponsor {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.main-sponsor:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.main-sponsor img {
    filter: none;
    opacity: 1;
    max-height: 120px;
}

.partners-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.1) 0%, rgba(111, 66, 193, 0.1) 100%);
    border-radius: 50%;
    transform: translate(100px, 100px);
    z-index: 0;
}

/* Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.05) 0%, rgba(111, 66, 193, 0.05) 100%);
    border-radius: 50%;
    transform: translate(-150px, -150px);
    z-index: 0;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: inline-block;
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(232, 62, 140, 0.1);
}

.contact-card:hover .contact-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.contact-card h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-card p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-media a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
    height: 50px;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(232, 62, 140, 0.25);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 100px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2Y4ZjlmYSI+PHBhdGggZD0iTTEyODAgMy40QzEwNTAuNTkgMTggMTAxOS40IDg0Ljg5IDczNC40MiA4NC44OWMtMzIwIDAtMzIwLTg0LjMtNjQwLTg0LjNDNTkuNC41OSAyOC4yIDEuNiAwIDMuNFYxNDBoMTI4MHoiIGZpbGwtb3BhY2l0eT0iLjMiLz48cGF0aCBkPSJNMCAyNC4zMWM0My40Ni01LjY5IDk0LjU2LTkuMjUgMTU4LjQyLTkuMjUgMzIwIDAgMzIwIDg5LjI0IDY0MCA4OS4yNCAyNTYuMTMgMCAzMDcuMjgtNTcuMTYgNDgxLjU4LTgwVjE0MEgweiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik0xMjgwIDUxLjc2Yy0yMDEgMTIuNDktMjQyLjQzIDUzLjQtNTEzLjU4IDUzLjQtMzIwIDAtMzIwLTU3LTY0MC01Ny00OC44NS4wMS05MC4yMSAxLjM1LTEyNi40MiAzLjZWMTQwaDEyODB6Ii8+PC9nPjwvc3ZnPg==');
    background-size: 100% 100%;
    transform: rotateX(180deg);
    z-index: 1;
}

.footer h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-links h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

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

.footer-links ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links ul li a:hover:before {
    left: 5px;
    color: white;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 70px;
    text-align: center;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.4);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .navbar {
        background-color: white !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 0.7rem 1rem;
    }
    
    .nav-link {
        color: var(--text-color);
    }
    
    .hero {
        padding: 150px 0 100px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .about-img {
        margin-bottom: 50px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .process-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-links h5:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a {
        padding-left: 0;
    }
    
    .footer-links ul li a:before {
        display: none;
    }
    
    .footer-links ul li a:hover {
        padding-left: 0;
    }
    
    .map-container {
        margin-top: 30px;
        height: 300px;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
