/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --primary-color: #000000;
    --accent-color: #ff6b00;
    --text-color: #ffffff;
    --light-bg: #f3f4f6;
}

body {
    overflow-x: hidden;
    background-color: #000000;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: transparent;
    backdrop-filter: blur(0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background, backdrop-filter, padding;
}

.header-scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.1);
}

.header-hidden {
    transform: translateY(-100%);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    display: inline-block;
    opacity: 1;
    transition: transform 0.3s ease;
}

.logo:hover {
    animation: vibrate 0.3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    opacity: 1;
    transition: color 0.3s ease;
    
}

.nav-links a::after {
    content:'';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}
/* Removes the background from the active navigation link */

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}


.cta-button {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    animation: vibrate 0.3s ease-in-out infinite;
    background: var(--accent-color);
    color: var(--primary-color);
}
/* Mobile Styles */
@media (max-width: 768px) {
    /* This only hides the button inside the header */
    .header > .cta-button {
        display: none;
    }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: start;
        padding: 4rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid var(--accent-color);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--accent-color);
        transition: all 0.3s ease;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 5rem;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(circle at center, transparent 0%, #000000 70%),
        linear-gradient(45deg, var(--accent-color) 0%, transparent 60%),
        linear-gradient(-45deg, #330000 0%, transparent 60%);
    transform-origin: center;
    animation: rotate3d 20s linear infinite;
    opacity: 0.5;
    z-index: 0;
}

@keyframes rotate3d {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 1;
}

.hero-text {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 1;
}

/* Animations */
@keyframes vibrate {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */


/* Mobile menu button */
.menu-toggle {
    display: none; /* HIDE the button by default on desktop */
    background: black;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column; /* Added this from your other rule for consistency */
    gap: 5px; /* Added this from your other rule for consistency */
    z-index: 1001; /* Make sure it's on top when visible */
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}
@media (max-width: 768px) {
    .header {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        border-radius: 0;
        transform: none;
        border: none;
        border-top: 2px solid var(--accent-color);
        border-bottom: 2px solid var(--accent-color);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    .hero {
    min-height: auto; /* Let content define the height on mobile */
    padding-top: 10rem; /* Add space so it's not under the fixed header */
    padding-bottom: 5rem;
}
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
}
/* Company Slider Section */
.company-slider-section {
    /* Reduced padding to minimize height */
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    /* Updated gradient to fade from black, to grey, and back to black */
    background: linear-gradient(to bottom, #000000, #1a1a1a, #000000);
}

.company-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.company-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.company-slider-section .section-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.company-slider-section .section-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.company-slider-section .section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
}

.company-slider-section .section-subtitle.revealed {
    opacity: 0.8;
    transform: translateY(0);
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container::before,
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.slider-container::before {
    left: 0;
}

.slider-container::after {
    right: 0;
}

.slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.slide {
    flex: 0 0 auto;
    padding: 1rem 3rem;
}
/* --- NEW STYLES FOR CLIENT LOGOS --- */
.slide img {
    height: 60px; /* Sets a consistent height for all logos */
    width: auto; /* Maintains aspect ratio */
    opacity: 1.1;
  

 transition: all 0.5s ease-in-out;

}


.slide img:hover {
    opacity: 1;
    transform: scale(1.1);
}




@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive styles for company slider */
@media (max-width: 768px) {
    .company-slider-section {
        padding: 4rem 0;
    }

    .company-slider-section .section-title {
        font-size: 2rem;
    }

    .company-slider-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .slide span {
        font-size: 1.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 4rem 5%;;
    background: var(--primary-color);
    overflow: hidden;
}

.section-header {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 20px;
}

.section-label {
    display: block;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-subtitle {
    display: block;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    transition-delay: 0.1s;
}

.section-header.revealed .section-label,
.section-header.revealed .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.services-section .section-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
    text-transform: capitalize;
    background: linear-gradient(
        to right bottom,
        var(--text-color) 30%,
        rgba(255, 255, 255, 0.2)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-header.revealed .section-title {
    opacity: 1;
    transform: translateY(0);
}

.services-section .section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    bottom: -15px;
    left: 0;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
}

.services-section .section-title.revealed::after {
    transform: scaleX(1);
}
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates two equal columns */
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 20px;
}

/* Services Content Styles */
.services-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
    order: 1;
}

/* Service Image Styles */
.service-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: calc(90% - 2rem);
    margin: 2rem 0;
    transform-style: preserve-3d;
    perspective: 1000px;
    order: 2;
}

.service-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateZ(-100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image.active {
    opacity: 1;
    transform: translateZ(0);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.image-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.image-decoration.top-left {
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatDecor 6s ease-in-out infinite;
}

.image-decoration.bottom-right {
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(315deg, var(--accent-color) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatDecor 6s ease-in-out infinite reverse;
}

.glow-effect {
    position: absolute;
    inset: -20px;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 0, 0.3),
        rgba(255, 107, 0, 0.1),
        rgba(255, 107, 0, 0.3)
    );
    filter: blur(20px);
    border-radius: 30px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image-container:hover .glow-effect {
    opacity: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card.revealed {
    transform: translateY(0);
    opacity: 1;
}

.service-card.active {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--accent-color);
    transform: translateY(0) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.1);
}

.service-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
}

@keyframes floatDecor {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive Design for Services Section */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image-container {
        height: 400px;
        margin: 1rem 0;
    }

    .services-content {
        order: 2;
    }

    .service-image-container {
        order: 1;
    }

    .service-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .services-section .section-title {
        font-size: 2.5rem;
    }
}
.stats-section {
    padding: 4rem 5%;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -2rem; /* Negative gap for overlapping effect */
    position: relative;
    padding: 2rem 0;
}

.stat-circle {
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 -1rem; /* Negative margin for overlapping */
    transition: all 0.3s ease;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-circle:hover {
    transform: translateY(-10px);
}

.stat-circle:hover::before {
    opacity: 1;
}

.stat-content {
    text-align: center;
    z-index: 1;
}

.stat-content h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-content p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 120px;
    margin: 0 auto;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .stats-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-circle {
        width: 180px;
        height: 180px;
        margin: 0;
    }

    .stat-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-circle {
        width: 150px;
        height: 150px;
    }

    .stat-content h3 {
        font-size: 1.8rem;
    }

    .stat-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        flex-direction: column;
    }

    .stat-circle {
        width: 180px;
        height: 180px;
        margin: -1rem 0;
    }
}

/* Case Studies Section */
.case-studies-section {
    padding: 6rem 5%;
    background: var(--primary-color);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    color: var(--text-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.case-study-card {
    background: rgba(17, 17, 17, 0.95);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.case-study-card:nth-child(2) {
    transition-delay: 0.2s;
}

.case-study-card:nth-child(3) {
    transition-delay: 0.4s;
}

.case-study-card:nth-child(4) {
    transition-delay: 0.6s;
}

.case-study-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.3);
}

.case-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.case-study-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px 10px 0 0;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
    opacity: 1;
}

.case-study-content {
    padding: 2rem;
}

.case-study-content h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-study-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat h4 {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
}

.learn-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.learn-more:hover {
    gap: 1rem;
}

.arrow {
    transition: transform 0.3s ease;
}

.learn-more:hover .arrow {
    transform: translateX(5px);
}

.view-all-container {
    text-align: center;
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.view-all-container.revealed {
    opacity: 1;
    transform: translateY(0);
}

.view-all-button {
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.view-all-button:hover .arrow {
    transform: translateX(5px);
}

/* Responsive Design for Case Studies */
@media (max-width: 1024px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .case-study-card.large {
        grid-column: span 1;
    }

    .case-study-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .case-study-content h3 {
        font-size: 1.3rem;
    }

    .stat h4 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .case-stats {
        grid-template-columns: 1fr;
    }

    .case-study-content {
        padding: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: var(--primary-color);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    min-height: 800px;
    max-height: 800px;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    text-align: center;
}

.testimonials-section .section-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.testimonials-section .section-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-wrapper {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.testimonials-wrapper::before,
.testimonials-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.testimonials-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, var(--primary-color), transparent);
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: slideUp 20s linear infinite;
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 220px;
    margin-bottom: 20px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 107, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover .profile-img {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.testimonial-author h4 {
    color: var(--text-color);
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
}

.testimonial-author p {
    color: var(--accent-color);
    margin: 5px 0 0;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
}

.rating {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    gap: 2px;
}

.star {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .star {
    animation: starPulse 1s ease infinite;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes starPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
        min-height: 700px;
        max-height: 700px;
    }

    .testimonials-section .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-wrapper {
        height: 400px;
    }
    
    .testimonial-card {
        padding: 20px;
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .testimonials-section {
        padding: 30px 0;
        min-height: 600px;
        max-height: 600px;
    }

    .testimonials-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .testimonials-wrapper {
        height: 350px;
    }
    
    .testimonial-card {
        padding: 15px;
        height: 180px;
    }
    
    .testimonial-text {
        font-size: 12px;
        line-height: 1.4;
        -webkit-line-clamp: 3;
    }
}

/* Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for all elements */
* {
    scroll-behavior: smooth;
}

/* Our Specialities Section */
.specialities-section {
    background: var(--primary-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.specialities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.specialities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.specialities-section .section-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.specialities-section .section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    opacity: 0.8;
}

.specialities-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.speciality-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.speciality-row.revealed {
    opacity: 1;
    transform: translateY(0);
}

.speciality-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.speciality-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 0, 0.2) 0%,
        transparent 50%,
        rgba(255, 107, 0, 0.1) 100%
    );
    border-radius: 20px;
    transform: translateZ(-10px);
    pointer-events: none;
    z-index: 2;
}

.stat-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.stat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

.speciality-image:hover .stat-image-wrapper {
    transform: translateZ(20px) rotateX(2deg) rotateY(2deg);
}

.image-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.image-decoration.top-left {
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatDecor 6s ease-in-out infinite;
}

.image-decoration.bottom-right {
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(315deg, var(--accent-color) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatDecor 6s ease-in-out infinite reverse;
}

.stat-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 0, 0.3),
        rgba(255, 107, 0, 0.1),
        rgba(255, 107, 0, 0.3)
    );
    filter: blur(20px);
    border-radius: 30px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.speciality-image:hover .stat-glow {
    opacity: 1;
}

@keyframes floatDecor {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.values-image {
    object-fit: contain;
    background: var(--primary-color);
    padding: 2rem;
}

.speciality-row:hover .stat-image {
    transform: scale(1.05);
}

.speciality-content {
    padding: 2rem;
}

.stat-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item h3 {
    color: var(--accent-color);
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1rem;
}

.stat-description {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Specialities Responsive Styles */
@media screen and (max-width: 992px) {
    .speciality-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .speciality-content {
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 3.5rem;
    }

    /* Override reverse layout on mobile */
    .speciality-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .speciality-row.reverse .speciality-image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .specialities-section {
        padding: 60px 0;
    }

    .specialities-section .section-title {
        font-size: 2rem;
    }

    .specialities-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .stat-item h3 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .specialities-section {
        padding: 40px 0;
    }

    .specialities-section .section-title {
        font-size: 1.8rem;
    }

    .specialities-section .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}
.consultation-section {
  background: var(--primary-color);
  padding: 80px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.consultation-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consultation-header {
  margin-bottom: 3rem;
  max-width: 800px;
}

.consultation-header h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.calendar-wrapper {
  width: 100%;
  max-width: 900px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  min-height: 500px;
}

#inline-widget-naasell,
#inline-widget-naasell iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  border-radius: 0;
  z-index: 2;
}

/* Feature Cards */
.consultation-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  width: 100%;
  padding: 0 10px;
}

.feature-item {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255,107,0,0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
}

.feature-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-item:hover {
  background: rgba(255,107,0,0.1);
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255,107,0,0.1);
}

.feature-icon {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  transition: transform .3s ease;
}
.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}
.feature-item h3 { color: var(--text-color); font-size: 1.3rem; margin-bottom:1rem; }
.feature-item p { color: var(--text-color); opacity: 0.8; line-height:1.6; }

/* Responsive Layout */
@media screen and (max-width: 992px) {
  .consultation-features {
    grid-template-columns: repeat(2,1fr);
  }
}
@media screen and (max-width: 768px) {
  .consultation-header h2 { font-size: 2rem; }
  .calendar-wrapper { min-height: 500px; }
  .consultation-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .consultation-header h2 { font-size: 1.8rem; }
  .calendar-wrapper { min-height: 450px; }
}

/* About Us Section */
/* Base Styles */
.about-section {
    background: var(--primary-color);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    gap: 3rem;
    align-items: center;
}

/* Ensure text comes before image on mobile */
.about-content {
    color: var(--text-color);
    width: 100%;
    text-align: center;
    order: 1; /* Text first */
}

.about-3d-container {
    perspective: 1000px;
    height: auto;
    position: relative;
    width: 100%;
    max-width: 300px;
    order: 2; /* Image second */
}

/* Section Title */
.about-content .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* About Text */
.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Values Grid */
.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 107, 0, 0.1);
}

.value-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* 3D Image Floating Container */
.floating-element {
    width: 100%;
    padding-top: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.element-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transform: translateZ(30px);
    filter: brightness(0.8) contrast(1.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.glow-effect {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 0, 0.3),
        rgba(255, 107, 0, 0.1),
        rgba(255, 107, 0, 0.3)
    );
    filter: blur(15px);
    border-radius: 40px;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    transform-style: preserve-3d;
}

.shape {
    position: absolute;
    background: rgba(255, 107, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 15px;
}

/* Individual Shape Sizes and Animations */
.shape-1 {
    width: 60px; height: 60px;
    top: -20px; right: -15px;
    transform: translateZ(70px) rotate(45deg);
    animation: floatShape1 5s ease-in-out infinite;
}

.shape-2 {
    width: 50px; height: 50px;
    bottom: -15px; left: -20px;
    transform: translateZ(60px) rotate(-30deg);
    animation: floatShape2 7s ease-in-out infinite;
}

.shape-3 {
    width: 40px; height: 40px;
    top: 50%; right: -25px;
    transform: translateZ(90px) rotate(60deg);
    animation: floatShape3 6s ease-in-out infinite;
}

.shape-4 {
    width: 30px; height: 30px;
    bottom: 30%; left: -15px;
    transform: translateZ(70px) rotate(-60deg);
    animation: floatShape4 8s ease-in-out infinite;
}

/* Hover Effects */
.element-content:hover .main-image {
    transform: translateZ(40px);
    filter: brightness(1) contrast(1.1);
}

.element-content:hover .glow-effect {
    filter: blur(20px);
    opacity: 0.9;
}

/* Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateX(10deg) rotateY(-10deg);
    }
    50% {
        transform: translateY(-15px) rotateX(-5deg) rotateY(5deg);
    }
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes floatShape1 {
    0%, 100% { transform: translateZ(100px) rotate(45deg) translateY(0); }
    50% { transform: translateZ(100px) rotate(60deg) translateY(-20px); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translateZ(80px) rotate(-30deg) translateX(0); }
    50% { transform: translateZ(80px) rotate(-45deg) translateX(20px); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translateZ(120px) rotate(60deg) scale(1); }
    50% { transform: translateZ(120px) rotate(75deg) scale(1.1); }
}

@keyframes floatShape4 {
    0%, 100% { transform: translateZ(90px) rotate(-60deg) translateY(0); }
    50% { transform: translateZ(90px) rotate(-75deg) translateY(-15px); }
}

/* Tablet view */
@media screen and (min-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-content {
        text-align: left;
    }

    .about-content .section-title {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .about-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .about-3d-container {
        max-width: 400px;
    }
}

/* Desktop view */
@media screen and (min-width: 992px) {
    .about-container {
        flex-direction: row;
        gap: 4rem;
    }

    .about-content {
        flex: 1;
        order: 1;
    }

    .about-3d-container {
        flex: 1;
        order: 2;
        max-width: none;
        height: 500px;
    }

    .main-image {
        transform: translateZ(50px);
    }
}

 /* FAQ Section Styles */
.faq-section {
    background: var(--primary-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.1);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.arrow-icon {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* large enough to show content */
}

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .answer-content {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1rem;
    }
} 

/* Contact Form Section */
.contact-section {
    padding: 100px 20px;
    background-color: #000000;
    perspective: 1000px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    position: relative;
    animation: formFloat 6s ease-in-out infinite;
}

@keyframes formFloat {
    0%, 100% {
        transform: translateZ(0) translateY(0);
    }
    50% {
        transform: translateZ(20px) translateY(-10px);
    }
}

.contact-form:hover {
    transform: translateZ(50px) rotateX(2deg) rotateY(2deg);
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.5),
        -20px -20px 60px rgba(255, 107, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.form-group:hover {
    transform: translateZ(20px);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 
        0 0 15px rgba(255, 107, 0, 0.2),
        0 5px 15px rgba(255, 107, 0, 0.1);
    transform: translateZ(30px);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateZ(1px);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ff8533, #ff9966);
    transform: translateZ(30px) translateY(-2px);
    box-shadow: 
        0 5px 15px rgba(255, 107, 0, 0.3),
        0 15px 30px rgba(255, 107, 0, 0.2);
}

.contact-form::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), transparent);
    border-radius: 20px;
    z-index: -1;
    transform: translateZ(-1px);
    filter: blur(5px);
}

/* Add glow effect on form interaction */
.contact-form:focus-within {
    box-shadow: 
        0 0 30px rgba(255, 107, 0, 0.1),
        0 0 60px rgba(255, 107, 0, 0.05),
        0 0 100px rgba(255, 107, 0, 0.025);
}

/* Mouse follow effect */
.contact-form.moving {
    transition: transform 0.1s ease;
}
/* Contact Info Section */
/* Contact Info Section */
.contactinfo-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    padding: 60px 0;
    margin-top: -1px;
    overflow: hidden;
}

.contactinfo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.contactinfo-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 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.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;
}

.contactinfo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contactinfo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.contactinfo-logo {
    margin-bottom: 30px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.contactinfo-logo img {
    max-width: 150px;
    height: auto;
}

.contactinfo-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.contactinfo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.contactinfo-item:nth-child(1) { animation-delay: 0.2s; }
.contactinfo-item:nth-child(2) { animation-delay: 0.4s; }
.contactinfo-item:nth-child(3) { animation-delay: 0.6s; }

.contactinfo-item:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

.contactinfo-item i {
    color: #ff6b00;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.contactinfo-item:hover i {
    transform: scale(1.2);
}

.contactinfo-item a,
.contactinfo-item p {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin: 0;
    transition: color 0.3s ease;
}

.contactinfo-item a:hover {
    color: #ff6b00;
}

/* Footer */
.footer {
    background: #111111;
    padding: 60px 0 20px;
    color: #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-info p {
    color: #999;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
}

.contact-details i {
    color: var(--accent-color);
    width: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-column h4 {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.link-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #999;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.newsletter-signup {
    text-align: right;
    margin-bottom: 10px;
}

.newsletter-signup h4 {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.newsletter-form input {
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    min-width: 250px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 8px 20px;
    background: var(--accent-color);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff7b1a;
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 14px;
    grid-column: 1 / -1;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-signup {
        text-align: center;
        margin-bottom: 10px;
    }

    .newsletter-form {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
 
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-form button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .link-column {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .footer-info {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
