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

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    font-size: 17px;
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
} 

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 40px 8%;
    height: 125px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(20, 20, 20, 0.85) 100%);
    backdrop-filter: blur(35px);
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, transparent 0%, rgba(200, 154, 45, 0.3) 20%, #C89A2D 50%, rgba(200, 154, 45, 0.3) 80%, transparent 100%) 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 8px 30px rgba(200, 154, 45, 0.15);
}

nav.scrolled {
    padding: 35px 8%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(15, 15, 15, 0.95) 100%);
    height: 120px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 5px 25px rgba(200, 154, 45, 0.2);
}

.logo img {
    height: 110px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.2) brightness(1.1) saturate(1.1);
}

nav.scrolled .logo img {
    height: 85px;
    width: auto;
}

/* Navigation Links */
.nav-links {
    display: none;
    list-style: none;
    position: fixed;
    top: 125px;
    right: 0;
    width: 450px;
    height:  calc(100vh - 125px);
    background: linear-gradient(135deg, rgba(0,0,0,0.98) 0%, rgba(5,5,5,0.96) 25%, rgba(10,10,10,0.95) 50%, rgba(15,15,15,0.94) 75%, rgba(20,20,20,0.92) 100%);
    backdrop-filter: blur(30px) saturate(1.5);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    z-index: 999;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    opacity: 0;
    overflow: hidden;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5), inset 0 0 100px rgba(200, 154, 45, 0.1);
}

.nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, lch(66.2% 60.28 83.37 / 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.nav-links::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(200, 154, 45, 0.05), transparent, rgba(255, 215, 0, 0.03), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-links.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 1px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 40px;
    font-family: 'Space Grotesk', sans-serif;
    transform: translateX(100px) rotateY(45deg);
    opacity: 0;
    position: relative;
    z-index: 10;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    overflow: hidden;
    width: 300px;
    text-align: center;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 154, 45, 0.2), transparent);
    transition: left 0.8s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #C89A2D, #FFD700, #C89A2D);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links.active a {
    transform: translateX(0) rotateY(0deg);
    opacity: 1;
}

.nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
.nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
.nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
.nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
.nav-links.active a:nth-child(5) { transition-delay: 0.5s; }

.nav-links a:hover {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(200, 154, 45, 0.4);
    transform: translateY(-10px) scale(1.05);
    background: rgba(200, 154, 45, 0.1);
    border-color: rgba(200, 154, 45, 0.3);
    box-shadow: 0 20px 40px rgba(200, 154, 45, 0.2), inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.nav-links a:hover::before {
    left: 100%;
}

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

.nav-links a.active {
    color: #C89A2D;
    background: rgba(200, 154, 45, 0.15);
    border-color: rgba(200, 154, 45, 0.4);
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(200, 154, 45, 0.3), inset 0 0 15px rgba(255, 215, 0, 0.1);
}

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

/* SVG Menu Button Styles */
.menu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(200, 154, 45, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: 110px;
    height: 110px;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.6s ease;
}

.menu:hover {
    background: linear-gradient(135deg, rgba(200, 154, 45, 0.2) 0%, rgba(255, 215, 0, 0.15) 100%);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(200, 154, 45, 0.4);
}

.menu:hover::before {
    left: 100%;
}

.menu svg {
    width: 100%;
    height: 100%;
}

.line {
    fill: none;
    stroke: #C89A2D;
    stroke-width: 9;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(200, 154, 45, 0.5)) drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 9;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 9;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 9;
}

.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 9;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 9;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 9;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 5%;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 12vw, 6rem);
    background: linear-gradient(45deg, #C89A2D 0%, #FFD700 25%, #FFF 50%, #FFD700 75%, #C89A2D 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
    text-shadow: none;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s, glitter 3s ease-in-out infinite;
    line-height: 1.1;
    position: relative;
}

@keyframes glitter {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 0% 0%; }
}

.hero-content p {
    font-size: 1.3rem;
    margin-top: 40px;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    margin-top: 60px;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.9s;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
}

.cta-button-inner {
    position: relative;
    padding: 22px 55px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-radius: 60px;
    background-clip: padding-box;
    overflow: hidden;
    transition: all 0.5s ease;
}

