/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-black);
    z-index: 1000;
    padding: var(--space-24) var(--space-32);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
 .year-content {
            font-size: 17px;
            line-height: 1.6;
            color: #888;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
            pointer-events: none;
            max-width: 210px;
        }
.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-16);
}

.logo {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 2px;
    color: var(--color-white);
}

.nav-main {
    display: flex;
    gap: var(--space-32);
    align-items: center;
}

.nav-main a {
    color: var(--color-white);
    text-decoration: none;
    font-size: var(--font-size-sm);
    letter-spacing: 0.5px;
    transition: color var(--duration-fast);
    position: relative;
}

.nav-main a:hover {
    color: var(--color-teal-300);
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-charcoal-800);
    min-width: 150px;
    padding: var(--space-12);
    margin-top: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: var(--space-8);
    font-size: var(--font-size-sm);
}

.hamburger {
    position: absolute;
    right: var(--space-32);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--duration-normal);
}
.project-card.m {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 0;
}
.project-card.sd{grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 2;}
	.project-card.gin{grid-column: span 2;
    grid-row: span 3;
    aspect-ratio: 0;}
.slide-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--color-charcoal-800);
    z-index: 2000;
    padding: var(--space-48);
    transition: right var(--duration-slow) var(--ease-standard);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-menu.active {
    right: 0;
}

.slide-menu-close {
    position: absolute;
    top: var(--space-24);
    right: var(--space-24);
    font-size: 32px;
    cursor: pointer;
    color: var(--color-white);
}

.slide-menu nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    margin-top: var(--space-48);
}

.slide-menu nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: var(--font-size-lg);
    transition: color var(--duration-fast);
}

.slide-menu nav a:hover {
    color: var(--color-teal-300);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    margin-top: 120px;
    overflow: hidden;
    background-color: var(--color-black);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    z-index: 1;
}

.marquee-container {
    position: absolute;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}

.marquee-1 {
    top: 20%;
}

.marquee-2 {
    top: 50%;
}

.marquee-3 {
    top: 80%;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}

.marquee-2 .marquee-content {
    animation: scroll-right 35s linear infinite;
}

.marquee-text {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: var(--font-weight-bold);
    letter-spacing: 2px;
    padding: var(--space-16) var(--space-48);
    background-color: rgba(0, 0, 0, 0.7);
    margin-right: var(--space-32);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Projects Grid Section */
.projects-section {
    padding: 10px 10px 0px 10px;
    max-width: 100%;
    margin: 0 auto;
  
}
.her{background: #fff;     background-size: cover; background-repeat: no-repeat;}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    margin-bottom: 8px;;
}

.project-card {
    position: relative;
    overflow: hidden;
    //border-radius: var(--radius-base);
    cursor: pointer;
    aspect-ratio: 1;
    background-color: var(--color-charcoal-700);
}

.project-card.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 0;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-standard);
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
      background-color: rgb(0 0 0 / 35%);
    display: flex;
    flex-direction: column;
    justify-content: top;
   align-items: flex-start;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-standard);
    padding: var(--space-32);
    text-align: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-label {
    font-size: var(--font-size-xs);
    color: var(--color-yellow);
    margin-bottom: var(--space-8);
    letter-spacing: 1px;
}

.project-name {text-align: left;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-8);
}

.project-location {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-16);
}

.project-category {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-20);
}

.view-project-btn {
    padding: var(--space-12) var(--space-24);
    border: 1px solid var(--color-white);
    background-color: transparent;
    color: var(--color-white);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--duration-normal);
    letter-spacing: 0.5px;
}

.view-project-btn:hover {
    background: none;
    border:2px solid #fff;
}

/* Awards Carousel Section */
.awards-section {
    padding: var(--space-64) var(--space-32);
	background: #fff;
        background-color: #fff;
		
		
}

.awards-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--space-48);
    letter-spacing: 2px;
}

.awards-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-24);
}

.awards-carousel {
    display: flex;
    gap: var(--space-16);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-16) 0;
}

.awards-carousel::-webkit-scrollbar {
    display: none;
}

.award-card {
    min-width: 300px;
    padding: var(--space-48) var(--space-32);
    text-align: center;
    transition: transform var(--duration-normal), border-color var(--duration-normal);
}

.award-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-teal-500);
}

