:root {
    --white: #fff;
    --dark-purple: #4a1a6a;
    --light-pink: #ff6b9d;
    --orange: #e67e22;
    --dark-orange: #d35400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: transparent;
    box-shadow: none;
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header:not(.scrolled) .nav-links a {
    color: var(--white);
}

header:not(.scrolled) .menu-toggle {
    color: var(--white);
}

header:not(.scrolled) .language-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

header:not(.scrolled) .language-btn:hover,
header:not(.scrolled) .language-btn.active {
    background: #f6cc00;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 40px;
    margin: 0 auto;
}

.nav-links a {
    color: #353535;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #f6cc00;;
}

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

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
}

.language-btn {
    background: #f6cc00;
    border: none;
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.language-btn:hover,
.language-btn.active {
    background: #353535;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #353535;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
}

.hero-text {
    max-width: 600px;
}

.small-text {
    font-size: 1rem;
    color: #f6cc00;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #f6cc00;
    color: var(--white);
}

.btn-primary:hover {
    background-color: #353535;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Mobile Menu Styles */
.nav-links.active {
    left: 0;
}

body.no-scroll {
    overflow: hidden;
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
        justify-content: flex-start;
    }
    
    .logo {
        margin-right: auto;
    }
    
    .language-switcher {
        margin-right: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #353535;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: all 0.5s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        z-index: 1000;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-text {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 1.125rem;
        padding: 10px 20px;
        color: var(--white);
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
}


/* Stats Overlap Section */
.stats-overlap {
    position: relative;
    margin-top: -100px;
    z-index: 10;
    padding: 0 10%;
}

.stats-container {
    background: rgba(255, 255, 255, 0);
    border-radius: 10px;
    padding: 60px;
}

.stats-content {
    display: flex;
    gap: 30px;
}

.stats-text-box {
    flex: 1;
    background: #f6cc00;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 300px;
}

.stats-text .subtitle {
    color: #353535;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.stats-text h2 {
    font-size: 2.5rem;
    color: #353535;
    margin-bottom: 20px;
    line-height: 1.2;
}

.stats-text .description {
    color: #353535;
    margin-bottom: 30px;
    line-height: 1.6;
}

.stats-boxes {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: center;
}

.stat-box {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #d4d4d4;
}

.stat-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.stat-box .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f6cc00;
    margin-bottom: 10px;
}

.stat-box .label {
    color: #353535;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stats-container {
        padding: 40px;
    }
    
    .stats-content {
        flex-direction: column;
    }
    
    .stats-text-box {
        padding: 30px;
    }
    
    .stats-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-overlap {
        padding: 0 5%;
        margin-top: -50px;
    }
    
    .stats-text-box {
        padding: 25px;
    }
    
    .stats-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-overlap {
        margin-top: -30px;
    }
    
    .stats-boxes {
        grid-template-columns: 1fr;
    }
    
    .stats-text h2 {
        font-size: 1.75rem;
    }
    
    .stat-box .number {
        font-size: 2rem;
    }
}



/* Image-Based Services Section */
.image-services-section {
    padding: 100px 0;
    background: #f9fafc;
    position: relative;
    overflow: hidden;
  }
  
  .image-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #ffffff, rgba(249, 250, 252, 0.01));
    z-index: 1;
  }
  
  /* Section Header */
  .services-section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .title-wrapper {
    position: relative;
  }
  
  .section-title {
    color: #353535;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
  }
  
  .title-decoration {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #f6cc00;
    border-radius: 2px;
  }
  
  .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b00;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
  }
  
  .view-all-link:hover {
    color: #e05d00;
    gap: 12px;
  }
  
  .view-all-link svg {
    transition: transform 0.3s ease;
  }
  
  .view-all-link:hover svg {
    transform: translateX(4px);
  }
  
  /* Services Grid with Images */
  .services-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
  }
  
  .service-image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    background: #fff;
  }
  
  .service-image-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }
  
  .service-image-container {
    height: 240px;
    overflow: hidden;
    position: relative;
  }
  
  .service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
  
  .service-image-card:hover .service-image-container img {
    transform: scale(1.1) !important;
  }
  
  .service-image-card:hover .service-overlay {
    opacity: 0.8 !important;
  }
  
  .service-content {
    padding: 25px;
    position: relative;
  }
  
  .service-icon {
    position: absolute;
    top: -24px;
    right: 25px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #ff6b00;
  }
  
  .service-content h3 {
    color: #353535;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-right: 40px;
  }
  
  .service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
  }
  
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff6b00;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .service-link:hover {
    color: #e05d00;
    gap: 10px;
  }
  
  .service-link svg {
    transition: transform 0.3s ease;
  }
  
  .service-link:hover svg {
    transform: translateX(4px) !important;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .services-image-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .image-services-section {
      padding: 70px 0;
    }
    
    .section-header-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .services-image-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .service-image-container {
      height: 200px;
    }
  }
  
  @media (max-width: 480px) {
    .section-title {
      font-size: 1.75rem;
    }
    
    .service-content {
      padding: 20px;
    }
    
    .service-content h3 {
      font-size: 1.3rem;
    }
  }