.cta-button-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(45deg, #C89A2D 0%, #FFD700 25%, #FFF 50%, #FFD700 75%, #C89A2D 100%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlitter 3s linear infinite;
}

.cta-button-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-button-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #C89A2D 0%, #FFD700 25%, #FFF 50%, #FFD700 75%, #C89A2D 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlitter 2.5s ease-in-out infinite;
}

@keyframes borderGlitter {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 0% 0%; }
}

@keyframes textGlitter {
    0%, 100% { background-position: 0% 50%; }
    33% { background-position: 100% 50%; }
    66% { background-position: 50% 100%; }
}

.cta-button:hover {
    transform: translateY(-10px) scale(1.08);
}

.cta-button:hover .cta-button-inner {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(200, 154, 45, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
}

.cta-button:hover .cta-button-inner::before {
    animation-duration: 1.5s;
}

.cta-button:hover .cta-button-inner::after {
    width: 100%;
    height: 100%;
}

.cta-button:hover .cta-button-text {
    animation-duration: 1.2s;
}

/* Stats Counter */
.stats-section {
    padding: 80px 5%;
    background: rgba(0,0,0,0.7);
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.stat-item {
    flex: 1 1 250px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C89A2D, #FFD700);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(200, 154, 45, 0.2);
}

.stat-item.animated {
    transform: translateY(0);
    opacity: 1;
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #C89A2D 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Space Grotesk', sans-serif;
}

/* Client Logo Carousel */
.clients-section {
    padding: 60px 5%;
    background: rgba(0,0,0,0.8);
    overflow: hidden;
}

.clients-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #C89A2D 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    font-weight: 700;
}

.clients-carousel {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 5)); }
}

.client-logo {
    width: 180px;
    height: 120px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%) brightness(2);
    transition: filter 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1);
}

/* Content Section */
.content-section {
    padding: 100px 5%;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #111;
}

/* Service Image Styles */
.service-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 25px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
  transform: scale(1.1) rotate(2deg);
}

.service-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(200, 154, 45, 0.1), rgba(0,0,0,0.5));
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-image-container::after {
  opacity: 0.3;
}