.award-logo {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-teal-300);
    margin-bottom: var(--space-24);
    letter-spacing: 1px;
}
.nav-menu a:hover {
    color: #fff;
	transform: scale(1.1);
 
}
.abt a:hover {
    color: #fff;
	transform: scale(1.1);
 
}
.carousel-arrow-right {position:absolute; right:-9px; top:50%; z-index: 99999;}
.carousel-arrow-left {position:absolute; left:-9px; top:50%; z-index: 99999;}
.award-logo img {width: 85%;
  object-fit: contain!important;}
.award-title {
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-8);
    color: #000;
}

.award-subtitle {
    font-size: 20px;
    color: #000;
    margin-bottom: var(--space-32);
}

.award-year {
    font-size: 60px;
    font-weight: var(--font-weight-bold);
    color: #000;
    letter-spacing: 2px;
}

.carousel-arrow {
background: none;
    //background-color: var(--color-charcoal-800);
    border: none;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 52px;
    transition: all var(--duration-normal);
    flex-shrink: 0;
}

.carousel-arrow:hover {
   // background-color: var(--color-teal-500);
  //  border-color: var(--color-teal-500);
}

/* Timeline Section */
.timeline-section {
background: #000;

    padding: var(--space-64) var(--space-32);
    color: var(--color-black);
}

.timeline-container {
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-label {
    font-size: 17px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 1px;
    margin-bottom: var(--space-16);
    color: #fff;
}

.timeline-main-title {
font-size: 32px;
    font-weight: 500;
    margin-bottom: var(--space-24);
    color: #fff;
    letter-spacing: -0.5px;
}

.timeline-hint {
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: var(--space-12) var(--space-20);
    font-size: var(--font-size-sm);
    display: inline-block;
    margin-bottom: var(--space-48);
    border-radius: var(--radius-sm);
}

.timeline-hint-between {
    margin-top: var(--space-48);
    margin-bottom: var(--space-48);
}

.timeline-row {
    display: flex;
    align-items: center;
    gap: var(--space-24);
    margin-bottom: var(--space-32);
}

.timeline-content {
    flex: 1;
    display: flex;
    gap: var(--space-48);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-32) 0;
}

.timeline-content::-webkit-scrollbar {
    display: none;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.timeline-year-label {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: #fff;
    margin: var(--space-16);
    text-align: center;
}

.timeline-year {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d7d7d7;
    cursor: pointer;
    transition: all var(--duration-normal);
    z-index: 2;
position: absolute;
    margin: -12px;
    border: 2px solid #d7d7d7;
}

.timeline-year:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: scale(1.2);
}

.timeline-year.active {
    background-color: #545454;
    border-color: #545454;
}

.timeline-line {
       position: absolute;
    top: 0%;
    left: 50%;
    width: calc(100% + var(--space-48));
    height: 2px;
    background-color: #ffffff;
    z-index: 1;
    transform: translateY(-50%);
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-milestone {
    margin-top: var(--space-24);
    font-size: 17px;
    text-align: center;
    color: #fff;
    line-height: 1.6;
    max-width: 220px;
    padding: var(--space-16);
    //background-color: rgba(255, 255, 255, 0.5);
    //border-radius: var(--radius-base);
    //border: 1px solid var(--color-black);
}

.timeline-arrow {
    background:none;
    border: none;
    color: var(--color-white);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    cursor: pointer;
    font-size:55px;
    transition: all var(--duration-normal);
    flex-shrink: 0;
	font-weight: 100;
}

.timeline-arrow:hover {
    //background-color: var(--color-teal-500);
   // transform: scale(1.1);
}

/* Services Section */
.services-section {
    padding: var(--space-64) var(--space-32);
    max-width: 1400px;
    margin: 0 auto;
}

.services-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--space-48);
}

.services-grid {
     font-family: "DM Sans", sans-serif;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-0);
}

.service-card {
 
    border-radius: 0;
    min-height:500px;
   
}

.service-card.dark {
    background-color: #fff;
	
}

.service-card.dark {
    background-color: var(--color-charcoal-800);
}

.service-card:hover {
    transform: translateY(-4px);
    
}

.service-title {
        font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-16);
	text-transform: uppercase;
}

.service-description {
    font-size: 18px;
   // color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    display: none;
}

.service-card.active .service-description {
    display: block;
}

.service-hint {
    font-size: var(--font-size-sm);
    color: var(--color-yellow);
    margin-top: var(--space-12);
}

.service-card:not(.active) .service-hint {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    padding: var(--space-64) var(--space-32) var(--space-32);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-48);
}

.footer-column h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-20);
    font-weight: var(--font-weight-bold);
    letter-spacing: 1px;
}

.footer-column p,
.footer-column a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-12);
    text-decoration: none;
    display: block;
    line-height: 1.6;
}