.armenian-regions-section {
  padding: 80px 0;
  background: #f9f9f9;
  font-family: 'Arial', sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #353535;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #353535;
  font-style: italic;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.region-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
   border: 1px solid #e5e5e5;
}

.region-card:hover {
  transform: translateY(-10px) !important;
}

.region-card h3 {
  font-size: 20px;
  color: #353535;
  margin: 0 0 10px 0;
}

.region-card p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.tagline {
  text-align: center;
  padding: 25px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  max-width: 800px;
  margin: 0 auto;
}

.tagline p {
  font-size: 18px;
  line-height: 1.6;
  color: #353535;
  font-style: italic;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  
  .regions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .regions-grid {
    grid-template-columns: 1fr;
  }
  
  .tagline p {
    font-size: 16px;
  }
}

 .team-section {
  padding: 80px 0;
  background: #f9f9f9;
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  display: block;
  color: #f6cc00;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #353535;
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px) !important;
}

.team-initial {
  width: 80px;
  height: 80px;
  background: #f6cc00;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.team-name {
  font-size: 20px;
  color: #353535;
  margin: 0 0 5px;
}

.team-position {
  color: #666;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 26px;
  }
}


 /* Horizontal Works Section Styles */
.horizontal-works-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #353535;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .section-description {
    font-size: 1.1rem;
    color: #353535;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .works-horizontal-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .works-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
  }
  
  .works-horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .works-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #f6cc00;
    border-radius: 10px;
  }
  
  .project-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px) !important;
  }
  
  .project-image {
    height: 220px;
    overflow: hidden;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .project-image img:hover {
    transform: scale(1.05) !important;
  }
  
  .project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .project-title {
    font-size: 1.4rem;
    color: #353535;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .meta-item {
    display: flex;
    gap: 5px;
  }
  
  .meta-label {
    font-weight: 600;
    color: #353535;
  }
  
  .meta-value {
    color: #353535;
  }
  
  .project-steps {
    margin-top: auto;
  }
  
  .project-steps h4 {
    font-size: 1.1rem;
    color: #353535;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .steps-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
  }
  
  .steps-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #353535;
    line-height: 1.5;
  }
  
  .steps-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f6cc00;
    font-weight: bold;
  }
  
  .scroll-indicator {
    text-align: center;
    color: #353535;
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
  }
  
  /* Language Selector */
  .language-selector {
    text-align: center;
    margin: 40px 0;
  }
  
  .lang-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .lang-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .project-card {
      flex: 0 0 320px;
    }
    
    .project-image {
      height: 200px;
    }
      .works-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #f6cc00;
    border-radius: 10px;
  }
  }
  
  @media (max-width: 480px) {
    .section-title {
      font-size: 1.8rem;
    }
    
    .section-description {
      font-size: 1rem;
    }
    
    .project-card {
      flex: 0 0 280px;
    }
    
    .project-title {
      font-size: 1.3rem;
    }
      .works-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #f6cc00;
    border-radius: 10px;
  }
  }


  /* Certifications Section Styles */