/* Adjust service card padding */
.service-card {
  padding: 30px;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.3;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    background: linear-gradient(135deg, #C89A2D 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #C89A2D;
}

.section-text {
    font-size: 1.2rem;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 900px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(60px);
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.service-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(200, 154, 45, 0.2);
    background: rgba(200, 154, 45, 0.1);
    border-color: rgba(200, 154, 45, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C89A2D, #FFD700, #C89A2D);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #C89A2D 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
}

/* Project Gallery */
.project-gallery {
    margin-top: 80px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 250px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.gallery-item.animated {
    transform: translateY(0);
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transition: bottom 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-category {
    color: #C89A2D;
    font-size: 0.9rem;
}

/* Additional modern enhancements */
.service-card {
  will-change: transform;
}

.service-card:hover .service-title {
  color: #C89A2D;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
  animation: pulse 1s ease-in-out;
}

/* Smooth transitions for all interactive elements */
* {
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

/* Enhanced focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #C89A2D;
  outline-offset: 2px;
}

/* Locations section */
.locations-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.location-card {
    flex: 1 1 300px;
    background: rgba(0,0,0,0.7);
    padding: 30px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.location-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.location-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image {
    transform: scale(1.1);
}

.location-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #C89A2D;
}

/* Map Styles */
#map {
    height: 400px;
    width: 100%;
    margin-top: 50px;
    border-radius: 5px;
    z-index: 1;
    border: 1px solid rgba(200, 154, 45, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

#map.animated {
    transform: translateY(0);
    opacity: 1;
}

/* About Us section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.about-image.animated {
    transform: translateX(0);
    opacity: 1;
}

.about-text {
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.about-text.animated {
    transform: translateX(0);
    opacity: 1;
}

/* CEO Message section */
.ceo-message {
    background: rgba(0,0,0,0.7);
    padding: 60px;
    border-left: 5px solid #C89A2D;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.ceo-message.animated {
    transform: translateY(0);
    opacity: 1;
}

.ceo-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-top: 30px;
    color: #C89A2D;
}

.ceo-image {
    position: absolute;
    right: 120px;
    bottom: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #C89A2D;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ceo-title {
  font-weight: 600;
  font-size: 1rem;
  color: #555;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Testimonial Carousel */
.testimonials {
    margin-top: 80px;
}

.testimonial-slide {
    padding: 40px;
    background: rgba(0,0,0,0.7);
    border-radius: 5px;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.testimonial-slide.animated {
    transform: translateY(0);
    opacity: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
}

/* Pen sketched line effect */
.sketch-line {
    position: relative;
    display: inline-block;
}

.sketch-line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><path d="M0,5 Q25,2 50,5 T100,5" stroke="%23C89A2D" stroke-width="2" fill="none" stroke-linecap="round"/></svg>') repeat-x;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: drawLine 1.5s ease-out forwards;
}

@keyframes drawLine {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Client header bottom line */
.client-header {
    position: relative;
    padding-bottom: 30px;
}

.client-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 8"><path d="M2,4 Q50,1 100,4 T198,4" stroke="%23C89A2D" stroke-width="2.5" fill="none" stroke-linecap="round" opacity="0.8"/><path d="M1,5 Q48,2 99,5 T199,5" stroke="%23FFD700" stroke-width="1.5" fill="none" stroke-linecap" round" opacity="0.6"/></svg>') repeat-x;
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-header.visible::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: #C89A2D;
    opacity: 0.5;
}

.testimonial-author {
    font-weight: 700;
    color: #C89A2D;
}

.testimonial-company {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Us section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: #C89A2D;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #C89A2D;
    background: rgba(200, 154, 45, 0.1);
    box-shadow: 0 0 20px rgba(200, 154, 45, 0.2);
    transform: translateY(-2px);
}

.contact-form button {
    background: linear-gradient(135deg, #C89A2D 0%, #FFD700 100%);
    color: #000;
    border: none;
    padding: 20px 40px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(200, 154, 45, 0.4);
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.contact-form button:hover::before {
    left: 100%;
}

/* Social Icons Styles */
.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icon:hover img {
    filter: grayscale(0%) brightness(1) drop-shadow(0 0 5px rgba(200, 154, 45, 0.5));
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Smooth scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Parallax elements */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Enhanced Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C89A2D 0%, #FFD700 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(200, 154, 45, 0.3);
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(200, 154, 45, 0.4);
    animation: pulse 2s infinite;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(200, 154, 45, 0.3);
    border-top: 3px solid #C89A2D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Round Image Styles */
.round-image {
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.round-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(200, 154, 45, 0.3);
}

/* Round container approach */
.round-container {
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
}

.round-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav {
        padding: 25px 4%;
        height: 100px;
    }

    nav.scrolled {
        padding: 20px 4%;
        height: 80px;
    }

    .logo img {
        height: 80px;
    }

    nav.scrolled .logo img {
        height: 60px;
    }

    .menu {
        width: 70px;
        height: 70px;
        padding: 8px;
    }

    .nav-links {
        width: 350px;
        top: 110px;
        height: calc(100vh - 110px);
    }

    .nav-links a {
        font-size: 1.6rem;
        padding: 18px 30px;
        width: 250px;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .ceo-image {
        position: static;
        margin-top: 30px;
    }

    .ceo-message {
        padding: 30px;
    }

    .clients-track {
        gap: 20px;
    }

    .client-logo {
        width: 140px;
        height: 90px;
    }
}

.ceo-message {
  padding-bottom: 100px;
  position: relative;
}

@media (max-width: 480px) {
    nav {
        padding: 20px 4%;
        height: 80px;
    }

    nav.scrolled {
        padding: 15px 4%;
        height: 70px;
    }

    .logo img {
        height: 60px;
    }

    nav.scrolled .logo img {
        height: 45px;
    }

    .menu {
        width: 60px;
        height: 60px;
        padding: 6px;
    }

    .line {
        stroke-width: 7;
    }

    .line1, .line2, .line3 {
        stroke-width: 7;
    }

    .opened .line1, .opened .line2, .opened .line3 {
        stroke-width: 7;
    }

    .nav-links {
        width: 230px;
        gap: 30px;
        top: 80px;
        height: calc(100vh - 80px);
    }

    .nav-links a {
        font-size: 1rem;
        padding: 15px 20px;
        width: 200px;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-item {
        flex: 1 1 auto;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .section-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .client-logo {
        width: 110px;
        height: 70px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }
}