.footer-logo {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .awards-carousel-container {
        flex-direction: column;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .award-card {
        min-width: 250px;
    }
    
    .slide-menu {
        width: 100%;
        right: -100%;
    }
    
    .marquee-text {
        font-size: 24px;
    }
}

.footer {
  background: #fff;
  color: #000;
  padding: 60px 40px;
  margin-top: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3,
.footer-column h4 {
  font-size: 1.1em;
  font-weight: 700;
  margin: 0 0 20px 0;
  letter-spacing: 0.08em;
}

.footer-column p {
  font-size: 0.95em;
  line-height: 1.8;
  color: #000;
  margin: 0 0 15px 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #000;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.3s;
}



.footer-logo h3 {
  font-size: 1.6em;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 40px 20px;
  }
}

    </style>
	 <style>
 
    
      
    /* Header Styles */
    header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
     background: none;
      //backdrop-filter: blur(5px);
      padding: 0px 0px 20px 0px;
    }
    
   
    
    .logo {
      font-size: 2.2em;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-align: center;
      margin-bottom: 20px;
    }
    
    .nav-menu {
      display: flex;
      gap: 135px;
      font-size: 0.95em;
      font-weight: 500;
      letter-spacing: 0.05em;
    }
    

    
  
    
    /* Hamburger Menu Icon */
    .hamburger-icon {
      position: absolute;
      right: 40px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      padding: 10px 15px;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px;
      transition: background 0.3s;
    }
    
    .hamburger-icon:hover {
      background: none;
    }
    
    .hamburger-icon span {
      width: 25px;
      height: 3px;
      background: #fff;
      display: block;
      transition: all 0.3s;
    }
    
    /* Slide-in Menu from Right */
    .side-menu {
      position: fixed;
      right: 0;
      top: 0;
      width: 350px;
      height: 100vh;
      background: #fff;
      color: #c41428;
      padding: 40px 30px;
      z-index: 999;
      transform: translateX(100%);
      transition: transform 0.4s ease-in-out;
      overflow-y: auto;
    }
    
    .side-menu.active {
      transform: translateX(0);
    }
    
    .side-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      font-weight: 700;
    }
    
    .close-btn {
      background: none;
      border: none;
      font-size: 1.8em;
      cursor: pointer;
      color: #c41428;
      font-weight: bold;
    }
    
    .side-menu-content {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    
    .menu-section {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .menu-section-title {
      font-weight: 700;
      font-size: 1.05em;
      margin-bottom: 8px;
      letter-spacing: 0.05em;
    }
    
    .menu-section a {
      color: #c41428;
      text-decoration: none;
      font-size: 0.95em;
      font-weight: 600;
      padding: 8px 0;
      transition: color 0.3s;
      cursor: pointer;
    }
    
    .menu-section a:hover {
      color: #931020;
      text-decoration: underline;
    }
    
    /* Overlay when menu is open */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s, visibility 0.4s;
    }
    
    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    /* Hero Banner */
    .hero-banner {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      margin-top: 0;
    }
    
    /* Background Video Container */
    .hero-bg-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background: #000;
    }
    
    .hero-bg-video {
         position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.35);
      z-index: 2;
    }
    
    .hero-content {
      position: relative;
      z-index: 3;
      padding: 80px 60px;
      max-width: 700px;
	      margin-top: 200px;
    }
    
    .text-animation-block {
      margin-bottom: 50px;
      animation: fadeInUp 0.8s ease-out forwards;
      opacity: 0;
    }
    
    .text-animation-block:nth-child(1) {
      animation-delay: 0.3s;
    }
    
    .text-animation-block:nth-child(2) {
      animation-delay: 0.6s;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animation-label {
      background: #FFD60A;
      color: #c41428;
      display: inline-block;
      padding: 6px 14px;
      border-radius: 5px;
      font-size: 0.85em;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: 0.05em;
    }
    
    .animation-text {
      font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
   
  
    }
  .bor {   border-bottom: 2px solid #fff;padding-bottom: 8px;}  
    /* Bottom right label */
    .project-bg-label {
      position: absolute;
      bottom: 40px;
      right: 60px;
      background: #FFD60A;
      color: #c41428;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.95em;
      z-index: 4;
      box-shadow: 0 2px 8px rgba(255, 214, 10, 0.3);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      
      .hamburger-icon {
        right: 20px;
      }
      
      .hero-content {
        padding: 60px 30px;
        max-width: 100%;
      }
      
      .animation-text {
        font-size: 1.6em;
      }
      
      .project-bg-label {
        bottom: 20px;
        right: 20px;
        font-size: 0.8em;
      }
      
      .side-menu {
        width: 280px;
      }
    }
  </style>
   <style>
      .menu-toggle,
        .right-menu-toggle {
            font-size: 28px;
            cursor: pointer;
            color: #fff;
            background:none;
            border: none;
			right: 0%;
			position:absolute;
        }

        .menu-toggle:hover,
        .right-menu-toggle:hover {
            color: #fff;
        }

        /* Navigation Container */
        .nav-container {
            display: flex;
            gap: 60px;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        /* Center Navigation Menu */
        .nav-center {
            display: flex;
            gap: 40px;
            justify-content: center;
        }

        .nav-center a {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 4px;
        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #fff;
            transition: width 0.3s ease;
        }

        .nav-center a:hover::after {
            width: 100%;
        }

        /* Right Navigation */
        .nav-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-right a {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 4px;
        }

        .nav-right a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #fff;
            transition: width 0.3s ease;
        }

        .nav-right a:hover::after {
            width: 100%;
        }

        /* Right Side Menu */
        .right-side-menu {
            position: fixed;
            right: -400px;
            top: 0;
            width: 400px;
            height: 100vh;
               background: #fff;
            border-left: 2px solid #ccc;
            padding: 40px 25px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            transition: right 0.4s ease;
            z-index: 200;
            overflow-y: auto;
			z-index: 9999;
        }

        .right-side-menu.active {
            right: 0;
        }

        .side-menu-close {
            align-self: flex-end;
            background: none;
            border: none;
            color: #000;
            font-size: 28px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .side-menu-close:hover {
            transform: rotate(90deg);
            color: #ccc;
        }

        .side-menu-title {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #000;
            text-transform: uppercase;
            padding-bottom: 15px;
           
        }

        .side-menu-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .side-menu-item {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        .side-menu-item:hover {
            color: #ccc;
            transform: translateX(5px);
        }

        .side-menu-item::before {
            content: '›';
            color: #ccc;
            font-weight: bold;
            font-size: 16px;
        }

        .toggle-btn {
            background: none;
            border: none;
           
            cursor: pointer;
                font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 10px 0;
            border-bottom: 1px solid rgba(204, 204, 204, 0.1);
        }
.side-menu-title a {color:#000; text-decoration: none;}
  .submenu-item a {color:#000; font-size: 14px; text-decoration: none;}    

        .toggle-btn.active {
            color: #000;
        }

        .toggle-icon {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .toggle-btn.active .toggle-icon {
            transform: rotate(180deg);
        }

        .submenu {
            display: none;
            flex-direction: column;
            gap: 10px;
            padding-left: 20px;
            margin-top: 10px;
        }

        .submenu.active {
            display: flex;
        }

        .submenu-item {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submenu-item:hover {
            color: #ccc;
            transform: translateX(5px);
        }

        /* Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 150;
        }

        .menu-overlay.active {
            display: block;
        }

        /* Main Content Section */
      

        


        /* Responsive */
        @media (max-width: 1024px) {
         

           
            .intro-text,
            .services-intro,
            .service-category {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
          

            .nav-container {
                gap: 30px;
                flex-wrap: wrap;
            }

            .nav-center {
                gap: 15px;
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }

            .nav-center a {
                font-size: 10px;
            }

            .nav-right {
                width: 100%;
                justify-content: center;
                gap: 15px;
            }

            .nav-right a {
                font-size: 10px;
            }

            .main-content {
                padding: 40px 25px;
            }

            .intro-text,
            .services-intro,
            .service-category {
                font-size: 13px;
            }

            .right-side-menu {
                width: 280px;
                right: -280px;
                padding: 30px 15px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 16px;
                letter-spacing: 2px;
            }

            .main-content {
                padding: 30px 15px;
            }

            .intro-text,
            .services-intro,
            .service-category {
                font-size: 12px;
            }

            .nav-center a,
            .nav-right a {
                font-size: 9px;
            }

            .right-side-menu {
                width: 250px;
                right: -250px;
            }
        }
		
		 /* Gallery Section */
        .gallery-section {
            padding: 60px 40px;
            background-color: #0a0a0a;
            min-height: 100vh;
        }

        .gallery-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 60px;
            letter-spacing: 2px;
            color: #fff;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Gallery Item */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            cursor: pointer;
            height: 350px;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }

        /* Gallery Overlay */
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay-title {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            color: #fff;
        }

        .gallery-overlay-location {
            font-size: 13px;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            line-height: 1.6;
        }

        .gallery-overlay-type {
            font-size: 12px;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            margin-top: 5px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            header {
                padding: 25px 30px;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 25px;
            }

            .gallery-item {
                height: 300px;
            }

            .gallery-section {
                padding: 40px 30px;
            }

            .gallery-title {
                font-size: 28px;
            }
        }

        @media (max-width: 992px) {
            .nav-container {
                gap: 30px;
                flex-wrap: wrap;
            }

            .nav-center {
                gap: 20px;
                width: 100%;
                justify-content: center;
            }

            .nav-center a {
                font-size: 10px;
            }

            .nav-right {
                width: 100%;
                justify-content: center;
                gap: 15px;
            }

            .nav-right a {
                font-size: 10px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-item {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
		.year-content {   opacity:9;}
            header {
                padding: 20px 15px;
                gap: 15px;
            }

            .logo {
                font-size: 16px;
                letter-spacing: 2px;
            }

            .gallery-section {
                padding: 30px 15px;
            }

            .gallery-title {
                font-size: 22px;
                margin-bottom: 40px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .gallery-item {
                height: 300px;
            }

            .gallery-overlay-title {
                font-size: 16px;
            }

            .gallery-overlay-location {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
		.year-content {   opacity:9;}
            header {
                padding: 15px 10px;
            }

            .nav-center a,
            .nav-right a {
                font-size: 9px;
            }

            .gallery-title {
                font-size: 18px;
                margin-bottom: 30px;
            }

            .gallery-item {
                height: 250px;
            }

            .gallery-overlay {
                padding: 20px;
            }

            .gallery-overlay-title {
                font-size: 14px;
                margin-bottom: 5px;
            }

            .gallery-overlay-location {
                font-size: 11px;
            }
        }

        /* Smooth Transitions */
        * {
            transition: all 0.3s ease;
        }
		
		
.abt {
  position: relative;
  display: inline-block;
}

.dropdown {
    
    background: none!important;
    min-width: 400px;
    z-index: 99999;

    padding: 0px 0px;
}
.abt:hover .dropdown {display: block;}


/* DEMO-SPECIFIC STYLES */
.typewriter {
  color: #fff;
  
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em; /* Adjust as needed */
  animation: 
    typing 3.5s steps(30, end),
    blink-caret .5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
.project-name {color:#fff; text-decoration:none;}

.nav-menu a {
    color: #fff;
    text-decoration: none;

    cursor: pointer;
    padding: 10px 20px;
	transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.abt a {
    color: #fff;
    text-decoration: none;

    cursor: pointer;
    padding: 10px 20px;
	transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

        .timeline-container {
            width: 95%;
            max-width: 1200px;
            position: relative;
        }

        .header-area {
            margin-bottom: 60px;
            padding: 0 60px; 
        }

        .header-label {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 8px;
        }

        .main-title {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
        color: #fff;}

        .slider-interface {
            display: flex;
            align-items: flex-start;
            position: relative;
        }

        .arrow {
            background: none;
            border: none;
            color: #fff;
            font-size: 50px;
            cursor: pointer;
                  transition: 0.3s;
            padding: 0;
            z-index: 10;
            /* Align arrow vertically with the dots/line */
            margin-top: -12px; 
        }

        .arrow:hover { opacity: 1; }
        .arrow:disabled { opacity: 9; cursor: default; }

        .timeline-viewport {
            flex: 1;
            overflow: hidden;
            position: relative;
            margin: 0 20px;
        }

        /* The Line - Centered relative to the dots */
        .horizontal-line {
          position: absolute;
    top: 19px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #8d8989;
    z-index: 1;
        }

        .years-track {
            display: flex;
            position: relative;
            z-index: 2;
            padding-top: 10px; /* Space for the top half of the dot */
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .year-node {
            flex: 0 0 var(--node-width);
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding-right: 20px;
            box-sizing: border-box;
        }

        .dot {
              width: 20px;
    height: 20px;
    background-color: #6f6e6e;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: 0.3s;
    z-index: 3;
    border: 2px solid #6f6e6e;
        }

        .year-label {
            font-size: 22px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 15px;
            transition: 0.3s;
        }

       

        /* Active State */
        .year-node.active .dot {
            background-color: var(--active-color);
            box-shadow: 0 0 10px #fff;
            border-color: var(--active-color);
        }
        .year-node.active .year-label {
            color:#fff;
        }
        .year-node.active .year-content {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            color: #ccc;
        }