.certifications-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #353535;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .section-description {
    font-size: 1.1rem;
    color: #353535;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .certification-item {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
  }
  
  .certification-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
  }
  
  .certification-item:hover {
    transform: translateY(-5px) !important;
  }
  
  .certification-item:hover .certification-image {
    transform: scale(1.02) !important;
  }
  
  /* Lightbox Styles */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
  }
  
  .lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    max-width: 80%;
  }
  
  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .close-btn:hover {
    color: #f6cc00;
  }
  
  /* Language Selector */
  .language-selector {
    text-align: center;
    margin: 40px 0;
  }
  
  .lang-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .lang-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .certifications-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .certifications-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .section-title {
      font-size: 1.8rem;
    }
    
    .section-description {
      font-size: 1rem;
    }
    
    .lightbox-caption {
      font-size: 1rem;
    }
  }


  /* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #353535;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .contact-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .contact-card:hover {
    transform: translateY(-5px) !important;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    background: #ffffbf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #f6cc00;
  }
  
  .contact-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-type {
    font-size: 1.3rem;
    color: #353535;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-info a, .contact-info p {
    color: #666;
    transition: color 0.3s;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    color: #353535;
  }
  
  /* Language Selector */
  .language-selector {
    text-align: center;
    margin: 40px 0;
  }
  
  .lang-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .lang-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .contact-card {
      padding: 25px;
    }
  }


  /* Footer Styles */
.site-footer {
    background-color: #353535;
    color: #fff;
    padding: 60px 0 20px;
    font-size: 1rem;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #f6cc00;
  }
  
  .footer-about {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: #f6cc00;
    transform: translateY(-3px) !important;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: #f6cc00;
    transform: translateX(5px);
  }
  
  .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #bbb;
  }
  
  .contact-info a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-info a:hover {
    color: #f6cc00;
  }
  
  .contact-info svg {
    flex-shrink: 0;
    color: #f6cc00;
  }
  
  .newsletter-desc {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .newsletter-form {
    display: flex;
    gap: 10px;
  }
  
  .newsletter-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  
  .newsletter-form input::placeholder {
    color: #ddd;
  }
  
  .newsletter-form button {
    background: #f6cc00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background: #353535;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .copyright {
    color: #bbb;
    margin: 10px 0;
  }
  
  .footer-links-bottom {
    display: flex;
    gap: 20px;
  }
  
  .footer-links-bottom a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links-bottom a:hover {
    color: #f6cc00;
  }
  
  /* Language Selector */
  .language-selector {
    text-align: center;
    margin: 20px 0;
  }
  
  .lang-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .lang-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
  }

  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #f6cc00;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: #353535;
    transform: translateY(-3px) !important;
  }
  
  .back-to-top svg {
    width: 24px;
    height: 24px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .back-to-top {
      width: 45px;
      height: 45px;
      bottom: 20px;
      right: 20px;
    }
  }

  .our-partners {
    padding: 50px 0;
    text-align: center;
    background: #f9f9f9;
  }
  
  .our-partners h2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  
  .partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .partner-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .partner-logos img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .partner-logos img:hover {
    filter: grayscale(0%) !important;
  }


  /* Animation Classes */
[data-animate] {
  opacity: 0;
  transition: all 0.6s ease-out;
}

[data-animate].animate {
  opacity: 1;
}

/* Fade Up */
[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-up"].animate {
  transform: translateY(0);
}

/* Fade Down */
[data-animate="fade-down"] {
  transform: translateY(-30px);
}

[data-animate="fade-down"].animate {
  transform: translateY(0);
}

/* Fade Left */
[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-left"].animate {
  transform: translateX(0);
}

/* Fade Right */
[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-right"].animate {
  transform: translateX(0);
}

/* Scale Up */
[data-animate="scale-up"] {
  transform: scale(0.8);
}

[data-animate="scale-up"].animate {
  transform: scale(1);
}

/* Rotate */
[data-animate="rotate"] {
  transform: rotate(10deg);
}

[data-animate="rotate"].animate {
  transform: rotate(0deg);
}

/* Delay Classes */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }


        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        /* Center the Lottie animation */
        dotlottie-player {
            margin: 0 auto;
        }