/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Variables */
:root {
    /* Brand Colors */
    --primary-color: #6c63ff;
    --primary-dark: #564fd8;
    --secondary-color: #ff6584;
    --secondary-dark: #e04d6a;
    --accent-color: #4dabf7;
    --dark-color: #2d3436;
    --light-color: #f9f9f9;
    --gray-color: #636e72;
    --light-gray: #dfe6e9;

    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --big-font: 3.5rem;
    --h1-font: 2.25rem;
    --h2-font: 1.5rem;
    --h3-font: 1.25rem;
    --normal-font: 1rem;
    --small-font: 0.875rem;
    --smaller-font: 0.813rem;

    /* Font Weight */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /* Margins */
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    /* Shadows */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* :root {
--wakki: "M0 18.3178C0 8.20117 8.20116 0 18.3178 0H286.35C294.59 0 301.27 6.67974 301.27 14.9196V14.9196C301.27 20.9622 306.169 25.8607 312.211 25.8607H335.682C345.799 25.8607 354 34.0618 354 44.1785V255.682C354 265.799 345.799 274 335.682 274H18.3178C8.20117 274 0 265.799 0 255.682V18.3178Z";
}

.clip-path {
clip-path: path(var(--wakki));
overflow: hidden;
} */


/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


/* Logo Styling Starting Here*/
.waki-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    font-family: 'Poppins', sans-serif;
}

.geometric .logo-mark {
    position: relative;
    width: 40px;
    height: 40px;
}

.geometric .square {
    width: 30px;
    height: 30px;
    background: #6C63FF;
    transform: rotate(15deg);
    border-radius: 5px;
}

.geometric .line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 5px;
    background: #FF6584;
    border-radius: 3px;
}

.geometric .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2D3436;
    letter-spacing: -0.5px;
}

.footer-logo .logo-text {
    color: #FFF;
}

/* Logo Styling End Here*/


body {
    font-family: var(--font-family);
    font-size: var(--normal-font);
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: var(--font-semi-bold);
    color: var(--dark-color);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea {
    font-family: var(--font-family);
    font-size: var(--normal-font);
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

/* Reusable Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.section {
    padding: 6rem 0 2rem;
}

.section-pb {
    padding: 6rem 0 6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: var(--h1-font);
    margin-bottom: var(--mb-0-75);
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    display: block;
    font-size: var(--small-font);
    color: var(--gray-color);
    margin-bottom: var(--mb-3);
}

.btn {
    display: inline-block;
    padding: 0.66rem 1.5rem;
    border-radius: 50px;
    font-weight: var(--font-medium);
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(255, 101, 132, 0.3);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 101, 132, 0.4);
}

.image-wrapper .profile-img {
    position: relative;
    z-index: 1;
}

.image-wrapper .profile-img:before {
    content: '';
    position: absolute;
    z-index: 2;
    background-color: #00000080;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    border-radius: 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal);
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: var(--z-fixed);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    column-gap: 2.5rem;
}

.nav-link {
    font-weight: var(--font-medium);
    position: relative;
    transition: var(--transition);
    color: var(--dark-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.bar:nth-child(3) {
    bottom: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(108, 99, 255, 0.1), rgba(255, 101, 132, 0.1));
    top: -300px;
    right: -300px;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(77, 171, 247, 0.1), rgba(108, 99, 255, 0.1));
    bottom: -200px;
    left: -200px;
    z-index: -1;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-title {
    font-size: var(--big-font);
    font-weight: var(--font-bold);
    margin-bottom: var(--mb-0-75);
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: var(--h2-font);
    font-weight: var(--font-medium);
    color: var(--gray-color);
    margin-bottom: var(--mb-1-5);
    display: inline-block;
}

.hero-description {
    margin-bottom: var(--mb-2-5);
    max-width: 500px;
}

.hero-btns {
    display: flex;
    align-items: center;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* box-shadow: var(--shadow); */
    position: relative;
    z-index: 1;
}

.circle-animation {
    /* position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 4s infinite;
    opacity: 0; */

        position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 4s infinite;
    opacity: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circle-animation.delay-1 {
    animation-delay: 1s;
}

.circle-animation.delay-2 {
    animation-delay: 2s;
}

/* @keyframes pulse {
    0% {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.7;
    }

    100% {
        width: 135%;
        height: 135%;
        top: -17.5%;
        left: -17.5%;
        opacity: 0;
    }
} */
@keyframes pulse {
    0% {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.7;
    }
    100% {
        width: 135%;
        height: 135%;
        top: -17.5%;
        left: -17.5%;
        opacity: 0;
    }
}
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #FFFFFF;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
    transition: var(--transition);
}

.scroll-down a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.about-text {
    flex: 1;
}

.about-title {
    font-size: var(--h2-font);
    margin-bottom: var(--mb-1-5);
}

.about-description {
    margin-bottom: var(--mb-2);
}

.about-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: var(--mb-2-5);
}

