/* Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #ff7b25;
    --accent-color: #ff914d;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --glass-bg: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

span {
    color: var(--secondary-color);
}

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

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
  
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    margin-left: 90%;
}

.hamburger .line {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease;
}

.ctas-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 123, 37, 0.3);
    animation: fadeIn 1.5s ease;
    border: none;
    cursor: pointer;
}

.ctas-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 123, 37, 0.4);
}

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

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.wheel {
    width: 5px;
    height: 8px;
    background-color: var(--text-color);
    border-radius: 50%;
    margin-top: 5px;
    animation: scroll 2s infinite;
}

.arrow {
    width: 15px;
    height: 15px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    margin: 10px auto 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 123, 37, 0.2);
    border-color: rgba(255, 123, 37, 0.3);
}

/* About Section */
.about {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(10, 10, 10, 0.9));
}

.section-title {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-content .glass-card {
    flex: 1;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
}

.stat-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 150px;
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(0, 0, 0, 0.9));
}

.services-carousel {
    position: relative;
    padding: 0 50px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 20px 0;
}

.carousel-slide {
    min-width: calc(33.333% - 20px);
    text-align: center;
    transition: all 0.3s ease;
}

.carousel-slide i {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.carousel-slide h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.carousel-slide p {
    color: var(--text-secondary);
    font-size: 16px;
}

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

.carousel-prev, .carousel-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(10, 10, 10, 0.9));
}

.contact-content {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.contact-form {
    flex: 1;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.info-item i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.info-item h3 {
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

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

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 80px 0 20px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    flex: 1 1 300px;
}

.footer-about h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

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

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

.footer-links, .footer-services {
    flex: 1 1 200px;
}

.footer-links h3, .footer-services h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul, .footer-services ul {
    list-style: none;
}

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

.footer-links a, .footer-services a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

/* Scroll Animation */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }
    
    .carousel-slide {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.5s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .carousel-slide {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
}

/* Ensure content sections appear above particles */
section:not(.hero) {
    position: relative;
    z-index: 10;
}

/* Adjust hero content positioning */
.hero-content {
    position: relative;
    z-index: 20;
}


/* Page-specific banners */
.about-banner, 
.services-banner, 
.contact-banner {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.about-banner h1, 
.services-banner h1, 
.contact-banner h1 {
    font-size: 72px;
    margin-bottom: 20px;
}

.about-banner p, 
.services-banner p, 
.contact-banner p {
    font-size: 24px;
    color: var(--text-secondary);
}

body {
    overflow-x: hidden;
}

section {
    overflow: visible;
}

/* Add to the top of your CSS */
:root {
    --primary-color: #000000;
    --secondary-color: #ff7b25;
    --accent-color: #ff914d;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --glass-bg: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Fix z-index issues */
section:not(.hero) {
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
}

/* Ensure content is visible */
body {
    overflow-x: hidden;
}

section {
    overflow: visible;
    padding: 100px 0;
}

/* Page banners */
.about-banner, 
.services-banner, 
.contact-banner {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.about-banner h1, 
.services-banner h1, 
.contact-banner h1 {
    font-size: 72px;
    margin-bottom: 20px;
}

.about-banner p, 
.services-banner p, 
.contact-banner p {
    font-size: 24px;
    color: var(--text-secondary);
}


/* Fix disappearing content */
body {
    overflow-x: hidden;
    min-height: 100vh;
}

section {
    position: relative;
    z-index: 10;
    opacity: 1 !important; /* Force sections to stay visible */
    transform: none !important; /* Override any transform hiding content */
    padding: 100px 0;
}

.hero {
    position: relative;
    z-index: 5;
}

/* Ensure particles don't cover content */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Disable initial hidden state */
.hidden {
    opacity: 1 !important;
    transform: translateY(0) !important;
}



/* Modern Select Dropdown Styles */
.select-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.custom-select {
    position: relative;
}

.styled-select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: var(--glass-shadow);
}

.styled-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 123, 37, 0.2);
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.styled-select:focus + .select-arrow {
    color: var(--secondary-color);
    transform: translateY(-50%) rotate(180deg);
}

/* Options styling */
.styled-select option {
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-color);
    padding: 10px;
}

/* Hover state for options */
.styled-select option:hover {
    background: var(--secondary-color);
    color: #000;
}

/* For Firefox */
@-moz-document url-prefix() {
    .styled-select {
        padding-right: 30px; /* Make room for arrow */
    }
}






/* Modern FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0a0a0a, #000000);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 123, 37, 0.3);
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    position: relative;
}

.faq-icon {
    margin-right: 16px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 24px;
    height: 24px;
}

.faq-question {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
    color: #fff;
}

.faq-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    margin-left: 16px;
}

.faq-toggle span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    left: 0;
}

.faq-toggle .plus {
    top: 50%;
    transform: translateY(-50%);
}

.faq-toggle .minus {
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    padding-bottom: 24px;
}

/* Active State */
.faq-card.active {
    background: rgba(30, 30, 30, 0.8);
}

.faq-card.active .faq-toggle .minus {
    transform: translateY(-50%) rotate(0deg);
}

.faq-card.active .faq-answer {
    max-height: 500px;
    padding-top: 0;
}

.faq-card.active .faq-icon .horizontal {
    opacity: 0;
}

/* Animation for icon */
.faq-icon path {
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header {
        padding: 18px;
    }
    
    .faq-question {
        font-size: 16px;
    }
}


/* Professional Contact Banner with Balanced Typography */
.contact-banner {
  padding: 3rem 1rem;
  background: #0000;
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: 
    linear-gradient(135deg, rgba(15,15,15,1) 0%, rgba(25,25,25,1) 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-pretitle {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: inline-block;
}

.contact-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-title span {
  color: var(--secondary-color);
  position: relative;
}

.contact-title span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,123,37,0.3);
}

.contact-divider {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.divider-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
  position: relative;
}

.divider-dot::before,
.divider-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.divider-dot::before {
  right: 100%;
  margin-right: 15px;
}

.divider-dot::after {
  left: 100%;
  margin-left: 15px;
}

.contact-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-banner {
    padding: 3rem 1rem;
  }
  
  .contact-title {
    font-size: 30px;
  }
  
  .contact-pretitle {
    font-size: 30rem;
  }
  
  .divider-dot::before,
  .divider-dot::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.5rem;
  }
  
  .contact-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  .divider-dot::before,
  .divider-dot::after {
    width: 30px;
  }
}


