/* Font Families */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* ==========================================================================
   1. Global Resets & Variables
   ========================================================================== */
:root {
    --primary-glow: rgba(144, 101, 255, 0.2);
    --dark-bg: #0f0e17;
    --card-bg: #1a1a2e;
    --text-light: #fffffe;
    --text-secondary: #a7a9be;
    --hover-bg: #f2f2f6;
    --hover-text: #000000;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. Header & Navigation
   ========================================================================== */
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(144, 101, 255, 0.25);
    padding: 15px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container img {
    height: 50px;
    transition: height 0.3s ease;
    display: block;
}

header.scrolled .logo-container img {
    height: 40px;
}

/* --- Desktop Navigation --- */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li > a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

.main-nav ul li:hover > a {
    color: #b58aff;
}

/* --- Submenu (Desktop) --- */
.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 5px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    display: flex;
    flex-direction: column;
}

.main-nav li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.main-nav .submenu li {
    width: 100%;
}

.main-nav .submenu li a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.main-nav .submenu li a:hover {
    background: #1f1f28;
    color: #b58aff;
}

/* --- Header Actions & Contact Button --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 179, 255, 0.6);
    border-radius: 50px;
    color: #b58aff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
    background: rgba(217, 179, 255, 0.08);
    border-color: #b58aff;
    box-shadow: 0 0 14px #b58aff, 0 0 30px #9065ff; /* Glow on Hover */
}

/* --- Mobile Navigation (Hamburger & Side Menu) --- */
#hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    background: none;
    border: none;
}

#hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #b58aff;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

#side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: rgba(10, 10, 10, 0.95); /* Slightly more opaque */
    backdrop-filter: blur(15px);
    padding: 20px;
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
}

#side-menu.active {
    right: 0;
}

#side-menu .side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-glow);
}

#side-menu .side-menu-header h3 {
    color: #b58aff;
    font-size: 1.5rem;
}

#close-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

#side-menu .side-nav-list,
#side-menu .submenu-mobile {
    list-style: none;
}

#side-menu .side-nav-list > li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#side-menu .side-nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 12px 5px;
    text-transform: uppercase;
}

#side-menu .side-nav-list li a:hover {
    color: #b58aff;
}

#side-menu .submenu-mobile {
    padding-left: 20px;
    display: none;
    margin-top: 10px;
}

#side-menu li.active > .submenu-mobile {
    display: block;
}

#side-menu li.active > a {
    color: #d84dff;
}


/* Hero Section Styling */
.spim-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin: 0;
}

.spim-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.spim-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    z-index: 2;
}

.spim-hero-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.spim-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: linear-gradient(to right, #ce99ff, #4F46E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    position: relative;
    z-index: 4;
}

.spim-hero-subtitle {
    font-size: 1.2rem;
    color: #d6d4d4;
    font-family: 'Inter', sans-serif;
    margin: 0 auto;
    max-width: 600px;
    position: relative;
    z-index: 4;
}

@media (max-width: 768px) {
    .spim-hero-title {
        font-size: 2rem;
    }

    .spim-hero-subtitle {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #060b15;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.gradient-text {
    background: linear-gradient(90deg, #4361ee, #5211eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
    font-size: 20px;
    margin-top: -20px; 
    font-family: 'Josefin', sans-serif;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
    margin: 20px auto 0;
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    display: flex;
    background-color: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-img {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-img img {
    transform: scale(1.05);
}

.testimonial-content {
    flex: 1;
    padding: 40px;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 80px;
    color: #4F46E5;
    opacity: 0.1;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e2e8f0;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author h4 {
    color: #4F46E5;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 21px;
}

.testimonial-author p {
    color: #94a3b8;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex-direction: column;
    }

    .testimonial-img {
        width: 100%;
        height: 300px;
    }
    .testimonial-img img {
        object-fit: contain;
        background-color: #1e293b;
    }
}

@media (max-width: 576px) {
    .testimonial-content {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-quote {
        font-size: 60px;
        top: 20px;
        right: 20px;
    }
}

/* Awards Section */
.awards-section {
    background-color: #060b15;
    color: #ffffff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.award-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.award-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    transition: transform 0.5s ease;
}

.award-card:hover .award-image img {
    transform: scale(1.05);
}

.award-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.award-card:hover .award-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 20px;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.overlay-content p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.award-badge {
    display: inline-block;
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.award-details {
    padding: 25px;
    flex-grow: 1;
}

.award-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.award-details p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    cursor: pointer;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox-caption {
    margin: 15px auto;
    width: 80%;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.close-btn:hover {
    color: #4361ee;
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .award-card {
        height: 400px;
    }

    .award-image {
        height: 250px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }
}

/* Our Story Section */
.about-section.our-story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #060a13 0%, #0d121a 50%, #01091e 100%);
}

.our-story-section .section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.story-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.story-content p {
    font-family: 'Inter', sans-serif;
    color: #d1d5db;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.8;
    flex: 1;
    margin: 0;
}

.story-image {
    flex: 1;
    max-width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .story-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .story-image {
        max-width: 100%;
        margin-top: 20px;
        object-fit: contain;
        background-color: #060a13;
    }
    .story-content p {
        margin: 0;
        text-align: center;
    }
}

/* DNA Section */
.dna-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #060a13 0%, #0d121a 50%, #01091e 100%);
}

.dna-section .section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.dna-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #d1d5db;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.dna-intro {
    text-align: center;
    margin-bottom: 30px;
}

.dna-intro h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #4F46E5;
    margin-top: 0;
    margin-bottom: 15px;
}

.dna-intro p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dna-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.dna-card {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 0;
    max-width: 45%;
}

.dna-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.dna-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #4F46E5;
    padding: 15px 20px;
    background: rgba(79, 70, 229, 0.1);
    margin: 0;
}

.dna-card-content {
    padding: 20px;
    color: #d1d5db;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .dna-cards {
        flex-direction: column;
    }
    .dna-card {
        max-width: 100%;
    }
}

/* Our Clients Section */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #060a13 0%, #0d121a 50%, #01091e 100%);
}