.info-item {
    display: flex;
    align-items: center;
}

.info-item span {
    font-weight: var(--font-semi-bold);
    margin-right: 0.5rem;
    color: var(--gray-color);
}

.skills {
    margin-top: 2rem;
}

.skills-title {
    font-size: var(--h3-font);
    margin-bottom: var(--mb-1-5);
}

.skill-bars {
    margin-bottom: var(--mb-2-5);
}

.skill-bar {
    margin-bottom: var(--mb-1);
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--mb-0-5);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

.about-btns {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    gap: 12px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover h3.service-title {
    color: #ffd400;
}

.service-title {
    font-size: var(--h3-font);
}

.service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    top: -100%;
    left: 0;
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    color: #FFFFFF;
}

.service-card:hover::before {
    top: 0;
}

.service-card:hover .service-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.service-card:hover .service-bubble {
    transform: scale(10);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--mb-1-5);
    transition: var(--transition);
}

.service-description {
    margin-bottom: var(--mb-1-5);
    color: var(--gray-color);
    transition: var(--transition);
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.8);
}

.service-bubble {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: 10px;
    right: 10px;
    z-index: -1;
    transition: var(--transition);
}

/* Portfolio Section */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: var(--mb-2-5);
}

.portfolio-item:hover .overlay-content h3 {
    color: #ffe700;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: var(--font-medium);
    background-color: #FFFFFF;
    color: var(--dark-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.portfolio-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(108, 99, 255, 0.8), rgba(255, 101, 132, 0.8));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: #FFFFFF;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: var(--h3-font);
    margin-bottom: var(--mb-0-5);
}

.overlay-content p {
    font-size: var(--small-font);
    margin-bottom: var(--mb-1);
}

.portfolio-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    color: var(--primary-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.portfolio-link:hover {
    background-color: var(--primary-dark);
    color: #FFFFFF;
    transform: rotate(45deg);
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fade 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonial-content {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 5px solid rgba(108, 99, 255, 0.1);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: var(--mb-1-5);
    color: var(--gray-color);
}

.testimonial-text h3 {
    font-size: var(--h3-font);
    margin-bottom: var(--mb-0-25);
}

.testimonial-text span {
    font-size: var(--small-font);
    color: var(--gray-color);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--mb-2);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: var(--h3-font);
    margin-bottom: var(--mb-0-5);
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: var(--mb-2);
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--mb-1-5);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background-color: #f5f5f5;
    transition: var(--transition);
    border: 1px solid #eee;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: #FFFFFF;
    box-shadow: 0 0 0 2px var(--primary-color);
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Form Popup styling  */
.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.thank-you-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.thank-you-popup.active .popup-content {
    transform: translateY(0);
}

.check-icon {
    width: 60px;
    height: 60px;
    background: #009d2d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: bold;
}

.close-popup {
    background: #6C63FF;
    color: #FFFFFF;
    border: none;
    padding: 0.7rem 3rem;
    border-radius: 35px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    margin-top: 15px;
}

.close-popup:hover {
    background: #564fd8;
    transform: translateY(-2px);
}

.thank-you-popup {
    display: none;
    /* other styles */
}

.thank-you-popup.active {
    display: flex;
}

/*  */
.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FFFFFF;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--mb-2-5);
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: #FFFFFF;
}