/* Modern About Hero Section */
.about-hero {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,123,37,0.03) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255,123,37,0.03) 0%, transparent 30%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-badge::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
  opacity: 0.5;
}

.about-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1.5rem;
}

.about-title span {
  color: var(--secondary-color);
  position: relative;
}

.title-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.underline-bar {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.underline-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
  margin: 0 15px;
}

.about-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 1rem;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .title-underline {
    margin: 1.25rem 0;
  }
  
  .underline-bar {
    width: 30px;
  }
  
  .underline-dot {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.6rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .section-badge {
    font-size: 0.75rem;
  }
}


/* Modern Services Hero Section */
.services-hero {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, 
      rgba(255,123,37,0.05) 0%, 
      rgba(255,123,37,0) 50%,
      rgba(255,123,37,0.05) 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,123,37,0.3);
  border-radius: 50px;
  background: rgba(255,123,37,0.1);
}

.services-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
}

.services-title span {
  color: var(--secondary-color);
  position: relative;
}

.services-title span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  opacity: 0.3;
}

.services-divider {
  margin: 1.75rem 0;
  color: var(--secondary-color);
}

.services-divider svg {
  width: 24px;
  height: 24px;
}

.services-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .services-hero {
    padding: 4rem 1rem;
  }
  
  .services-title {
    font-size: 1.9rem;
  }
  
  .section-tag {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .services-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 1.7rem;
  }
  
  .services-description {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
  
  .services-divider {
    margin: 1.5rem 0;
  }
}


/* Base Styles */
.services-carousel {
  padding: 3rem 1rem;
  background: #0a0a0a;
  overflow: hidden;
}

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

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0.5rem;
}

.section-header h2 span {
  color: #ff7b25;
}

.section-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  margin: 2rem auto;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1.5rem;
  padding: 1rem 0;
}

/* Service Cards */
.service-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 2rem;
  color: #ff7b25;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  text-align: center;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.6rem;
}

.service-features i {
  color: #ff7b25;
  margin-right: 0.6rem;
  font-size: 0.8rem;
}

.cta-button {
  display: block;
  padding: 0.8rem;
  background: rgba(255,123,37,0.1);
  color: #ff7b25;
  border: 1px solid #ff7b25;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.cta-button:hover {
  background: rgba(255,123,37,0.2);
  box-shadow: 0 0 10px rgba(255,123,37,0.3);
}

/* Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  background: #ff7b25;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.carousel-nav i {
  font-size: 1rem;
}

/* Dots Navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

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

.carousel-dots .dot.active {
  background: #ff7b25;
  transform: scale(1.2);
}

/* Tablet Styles */
@media (min-width: 768px) {
  .service-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
  
  .carousel-nav {
    width: 50px;
    height: 50px;
  }
  
  .carousel-nav i {
    font-size: 1.2rem;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .service-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .service-card {
    flex: 0 0 calc(25% - 1.125rem);
  }
}









/* Testimonial Section */
.testimonial-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 50%, transparent 100%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}




/* Testimonial Track */
.testimonial-track-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 40px;
    width: 400px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 123, 37, 0.2);
    border-color: rgba(255, 123, 37, 0.3);
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 140, 0, 0.3);
    margin-bottom: -30px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
}

.client-info {
    border-left: 2px solid var(--secondary-color);
    padding-left: 20px;
}

.client-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.client-role {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Pause on hover */
.testimonial-track-container:hover .testimonial-track {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card {
        width: 350px;
        padding: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 80px 20px;
    }
    
    .testimonial-card {
        width: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 280px;
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 4rem;
        margin-bottom: -20px;
    }
}







/* client logos */


/* Client Section */


.client-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.client-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.client-track-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.client-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollReverse 40s linear infinite;
    will-change: transform;
}

@keyframes scrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.client-logo {
    width: 180px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    opacity: 0.8;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.client-logo:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.client-track-container:hover .client-track {
    animation-play-state: paused;
}

@media (max-width: 1024px) {
    .client-logo { width: 160px; height: 70px; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .client-section { padding: 60px 20px; }
    .client-logo { width: 140px; height: 60px; }
    .client-track { gap: 40px; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .client-logo { width: 120px; height: 50px; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 1rem; }
    .client-track { gap: 30px; }
}