.clients-section .section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: 150px;
    background: #ffffff;
    border: 1px solid #1e293b;
    border-radius: 15px; /* MODIFICATION: Added rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.client-logo img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #000000;
}

.client-logo:hover img {
    opacity: 1;
}

.larger-logo1 img {
    max-height: 130%;
    max-width: 130%;
    object-fit: contain;
}

.larger-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


/* Team Section */
.team-section {
    background: linear-gradient(135deg, #060a13 0%, #0d121a 50%, #01091e 100%);
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.carousel-indicators {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.employee-card {
    flex: 0 0 33.33%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
}

.image-wrapper .image-real {
    opacity: 0;
    z-index: 1;
}

.image-wrapper .image-3d {
    opacity: 1;
    z-index: 2;
}

.image-wrapper:hover .image-real {
    opacity: 1;
}

.image-wrapper:hover .image-3d {
    opacity: 0;
}

.linkedin-below {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.linkedin-below:hover {
    transform: scale(1.1);
}

h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

p {
    color: #94a3b8;
    font-size: 15px;
    font-family: 'Inter', sans-serif;

}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #64748b;
    cursor: pointer;
}

.carousel-indicators button.active {
    background: #a5b4fc;
}

@media (max-width: 1024px) {
    .employee-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .employee-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .employee-card {
        flex: 0 0 100%;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #060a13 0%, #0d121a 50%, #01091e 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    max-width: 700px;
    margin: 0 auto;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    border-left: 1.8px solid #2f037a;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: #1e293b;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #2a3440;
}

.faq-answer {
    padding: 15px 20px;
    display: none;
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    background: #020617;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question::after {
    content: '\25BC';
    float: right;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer-section {
    background-color: #000;
    padding: 80px 0 40px;
    font-family: 'Poppins', sans-serif;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.footer-menu a:hover {
    color: #fff !important;
}

.footer-col img {
    max-width: 150px;
    margin-bottom: 20px;
    filter: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-col img:hover {
    opacity: 0.9;
}

.company-info {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.company-info p {
    margin: 0 0 10px;
}

.company-info strong {
    color: #fff;
}


/* Copyright */
.glass-bottom-bar {
    background: rgba(0, 0, 0, 0.91);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-top: 1px solid rgba(181, 138, 255, 0.2);
    box-shadow: 0 -4px 12px rgba(181, 138, 255, 0.2);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    z-index: 99;
}

.glass-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.glass-copyright {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.glass-copyright a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
}

.glass-copyright a:hover {
    color: #FFFFFF;
}

.glass-icons {
    display: flex;
    gap: 16px;
}

.icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    font-size: 15px;
    background-color: transparent;
    border: none;
}

.icon svg {
    height: 24px;
    width: 24px;
    fill: currentColor;
    transition: color 0.3s ease;
}

.icon:hover {
    background-color: transparent;
    box-shadow: none;
    transform: scale(1.2);
}

.icon.li:hover svg,
.icon.tw:hover svg,
.icon.ig:hover svg,
.icon.fb:hover svg {
    color: #FFFFFF;
}

/* ==========================================================================
   8. Floating Action Buttons
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin-top: 2px;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(144, 101, 255, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 400ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #7e22ce 0%, #3b82f6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-wrap:hover::after {
    opacity: 0.1;
}

.progress-wrap .progress-icon {
    position: absolute;
    height: 100%;
    width: 100%;
    font-size: 18px;
    color: #9065ff;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 400ms linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-wrap:hover .progress-icon {
    color: #ffffff;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #9065ff;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}


/* Responsive Design */
@media (max-width: 1024px) {
    header > div {
        max-width: 90%;
        padding: 0 20px;
    }

    header > div > nav > ul {
        gap: 25px;
        font-size: 14px;
    }

    header > div > div:first-child img {
        height: 45px;
    }

    header > div > div:nth-child(3) > a {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .header-actions .contact-btn {
        display: none;
    }

    #hamburger-menu {
        display: flex;
    }

    header {
        padding: 15px 20px;
    }
    .logo-container img {
        height: 35px;
    }

    .main-nav .submenu {
        display: none !important;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
    .footer-col {
        min-width: 100%;
        text-align: left;
    }
    .footer-menu, .company-info {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .glass-content-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .glass-icons {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .gradient-text {
        font-size: 1rem; 
        margin-top: -5px; 
        margin-bottom: 30px;
    }
}

    /* Floating Buttons */
    .progress-wrap {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float {
        right: 20px;
        bottom: 80px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }