* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --secondary-orange: #F7931E;
    --deep-orange: #E55722;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #E55722 100%);
    --gradient-secondary: linear-gradient(135deg, #FFA726 0%, #FF7043 100%);
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --shadow-light: 0 5px 15px rgba(255, 107, 53, 0.3);
    --shadow-heavy: 0 10px 30px rgba(255, 107, 53, 0.4);
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 90px;
    width: auto;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 90px
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease 0.2s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease 0.4s both;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: slideInLeft 1s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease 1s both;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .hero{
        margin-top: 75px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* About Us Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    animation: fadeInLeft 1s ease;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-orange);
    border-radius: 20px;
    z-index: 1;
}

.about-content {
    animation: fadeInRight 1s ease;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-orange);
    border-radius: 25px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 0.7rem;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Fade in Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tablet Responsive */
@media screen and (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .image-decoration {
        top: -10px;
        left: -10px;
        border-width: 2px;
    }
}

@media screen and (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-container {
        padding: 0 1rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Member Card */
.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.team-member:last-child {
    margin-bottom: 0;
}

/* Left Layout */
.team-member-left .member-content {
    order: 1;
}

.team-member-left .member-image {
    order: 2;
}

/* Right Layout */
.team-member-right .member-image {
    order: 1;
}

.team-member-right .member-content {
    order: 2;
}

/* Member Image */
.member-image {
    position: relative;
    animation: fadeIn 1s ease;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.team-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 5px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
}

.team-member:hover .team-img {
    transform: scale(1.05);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Floating Social Icons */
.floating-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: floatIcons 3s ease-in-out infinite;
}

.floating-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Position floating icons around the circle */
.team-member-left .floating-icon:nth-child(1) {
    top: 15%;
    right: -5%;
    animation-delay: 0s;
}

.team-member-left .floating-icon:nth-child(2) {
    top: 5%;
    right: 30%;
    animation-delay: 0.5s;
}

.team-member-left .floating-icon:nth-child(3) {
    bottom: 20%;
    right: -8%;
    animation-delay: 1s;
}

.team-member-left .floating-icon:nth-child(4) {
    bottom: 5%;
    left: 15%;
    animation-delay: 1.5s;
}

.team-member-right .floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.team-member-right .floating-icon:nth-child(2) {
    top: 20%;
    left: -5%;
    animation-delay: 0.7s;
}

.team-member-right .floating-icon:nth-child(3) {
    bottom: 15%;
    left: -8%;
    animation-delay: 1.4s;
}

/* Member Content */
.member-content {
    animation: fadeIn 1s ease;
}

.member-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.member-bio {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Float Animation */
@keyframes floatIcons {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive */
@media screen and (max-width: 968px) {
    .team-member {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 80px;
    }
    
    .team-member-left .member-content,
    .team-member-left .member-image,
    .team-member-right .member-image,
    .team-member-right .member-content {
        order: initial;
    }
    
    .member-image {
        order: 1 !important;
    }
    
    .member-content {
        order: 2 !important;
        text-align: center;
    }
    
    .member-social {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-container {
        padding: 0 1.5rem;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .team-member {
        gap: 2rem;
        margin-bottom: 60px;
    }
    
    .member-name {
        font-size: 2rem;
    }
    
    .member-bio {
        font-size: 0.95rem;
    }
    
    .image-wrapper {
        max-width: 350px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .team-section {
        padding: 50px 0;
    }
    
    .team-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .member-name {
        font-size: 1.6rem;
    }
    
    .image-wrapper {
        max-width: 280px;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    /* Adjust floating icon positions for mobile */
    .team-member-left .floating-icon:nth-child(1),
    .team-member-right .floating-icon:nth-child(1) {
        top: 10%;
        right: 5%;
        left: auto;
    }
    
    .team-member-left .floating-icon:nth-child(2),
    .team-member-right .floating-icon:nth-child(2) {
        top: 5%;
        left: 5%;
        right: auto;
    }
    
    .team-member-left .floating-icon:nth-child(3),
    .team-member-right .floating-icon:nth-child(3) {
        bottom: 10%;
        right: 5%;
        left: auto;
    }
    
    .team-member-left .floating-icon:nth-child(4) {
        bottom: 5%;
        left: 5%;
        right: auto;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-left {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.quote-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    max-width: 400px;
}

.testimonials-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Content Layout */
.testimonials-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Info Section */
.testimonials-info {
    position: sticky;
    top: 120px;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.rating-display {
    margin-bottom: 2rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.3rem;
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.visit-link:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* Slider Section */
.testimonials-slider {
    position: relative;
}

.slider-wrapper {
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.stars-rating {
    display: flex;
    gap: 0.3rem;
    color: var(--primary-orange);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.reviewer-role {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gradient-primary);
    width: 40px;
    border-radius: 10px;
}

.dot:hover {
    background: rgba(255, 107, 53, 0.5);
}

/* Tablet Responsive */
@media screen and (max-width: 968px) {
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-info {
        position: static;
        text-align: center;
    }
    
    .rating-display {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 1.5rem;
    }
    
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .header-left {
        flex-direction: column;
        text-align: center;
        width: 100%;
        align-items: center;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
        max-width: 100%;
    }
    
    .quote-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonials-nav {
        align-self: center;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-height: 350px;
    }
    
    .slider-wrapper {
        min-height: 450px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Contact Details */
.contact-details-wrapper {
    padding: 2rem 0;
}

.details-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.details-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.1rem;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.info-text {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Social Media */
.social-media {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Tablet Responsive */
@media screen and (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-main-title {
        font-size: 2.2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        padding: 0 1.5rem;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-main-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-title,
    .details-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-main-title {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

/* Footer Section Styles */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 80px 0 60px;
}

.footer-column {
    animation: fadeInUp 0.8s ease;
}

/* Brand Column */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Footer Titles */
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

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

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Contact Info */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Newsletter Section */
.footer-newsletter {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.newsletter-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.brand-name {
    color: var(--primary-orange);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

.separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Tablet Responsive */
@media screen and (max-width: 968px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 60px 0 50px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        justify-content: center;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 50px 0 40px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
    
    .footer-newsletter {
        padding: 2rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .newsletter-title {
        font-size: 1.2rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .copyright,
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}


p{
    text-align: justify;
}

/* Full-screen Poster Section */
.poster-section {
    width: 100%;
    min-height: 100vh;              /* full viewport height */
    padding: 90px 16px 40px;        /* top padding to clear navbar (adjust if needed) */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;               /* or any background color you like */
}

.poster-wrapper {
    max-width: 900px;               /* limit width on big screens */
    width: 100%;
    display: flex;
    justify-content: center;
}

.poster-image {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 140px); /* keep full poster visible */
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

/* Optional: tweak for very small devices */
@media (max-width: 600px) {
    .poster-section {
        padding: 80px 12px 32px;
    }

    .poster-image {
        border-radius: 4px;
    }
}