.footer-links ul {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: var(--small-font);
    color: rgba(255, 255, 255, 0.7);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: var(--z-tooltip);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease forwards;
}

.d-flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accordion Styles */
.accordion-intro,
.intro-title {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.intro-title h3 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    /* spacing between text and logo */
}

.services-accordion:before {
    content: '';
    position: absolute;
    z-index: -1;
    background-color: #FFFFFF;
    opacity: .944;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.accordion-item.active button.accordion-header {
    background-color: var(--light-gray);
}

.services-accordion {
    position: relative;
    z-index: 0;
}

.hubspot-logo {
    height: 1.2em;
    vertical-align: middle;
}

.hubspot-logo {
    height: 25px;
    margin-bottom: 0rem;
}

.intro-title h3 {
    color: #2D3436;
    font-weight: 500;
    font-size: 1.2rem;
}

.accordion-intro {
    color: #2D3436;
    font-weight: 600;
    font-size: 1.8rem;
}

/* Accordion Items */

.accordion-item {
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background: #f9f9ff;
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #6C63FF;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2D3436;
    text-align: left;
    flex-grow: 1;
}

.accordion-icon {
    font-size: 1.3rem;
    color: #6C63FF;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 25px 20px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content p {
    color: #636e72;
    line-height: 1.6;
    margin-top: 20px;

}

.estimate-btn {
    display: inline-block;
    background: #6C63FF;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    margin-top: 15px;
    margin-left: 43px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.estimate-btn:hover {
    background: #564fd8;
    transform: translateY(-2px);
}

/* Certifications styling */
/* Base Styles */
.certifications-section {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #6C63FF, #4DABF7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  color: rgba(255,255,255,0.7);
}

/* Certification Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Certification Card */
.cert-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: rgba(108, 99, 255, 0.5);
}

.cert-badge {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.cert-badge img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  z-index: 2;
}

.cert-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-align: center;
      color: #FFD700;
}

.cert-card p {
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin-bottom: 1rem;
}

.cert-date {
  font-size: 0.8rem;
  color: #6C63FF;
  text-align: center;
  font-weight: 500;
}

/* Particle Orb Animation */
.particle-orb {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.3) 0%, rgba(108, 99, 255, 0) 70%);
  animation: pulse 3s infinite ease-in-out;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

/* Shine Effect */
.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.cert-card:hover .shine-effect {
  left: 150%;
}

/* Particles Background */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(108, 99, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
}



/* Responsive Design */

@media screen and (min-width: 768px) {
    section.contact {
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero-content {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
    }

    .about-image,
    .about-text,
    .contact-info,
    .contact-form {
        width: 100%;
    }

    .about-image {
        margin-bottom: var(--mb-2);
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-img {
        margin-bottom: var(--mb-1-5);
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 4rem 0 2rem;
    }

    .section-pb {
        padding: 4rem 0 4rem;
    }

    .section-header {
        margin-bottom: var(--mb-2-5);
    }

    body .hero {
        padding-top: 7rem;
        text-align: center;
        padding-bottom: 7rem;
        height: unset;
    }
body .image-wrapper{
    width: 233px;
    height: 233px;
}
    .hero-content,
    .hero-btns {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image,
    .hero-content {
        flex-basis: 100%;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Accordion Design */
    .accordion-header {
        padding: 15px 20px;
    }

    .accordion-content p {
        margin-left: 0;
    }

    .estimate-btn {
        margin-left: 0;
    }

}

@media screen and (max-width: 576px) {
    .nav-list {
        position: fixed;
        top: 4.5rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 4.5rem);
        background-color: #FFFFFF;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
.nav-list li
 {
    padding-bottom: 10px;
    font-size: 26px;
}
    .nav-list.active {
        left: 0;
    }

    .nav-item {
        margin-bottom: 1.5rem;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.11rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .about-info {
        grid-template-columns: 1fr;
    }

    .portfolio-filter {
        gap: 0.5rem;
    }
.accordion-intro h3 {
    font-size: 1.5rem;
}
    .filter-btn {
        padding: 0.5rem 1rem;
    }
}

@media screen and (max-width: 350px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .image-wrapper {
        width: 280px;
        height: 280px;
    }
}