:root {
    --primary-color: #2667FF;
    --secondary-color: #0B1460;
    --accent-color: #FF4754;
    --light-color: #F8F9FA;
    --dark-color: #212529;
}

/* ===== BASE STYLES ===== */
body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    color: var(--dark-color);
    background-color: #fff;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(135deg, #6ea8fe, #0d6efd);
    color: white;
    font-weight: 500;
}

.announcement-bar a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.announcement-bar a:hover {
    color: var(--secondary-color);
}

/* ===== NAVIGATION ===== */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

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

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover::after {
    width: calc(100% - 30px);
}

.nav-cta {
    font-weight: 600;
    padding: 10px 20px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(38, 103, 255, 0.3);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 10px;
    transition: all 0.3s ease;
    min-width: 220px;
}

.dropdown-item {
    padding: 8px 20px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: var(--primary-color);
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(38, 103, 255, 0.1);
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
}

.parallax-img {
    transition: transform 0.3s ease-out;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

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

.trust-badges {
    margin-top: 40px;
}

.trust-badges img {
    transition: all 0.3s ease;
}

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

.trust-badges img[alt="fiverr Rating"] {
    position: relative;
    top: -3px; /* Adjust this value as needed */
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.stars {
    color: #FFC107;
    font-size: 1.2rem;
}

/* Typing Animation*/ 
.typed-text {
    color: var(--primary-color);
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--primary-color);
    margin-left: 4px;
    animation: blink 1s infinite;
}

.cursor.typing {
    animation: none;
}

@keyframes blink {
    0% { background-color: var(--primary-color); }
    49% { background-color: var(--primary-color); }
    50% { background-color: transparent; }
    99% { background-color: transparent; }
    100% { background-color: var(--primary-color); }
}



/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: #fff;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white-color);
}

.section-description {
    color: var(--white-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.service-bg-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(38, 103, 255, 0.05);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: -1;
    transition: all 0.5s ease;
}

.service-card:hover .service-bg-shape {
    transform: scale(1.2);
}

/* ===== ABOUT US SECTION ===== */
.about-us-section {
    position: relative;
    overflow: hidden;
}

.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.03);
}

.skills-progress {
    margin-top: 30px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 4px;
    width: 0;
    transition: width 1s ease-in-out;
}

/* Stats Grid Layout */
.stat-box {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(248, 249, 250, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* ===== WORK PROCESS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #6ea8fe, #0d6efd);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.process-steps {
    position: relative;
    z-index: 2;
}

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

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

.process-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(38, 103, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.process-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== WHY CHOOSE US SECTION ===== */
.video-about-section {
    background-color: #f8f9fa;
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
}

.video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.video-wrapper:hover img {
    transform: scale(1.02);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 2;
}

.video-play-button:hover {
    background: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: ripple 2s infinite;
    opacity: 0;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.about-content-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(38, 103, 255, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-content p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: #f8f9fa;
    position: relative;
}

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

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

.testimonial-quote {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-position {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.carousel-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-control-prev,
.carousel-control-next {
    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;
    transition: all 0.3s ease;
    border: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #6ea8fe, #0d6efd);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.cta-section:hover .cta-title::after {
    width: 150px;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-section {
    background-color: #fff;
    position: relative;
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 1px solid #e9ecef;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(38, 103, 255, 0.25);
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232667FF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-icon {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.footer-logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-info a:hover {
    color: white;
}

.newsletter {
    margin-top: 20px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    height: 50px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    height: 50px;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: white;
}

/* ===== BACK TO TOP BUTTON ===== */
.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: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: white;
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===== MODAL ===== */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 20px;
}

.modal-body {
    padding: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        padding-top: 15px;
    }
    
    .nav-item {
        margin-bottom: 5px;
    }
    
    .nav-cta {
        margin-top: 10px;
    }
    
    .about-content-box {
        padding: 30px;
    }
    
    .process-card {
        padding: 25px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-legal-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .about-image-container {
        margin-bottom: 30px;
    }
    
    .process-card {
        padding: 20px;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .process-card h3 {
        font-size: 1.1rem;
    }
    
    .process-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
    
    .dropdown-item {
        padding: 8px 15px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 10px;
    }
}

/* Hero Section Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 40px 0 !important;
    }
    
    .hero-section .row {
        display: flex;
        flex-direction: column;
    }
    
    .hero-section .hero-image {
        order: -1; /* Moves the image above the content */
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-section .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-section .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-section .hero-content .lead {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-section .btn-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .hero-section .btn {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .trust-badges {
        justify-content: center;
        margin-top: 20px;
    }
    
    .trust-badges .d-flex {
        justify-content: center;
    }
}

/*Move Image top*/
/* Hero Section Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 40px 0 !important;
    }
    
    .hero-section .row {
        display: flex;
        flex-direction: column;
    }
    
    .hero-section .hero-image {
        order: -1; /* Moves the image above the content */
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-section .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-section .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-section .hero-content .lead {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-section .btn-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .hero-section .btn {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .trust-badges {
        justify-content: center;
        margin-top: 20px;
    }
    
    .trust-badges .d-flex {
        justify-content: center;
    }
	
	.btn-send {
        display: block;
        width: 100% !important;
        margin: 0 0 10px 0 !important;
       }
}

/* For extra small devices (phones) */
@media (max-width: 575.98px) {
    .hero-section .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .hero-image img {
        max-width: 80%;
    }
    
    .hero-section .trust-badges img {
        width: 60px !important;
    }
    
    .hero-section .trust-badges img[alt="fiverr Rating"] {
        width: 50px !important;
    }
    
    .hero-section .rating {
        font-size: 0.9rem;
    }
}
@media (max-width: 991.98px) {
    .hero-section .parallax-img {
        transform: none !important;
    }
}

/*button full width*/

@media (max-width: 767.98px) {
  /* 1. Make ALL link buttons full width */
  a[class*="btn"] {
    display: block;
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}
 @media (max-width: 991.98px) {
    a[class*="btn"] {
    display: block;
    width: 100% !important;
    margin: 0 0 10px 0 !important;
    }
 }
 	
/* Menu Broken solved */
 /* ===== MENU FIX FOR 1245px BREAKPOINT ===== */
@media (max-width: 1245px) and (min-width: 992px) {
    /* Navbar container adjustments */
    .navbar {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Logo size reduction */
    .navbar-brand img {
        width: 140px;
    }
    
    /* Nav items container */
    .navbar-nav {
        flex-wrap: nowrap;
        align-items: center;
        gap: 4px;
    }
    
    /* Individual nav items */
    .navbar-nav .nav-item {
        margin-right: 0;
        white-space: nowrap;
    }
    
    /* Nav links */
    .nav-link {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Services dropdown adjustments */
    .dropdown-toggle .fa-chevron-down {
        font-size: 0.65rem;
        margin-left: 2px;
    }
    
    /* CTA button specific styling */
    .nav-cta {
        padding: 0.35rem 0.7rem !important;
        font-size: 0.85rem !important;
        margin-left: 8px !important;
        white-space: nowrap;
    }
    
    /* Reduce dropdown menu padding */
    .dropdown-menu {
        min-width: 200px;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* If still not fitting, hide less important items */
    /*
    .navbar-nav .nav-item:nth-child(4),
    .navbar-nav .nav-item:nth-child(5) {
        display: none;
    }
    */
}

.social-links a {
  text-decoration: none;
}


.btn-light {
            background: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
.btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255,255,255,0.3);
        }
