/* ===================================
   GLOBAL STYLES
   =================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global Image Transition */
  img {
    transition: transform 0.4s ease, opacity 0.3s ease;
  }
  
  img:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }
  
  .bg-gray {
    background-color: #342d28 !important;
  }
  
  /* Prevent logo from having hover effect */
  .logo img:hover {
    transform: none;
    opacity: 1;
  }
  
  /* Prevent video elements from having hover effect */
  video:hover {
    transform: none;
    opacity: 1;
  }
  
  /* Gallery and Project Images - More dramatic effect */
  .gallery-image:hover,
  .slide-image:hover,
  .project-image:hover {
    transform: scale(1.1);
    opacity: 1;
  }
  
  /* Location Images - Already have custom hover */
  .location-item .location-image {
    transition: transform 0.4s ease;
  }
  
  body {
    background-color: #2c2520;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      sans-serif;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  /* ===================================
     HEADER STYLES
     =================================== */
  .header {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease, min-height 1s ease;
  }
  
  .header.scrolled {
    background-color: #000000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    flex-shrink: 0;
  }
  
  .logo a {
    display: block;
    line-height: 0;
  }
  
  .logo img {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  }
  
  .nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  
  .nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
  }
  
  .nav-item {
    margin: 0;
  }
  
  .nav-link {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #d4af37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .nav-link:hover {
    color: #d4af37;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .header.scrolled .nav-link {
    color: #ffffff;
    text-shadow: none;
  }
  
  .header.scrolled .nav-link:hover {
    color: #d4af37;
  }
  
  /* Better touch targets for tablets */
  @media (hover: none) and (pointer: coarse) {
    .nav-link {
      padding: 8px 4px;
      margin: -8px -4px;
    }
  }
  
  /* ===================================
     HERO SECTION
     =================================== */
  .hero {
    width: 100%;
    background-color: #2c2520;
    padding: 0px 0 80px;
    margin-top: 0;
  }
  
  .hero-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  
  .hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  
  .hero-image {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
    min-height: 600px;
  }
  
  .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 120px 60px 60px 60px;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0) 60%
    );
  }
  
  .hero-title {
    font-family: "Inter", sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .hero-stats {
    display: flex;
    gap: 80px;
    align-items: flex-start;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .stat-label {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    text-transform: lowercase;
    opacity: 0.5;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .stat-value {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .stat-value-wrapper {
    display: flex;
    gap: 4px;
    overflow: hidden;
    position: relative;
    height: 28px;
    align-items: flex-end;
  }
  
  .stat-animate {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 1s ease-out forwards;
  }
  
  .stat-item:nth-child(1) .stat-animate {
    animation-delay: 0.2s;
  }
  
  .stat-item:nth-child(2) .stat-animate {
    animation-delay: 0.4s;
  }
  
  .stat-item:nth-child(3) .stat-animate {
    animation-delay: 0.6s;
  }
  
  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ===================================
     VISION & MISSION SECTION
     =================================== */
  .vision-mission-heading-section {
    width: 100%;
    text-align: center;
    padding: 30px 0 40px 0;
  }
  
  .vision-mission-main-heading {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #8d846b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .vision-mission-section {
    width: 100%;
    background-color: #2c2520;
    padding: 0 0 80px 0;
  }
  
  .vision-mission-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .vision-mission-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  
  .vision-mission-bg {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
  }
  
  .vision-mission-cards {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 0px;
    margin: 40px;
  }
  
  .vision-card,
  .mission-card {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .vision-card {
    padding-right: 20px;
    position: relative;
  }
  
  .mission-card {
    padding-left: 40px;
  }
  
  .vision-mission-title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
  }
  
  .vision-mission-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
  }
  
  /* ===================================
     OUR SERVICES SECTION
     =================================== */
  .services-heading-section {
    width: 100%;
    text-align: center;
    padding: 30px 0 40px 0;
  }
  
  .services-main-heading {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #8d846b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .services-section {
    width: 100%;
    background-color: #2c2520;
    padding: 0 0 80px 0;
  }
  
  .services-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 80px;
    row-gap: 60px;
    flex: 1;
  }
  
  .service-card {
    background-color: transparent;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: opacity 0.3s ease;
  }
  
  .service-card:hover {
    opacity: 0.8;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-icon img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  
  .service-title {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-link {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    margin-top: 15px;
  }
  
  .service-link:hover {
    opacity: 1;
  }
  
  /* ===================================
     OUR PROJECTS SECTION
     =================================== */
  .projects-heading-section {
    width: 100%;
    text-align: center;
    padding: 80px 0 40px 0;
  }
  
  .projects-main-heading {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #8d846b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .projects-section {
    width: 100%;
    background-color: #2c2520;
    padding: 0 0 80px 0;
  }
  
  .projects-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .projects-slider-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    flex: 1;
  }
  
  .slider-track {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
  }
  
  .slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .slide-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .slide-text {
    font-family: "Inter", sans-serif;
    font-size: 96px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 100%;
  }
  
  .slider-nav {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(61, 52, 47, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
  }
  
  .slider-nav:hover {
    background-color: rgba(61, 52, 47, 1);
  }
  
  .slider-prev {
    order: -1;
  }
  
  .slider-next {
    order: 1;
  }
  
  .slide-info {
    margin-top: 30px;
  }
  
  .slide-title {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #8d846b;
    margin: 0;
    text-align: center;
  }
  
  .slider-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
  }
  
  .dot.active {
    background-color: #ffffff;
  }
  
  .dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
  }
  
  /* ===================================
     LOCATIONS SECTION
     =================================== */
  .locations-section {
    width: 100%;
    background-color: #2c2520;
    padding: 80px 0;
  }
  
  .locations-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
  
  .location-item {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    grid-column: span 2;
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: z-index 0s;
  }
  
  .location-item:hover {
    z-index: 10;
  }
  
  .location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.4s ease;
    z-index: 1;
    pointer-events: none;
  }
  
  .location-item:hover::before {
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .location-item.location-large {
    grid-column: span 3;
    height: 300px;
  }
  
  .location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .location-item:nth-child(odd) .location-image:hover {
    transform: scale(1.2) translateX(8%);
  }
  
  .location-item:nth-child(even) .location-image:hover {
    transform: scale(1.2);
  }
  
  .location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0) 100%
    );
    display: flex;
    align-items: flex-end;
    backdrop-filter: blur(25px);
    justify-content: center;
  }
  
  .location-name {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    line-height: 100%;
  }
  
  /* ===================================
     WHY NERKAL SECTION
     =================================== */
  .why-nerkal-heading-section {
    width: 100%;
    text-align: center;
    padding: 80px 0 40px 0;
  }
  
  .why-nerkal-main-heading {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #8d846b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .why-nerkal-section {
    width: 100%;
    background-color: #2c2520;
    padding: 0 0 80px 0;
  }
  
  .why-nerkal-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .why-nerkal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
    margin-bottom: 60px;
  }
  
  .why-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
  }
  
  .why-number {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.6;
    flex-shrink: 0;
  }
  
  .why-content {
    flex: 1;
  }
  
  .why-title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.4;
  }
  
  .why-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
  }
  
  .why-images {
    display: grid;
    grid-template-columns: 1fr 20px 1fr 110px 2fr;
    gap: 20px 0;
  }
  
  .why-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
  }
  
  .why-image:nth-child(1) {
    grid-column: 1;
  }
  
  .why-image:nth-child(2) {
    grid-column: 3;
  }
  
  .why-image:nth-child(3) {
    grid-column: 5;
  }
  
  /* ===================================
     OUR TEAM SECTION
     =================================== */
  .team-heading-section {
    width: 100%;
    text-align: center;
    padding: 80px 0 40px 0;
  }
  
  .team-main-heading {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #8d846b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .team-section {
    width: 100%;
    background-color: #2c2520;
    padding: 0 0 80px 0;
  }
  
  .team-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  
  .team-card {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  
  .team-card-large {
    grid-row: span 2;
    height: 520px;
  }
  
  .team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    backdrop-filter: blur(25px);
  }
  
  .team-name {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
  }
  
  .team-position {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
    line-height: 1.3;
  }
  
  /* ===================================
     OUR DEPARTMENTS SECTION
     =================================== */
  .departments-heading-section {
    width: 100%;
    text-align: center;
    padding: 80px 0 40px 0;
  }
  
  .departments-main-heading {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #8d846b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .departments-section {
    width: 100%;
    background-color: #2c2520;
    padding: 0 0 80px 0;
  }
  
  .departments-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .departments-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  
  .department-item {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    overflow: visible;
  }
  
  .department-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .department-header {
    display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .department-header:hover {
    opacity: 0.8;
  }
  
  .department-number {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.6;
    flex-shrink: 0;
    margin-left: -50px;
    padding-right: 20px;
  }
  
  .department-name {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    flex: 1;
  }
  
  .department-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
  }
  
  .department-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .department-toggle svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }
  
  .department-item.active .department-toggle svg {
    transform: rotate(180deg);
  }
  
  .department-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  .department-item.active .department-content {
    max-height: 600px;
  }
  
  .department-description {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 25px 0 0 0;
    padding-left: 48px;
  }
  
  /* ===================================
     ABOUT US SECTION
     =================================== */
  .about-heading-section {
    width: 100%;
    text-align: center;
    padding: 0 0 40px 0;
  }
  
  .about-main-heading {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #8d846b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .about-section {
    width: 100%;
    background-color: #2c2520;
    padding: 0 0 80px 0;
  }
  
  .about-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  
  .about-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
  }
  
  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 370px;
    position: relative;
  }
  
  .about-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  
  .about-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 290px;
    height: 200px;
    position: absolute;
    bottom: 0px;
  }
  
  .about-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
  
  .about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .about-heading {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
  }
  
  .about-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 0px;
    opacity: 0.9;
  }
  
  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
  }
  
  .hamburger {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
  }
  
  .mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }
  
  .mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }
  
  /* Responsive styles */
  @media (max-width: 1200px) {
    .header-container {
      padding: 0 40px;
    }
  
    .nav-list {
      gap: 30px;
    }
  }
  
  @media (max-width: 992px) {
    .nav-list {
      gap: 25px;
    }
  
    .nav-link {
      font-size: 15px;
    }
  }
  
  @media (max-width: 900px) {
    .nav-list {
      gap: 20px;
    }
  
    .nav-link {
      font-size: 14px;
    }
  }
  
  /* iPad Pro Landscape (12.9" and 11") */
  @media (min-width: 1025px) and (max-width: 1366px) {
    .header {
      padding: 18px 0;
    }
  
    .header-container {
      padding: 0 50px;
    }
  
    .nav-list {
      gap: 32px;
    }
  
    .nav-link {
      font-size: 16px;
    }
  
    .logo img {
      height: 40px;
    }
  }
  
  /* iPad Landscape (standard and Air) */
  @media (min-width: 1024px) and (max-width: 1024px) {
    .header {
      padding: 18px 0;
    }
  
    .header-container {
      padding: 0 40px;
    }
  
    .nav-list {
      gap: 28px;
    }
  
    .nav-link {
      font-size: 15px;
    }
  
    .logo img {
      height: 40px;
    }
  }
  
  /* iPad Portrait (all sizes) */
  @media (min-width: 769px) and (max-width: 834px) {
    .header {
      padding: 16px 0;
    }
  
    .header-container {
      padding: 0 30px;
    }
  
    .nav-list {
      gap: 18px;
    }
  
    .nav-link {
      font-size: 13px;
    }
  
    .logo img {
      height: 38px;
    }
  }
  
  /* iPad Mini Portrait and Small Tablets */
  @media (max-width: 820px) and (min-width: 769px) {
    .header {
      padding: 16px 0;
    }
  
    .header-container {
      padding: 0 25px;
    }
  
    .nav-list {
      gap: 16px;
    }
  
    .nav-link {
      font-size: 13px;
    }
  
    .logo img {
      height: 36px;
    }
  }
  
  /* Mobile Menu Styles */
  @media (max-width: 768px) {
    .header {
      position: fixed;
      top: 0;
      padding: 16px 0;
    }
  
    .header-container {
      padding: 0 20px;
      position: relative;
    }
  
    .mobile-menu-toggle {
      display: flex;
    }
  
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 100%;
      max-width: 250px;
      background-color: #3d342f;
      padding: 80px 30px 30px;
      overflow-y: auto;
      transition: right 0.3s ease;
      z-index: 1000;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      justify-content: flex-start;
    }
  
    .nav.active {
      right: 0;
    }
  
    .nav-list {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      width: 100%;
    }
  
    .nav-item {
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 18px 0;
    }
  
    .nav-link {
      display: block;
      font-size: 16px;
      width: 100%;
    }
  
    .logo img {
      height: 35px;
    }
  }
  
  @media (max-width: 480px) {
    .header {
      padding: 14px 0;
    }
  
    .header-container {
      padding: 0 15px;
    }
  
    .logo img {
      height: 30px;
    }
  
    .nav {
      max-width: 280px;
      padding: 70px 20px 20px;
    }
  
    .nav-link {
      font-size: 15px;
      padding: 16px 0;
    }
  }
  
  /* Overlay for mobile menu */
  @media (max-width: 768px) {
    body.menu-open::before {
      display: none;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* ===================================
     HERO RESPONSIVE STYLES
     =================================== */
  
  /* Large Desktop */
  @media (max-width: 1400px) {
    .hero-title {
      font-size: 58px;
    }
    .about-main-heading {
      font-size: 22px;
    }
  }
  
  /* Desktop */
  @media (max-width: 1200px) {
    .hero-container {
      padding: 0;
    }
  
    .hero-content {
      padding: 50px;
    }
  
    .hero-title {
      font-size: 52px;
      margin-bottom: 50px;
    }
  
    .hero-stats {
      gap: 60px;
    }
    
    .about-main-heading {
      font-size: 32px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .hero {
      padding: 30px 0 60px;
    }
  
    .hero-content {
      padding: 40px;
    }
  
    .hero-title {
      font-size: 48px;
      margin-bottom: 40px;
    }
  
    .hero-stats {
      gap: 50px;
    }
  
    .stat-value {
      font-size: 18px;
    }
    
    .about-main-heading {
      font-size: 30px;
    }
    
    .about-heading-section {
      padding: 60px 0 30px 0;
    }
  }
  
  /* iPad Pro Landscape */
  @media (min-width: 1025px) and (max-width: 1366px) {
    .hero-title {
      font-size: 64px;
    }
  
    .hero-container {
      padding: 0;
    }
    
    .about-main-heading {
      font-size: 35px;
    }
  }
  
  /* iPad Landscape */
  @media (min-width: 1024px) and (max-width: 1024px) {
    .hero-title {
      font-size: 48px;
    }
  
    .hero-container {
      padding: 0;
    }
  
    .hero-stats {
      gap: 50px;
    }
    
    .about-main-heading {
      font-size: 30px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .hero {
      padding: 30px 0 50px;
    }
  
    .hero-container {
      padding: 0;
    }
  
    .hero-image-wrapper {
      border-radius: 0px;
    }
  
    .hero-content {
      padding: 35px;
    }
  
    .hero-title {
      font-size: 42px;
      margin-bottom: 35px;
      letter-spacing: 1px;
    }
  
    .hero-stats {
      gap: 40px;
    }
  
    .stat-label {
      font-size: 13px;
    }
  
    .stat-value {
      font-size: 18px;
    }
    
    .about-main-heading {
      font-size: 26px;
    }
    
    .about-heading-section {
      padding: 50px 0 25px 0;
    }
  }
  
  /* iPad Mini Portrait */
  @media (max-width: 820px) and (min-width: 769px) {
    .hero-title {
      font-size: 40px;
    }
  
    .hero-container {
      padding: 0;
    }
    
    .about-main-heading {
      font-size: 25px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .hero {
      padding: 20px 0 40px;
    }
  
    .hero-container {
      padding: 0;
    }
  
    .hero-image-wrapper {
      border-radius: 0px;
    }
  
    .hero-content {
      padding: 30px;
    }
  
    .hero-title {
      font-size: 32px;
      margin-bottom: 30px;
      letter-spacing: 1px;
    }
  
    .hero-stats {
      gap: 25px;
    }
  
    .stat-item {
      gap: 6px;
    }
  
    .stat-label {
      font-size: 12px;
    }
  
    .stat-value {
      font-size: 16px;
    }
    
    .about-main-heading {
      font-size: 22px;
    }
    
    .about-heading-section {
      padding: 40px 20px 20px 20px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .hero {
      padding: 15px 0 30px;
    }
  
    .hero-container {
      padding: 0;
    }
  
    .hero-image-wrapper {
      border-radius: 0px;
    }
  
    .hero-content {
      padding: 20px;
    }
  
    .hero-title {
      font-size: 28px;
      margin-bottom: 25px;
      letter-spacing: 0.5px;
    }
  
    .hero-stats {
      gap: 20px;
    }
  
    .stat-label {
      font-size: 11px;
    }
  
    .stat-value {
      font-size: 15px;
    }
    
    .about-main-heading {
      font-size: 18px;
    }
    
    .about-heading-section {
      padding: 30px 15px 15px 15px;
    }
  }
  
  /* ===================================
     ABOUT US RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .about-container {
      padding: 0 40px;
      gap: 30px;
    }
  
    .about-images {
      height: 340px;
    }
  
    .about-img-1 {
      width: 260px;
      height: 180px;
      top: 100px;
    }
  
    .about-img-2 {
      top: -50px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .about-section {
      padding: 60px 0;
    }
  
    .about-container {
      gap: 40px;
    }
  
    .about-left {
      flex: 0 0 45%;
    }
  
    .about-label {
      font-size: 22px;
      margin-bottom: 30px;
    }
  
    .about-images {
      height: 300px;
    }
  
    .about-img-1 {
      width: 220px;
      height: 150px;
      top: 80px;
    }
  
    .about-img-2 {
      top: -40px;
    }
  
    .about-heading {
      font-size: 22px;
    }
  
    .about-text {
      font-size: 15px;
    }
  }
  
  /* iPad Pro Landscape */
  @media (min-width: 1025px) and (max-width: 1366px) {
    .about-container {
      padding: 0 50px;
      gap: 50px;
    }
  
    .about-images {
      height: 350px;
    }
  
    .about-img-1 {
      width: 270px;
      height: 190px;
    }
  
    .about-img-2 {
      top: -50px;
    }
  }
  
  /* iPad Landscape */
  @media (min-width: 1024px) and (max-width: 1024px) {
    .about-container {
      padding: 0 40px;
      gap: 40px;
    }
  
    .about-images {
      height: 330px;
    }
  
    .about-img-1 {
      width: 250px;
      height: 180px;
      top: 90px;
    }
  
    .about-img-2 {
      top: -45px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .about-section {
      padding: 0 0 50px 0;
    }
  
    .about-container {
      padding: 0 30px;
      flex-direction: column;
      gap: 40px;
    }
  
    .about-left {
      flex: 1;
      width: 100%;
    }
  
    .about-images {
      gap: 15px;
      height: auto;
      display: flex;
      flex-direction: column;
    }
  
    .about-img-1,
    .about-img-2 {
      width: 100%;
      height: 250px;
      position: static;
      top: auto;
    }
  
    .about-heading {
      font-size: 20px;
    }
  
    .about-text {
      font-size: 14px;
    }
  }
  
  /* iPad Mini Portrait */
  @media (max-width: 820px) and (min-width: 769px) {
    .about-container {
      padding: 0 25px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .about-section {
      padding: 0 0 40px 0;
    }
  
    .about-container {
      padding: 0 20px;
      flex-direction: column;
      gap: 30px;
    }
  
    .about-left {
      flex: 1;
      width: 100%;
    }
  
    .about-images {
      display: flex;
      flex-direction: column;
      gap: 15px;
      height: auto;
    }
  
    .about-img-1,
    .about-img-2 {
      width: 100%;
      height: 250px;
      position: static;
      top: auto;
      grid-column: auto;
      grid-row: auto;
    }
  
    .about-heading {
      font-size: 18px;
      line-height: 1.6;
    }
  
    .about-text {
      font-size: 14px;
      line-height: 1.7;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .about-section {
      padding: 0 0 30px 0;
    }
  
    .about-container {
      padding: 0 15px;
      gap: 25px;
    }
  
    .about-images {
      gap: 12px;
      height: auto;
    }
  
    .about-img-1,
    .about-img-2 {
      width: 100%;
      height: 200px;
      position: static;
      top: auto;
    }
  
    .about-heading {
      font-size: 16px;
    }
  
    .about-text {
      font-size: 13px;
    }
  }
  
  /* ===================================
     VISION & MISSION RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .vision-mission-container {
      padding: 0 40px;
    }
  
    .vision-mission-image-wrapper {
      height: 450px;
    }
  
    .vision-mission-cards {
      padding-bottom: 35px;
    }
    
    .vision-mission-main-heading {
      font-size: 32px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .vision-mission-section {
      padding: 0 0 60px 0;
    }
    
    .vision-mission-heading-section {
      padding: 60px 0 30px 0;
    }
    
    .vision-mission-main-heading {
      font-size: 30px;
    }
  
    .vision-mission-image-wrapper {
      height: 290px;
    }
  
    .vision-mission-cards {
      padding-bottom: 30px;
    }
  
    .vision-card,
    .mission-card {
      padding: 30px;
    }
  
    .vision-card {
      padding-right: 50px;
    }
  
    .mission-card {
      padding-left: 50px;
    }
  
    .vision-mission-title {
      font-size: 22px;
    }
  
    .vision-mission-text {
      font-size: 15px;
    }
  }
  
  /* iPad Pro Landscape */
  @media (min-width: 1025px) and (max-width: 1366px) {
    .vision-mission-container {
      padding: 0 50px;
    }
  }
  
  /* iPad Landscape */
  @media (min-width: 1024px) and (max-width: 1024px) {
    .vision-mission-container {
      padding: 0 40px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .vision-mission-section {
      padding: 0 0 50px 0;
    }
    
    .vision-mission-heading-section {
      padding: 50px 0 25px 0;
    }
    
    .vision-mission-main-heading {
      font-size: 26px;
    }
  
    .vision-mission-container {
      padding: 0 30px;
    }
  
    .vision-mission-image-wrapper {
      height: 350px;
    }
  
    .vision-mission-cards {
      padding-bottom: 25px;
    }
  
    .vision-card,
    .mission-card {
      padding: 25px;
    }
  
    .vision-card {
      padding-right: 40px;
    }
  
    .mission-card {
      padding-left: 40px;
    }
  
    .vision-mission-title {
      font-size: 20px;
    }
  
    .vision-mission-text {
      font-size: 14px;
    }
  }
  
  /* iPad Mini Portrait */
  @media (max-width: 820px) and (min-width: 769px) {
    .vision-mission-container {
      padding: 0 25px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .vision-mission-section {
      padding: 0 0 40px 0;
    }
    
    .vision-mission-heading-section {
      padding: 40px 20px 20px 20px;
    }
    
    .vision-mission-main-heading {
      font-size: 22px;
    }
  
    .vision-mission-container {
      padding: 0 20px;
    }
  
    .vision-mission-cards {
      flex-direction: column;
      padding-bottom: 20px;
      margin: 15px;
      top: 17px;
    }
  
    .vision-card,
    .mission-card {
      padding: 30px 20px;
    }
  
    .vision-card {
      padding-right: 20px;
      padding-bottom: 20px;
    }
  
    .mission-card {
      padding-left: 20px;
      padding-top: 20px;
    }
  
    .vision-mission-title {
      font-size: 18px;
    }
  
    .vision-mission-text {
      font-size: 14px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .vision-mission-section {
      padding: 0 0 30px 0;
    }
    
    .vision-mission-heading-section {
      padding: 30px 15px 15px 15px;
    }
    
    .vision-mission-main-heading {
      font-size: 18px;
    }
  
    .vision-mission-container {
      padding: 0 15px;
    }
  
    .vision-mission-cards {
      padding-bottom: 15px;
    }
  
    .vision-card,
    .mission-card {
      padding: 25px 15px 0;
    }
  
    .vision-card {
      padding-bottom: 15px;
    }
  
    .mission-card {
      padding-top: 0px;
    }
  
    .vision-mission-title {
      font-size: 16px;
    }
  
    .vision-mission-text {
      font-size: 13px;
    }
    .about-container {
      flex-direction: column-reverse;
    }
  }
  
  /* ===================================
     OUR SERVICES RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .services-container {
      padding: 0 40px;
    }
  
    .services-grid {
      gap: 50px 60px;
    }
    
    .services-main-heading {
      font-size: 32px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .services-section {
      padding: 0 0 60px 0;
    }
    
    .services-heading-section {
      padding: 60px 0 30px 0;
    }
    
    .services-main-heading {
      font-size: 30px;
    }
  
    .services-container {
      flex-direction: column;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 50px;
    }
  
    .service-card {
      padding: 20px 10px;
    }
  
    .service-title {
      font-size: 18px;
      min-height: 52px;
    }
  }
  
  /* iPad Pro Landscape */
  @media (min-width: 1025px) and (max-width: 1366px) {
    .services-container {
      padding: 0 50px;
    }
    
    .services-main-heading {
      font-size: 35px;
    }
  }
  
  /* iPad Landscape */
  @media (min-width: 1024px) and (max-width: 1024px) {
    .services-container {
      padding: 0 40px;
    }
  
    .services-grid {
      gap: 30px;
    }
    
    .services-main-heading {
      font-size: 30px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .services-section {
      padding: 0 0 50px 0;
    }
    
    .services-heading-section {
      padding: 50px 0 25px 0;
    }
    
    .services-main-heading {
      font-size: 26px;
    }
  
    .services-container {
      padding: 0 30px;
      flex-direction: column;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 35px 40px;
    }
  
    .service-card {
      padding: 15px 10px;
    }
  
    .service-icon {
      width: 70px;
      height: 70px;
    }
  
    .service-title {
      font-size: 17px;
      min-height: 48px;
    }
  
    .service-link {
      font-size: 15px;
    }
  }
  
  /* iPad Mini Portrait */
  @media (max-width: 820px) and (min-width: 769px) {
    .services-container {
      padding: 0 25px;
    }
    
    .services-main-heading {
      font-size: 25px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .services-section {
      padding: 0 0 40px 0;
    }
    
    .services-heading-section {
      padding: 40px 20px 20px 20px;
    }
    
    .services-main-heading {
      font-size: 22px;
    }
  
    .services-container {
      padding: 0 20px;
      flex-direction: column;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 35px;
    }
  
    .service-card {
      padding: 15px 10px;
    }
  
    .service-icon {
      width: 70px;
      height: 70px;
    }
  
    .service-title {
      font-size: 18px;
      min-height: auto;
    }
  
    .service-link {
      font-size: 15px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .services-section {
      padding: 0 0 30px 0;
    }
    
    .services-heading-section {
      padding: 30px 15px 15px 15px;
    }
    
    .services-main-heading {
      font-size: 18px;
    }
  
    .services-container {
      padding: 0 15px;
      flex-direction: column;
    }
  
    .services-grid {
      gap: 30px;
    }
  
    .service-card {
      padding: 10px;
    }
  
    .service-icon {
      width: 60px;
      height: 60px;
    }
  
    .service-title {
      font-size: 16px;
    }
  
    .service-link {
      font-size: 14px;
    }
  }
  
  /* ===================================
     OUR PROJECTS RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .projects-container {
      padding: 0 40px;
    }
  
    .projects-slider-wrapper {
      gap: 30px;
    }
  
    .slider-container {
      height: 500px;
    }
  
    .slide-text {
      font-size: 70px;
    }
  
    .slide-info {
      padding-left: calc(60px + 30px);
    }
    
    .projects-main-heading {
      font-size: 32px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .projects-section {
      padding: 0 0 60px 0;
    }
    
    .projects-heading-section {
      padding: 60px 0 30px 0;
    }
    
    .projects-main-heading {
      font-size: 30px;
    }
  
    .projects-slider-wrapper {
      gap: 30px;
    }
  
    .slider-container {
      height: 450px;
    }
  
    .slide-text {
      font-size: 60px;
    }
  
    .slider-nav {
      width: 50px;
      height: 50px;
    }
  
    .slide-info {
      padding-left: calc(50px + 30px);
    }
  }
  
  /* iPad Pro Landscape */
  @media (min-width: 1025px) and (max-width: 1366px) {
    .projects-container {
      padding: 0 50px;
    }
    
    .projects-main-heading {
      font-size: 35px;
    }
  }
  
  /* iPad Landscape */
  @media (min-width: 1024px) and (max-width: 1024px) {
    .projects-container {
      padding: 0 40px;
    }
    
    .projects-main-heading {
      font-size: 30px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .projects-section {
      padding: 0 0 50px 0;
    }
    
    .projects-heading-section {
      padding: 50px 0 25px 0;
    }
    
    .projects-main-heading {
      font-size: 26px;
    }
  
    .projects-container {
      padding: 0 30px;
    }
  
    .projects-slider-wrapper {
      gap: 25px;
    }
  
    .slider-container {
      height: 400px;
    }
  
    .slide-text {
      font-size: 50px;
      letter-spacing: 3px;
    }
  
    .slider-nav {
      width: 45px;
      height: 45px;
    }
  
    .slide-title {
      font-size: 18px;
    }
  
    .slide-info {
      margin-top: 25px;
      padding-left: calc(45px + 25px);
    }
  
    .slider-dots {
      margin-top: 25px;
    }
  }
  
  /* iPad Mini Portrait */
  @media (max-width: 820px) and (min-width: 769px) {
    .projects-container {
      padding: 0 25px;
    }
    
    .projects-main-heading {
      font-size: 25px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .projects-section {
      padding: 0 0 40px 0;
    }
    
    .projects-heading-section {
      padding: 40px 20px 20px 20px;
    }
    
    .projects-main-heading {
      font-size: 22px;
    }
  
    .projects-container {
      padding: 0 20px;
    }
  
    .projects-slider-wrapper {
      gap: 0;
    }
  
    .slider-container {
      height: 350px;
      width: 100%;
    }
  
    .slide-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .slide-text {
      font-size: 40px;
      letter-spacing: 2px;
    }
  
    .slider-nav {
      display: none;
    }
  
    .slider-nav svg {
      width: 18px;
      height: 18px;
    }
  
    .slide-info {
      margin-top: 20px;
      padding-left: 0;
    }
  
    .slide-title {
      font-size: 16px;
    }
  
    .slider-dots {
      margin-top: 20px;
      gap: 10px;
    }
  
    .dot {
      width: 10px;
      height: 10px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .projects-section {
      padding: 0 0 30px 0;
    }
    
    .projects-heading-section {
      padding: 30px 15px 15px 15px;
    }
    
    .projects-main-heading {
      font-size: 18px;
    }
  
    .projects-container {
      padding: 0 15px;
    }
  
    .projects-slider-wrapper {
      gap: 0;
    }
  
    .slider-container {
      height: 280px;
      width: 100%;
    }
  
    .slide-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .slide-text {
      font-size: 32px;
      letter-spacing: 1px;
    }
  
    .slider-nav {
      display: none;
    }
  
    .slider-nav svg {
      width: 16px;
      height: 16px;
    }
  
    .slide-info {
      margin-top: 15px;
      padding-left: 0;
    }
  
    .slide-title {
      font-size: 14px;
    }
  
    .slider-dots {
      margin-top: 15px;
      gap: 8px;
    }
  
    .dot {
      width: 8px;
      height: 8px;
    }
  }
  
  /* ===================================
     LOCATIONS RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .locations-container {
      padding: 0 40px;
    }
  
    .locations-grid {
      grid-template-columns: repeat(6, 1fr);
    }
  
    .location-item {
      height: 280px;
      grid-column: span 2;
    }
  
    .location-item.location-large {
      height: 280px;
      grid-column: span 3;
    }
  
    .location-name {
      font-size: 26px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .locations-section {
      padding: 60px 0;
    }
  
    .locations-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
  
    .location-item {
      height: 250px;
      grid-column: span 2;
    }
  
    .location-item.location-large {
      height: 250px;
      grid-column: span 2;
    }
  
    .location-overlay {
      padding: 25px;
    }
  
    .location-name {
      font-size: 24px;
    }
  }
  
  /* iPad Pro Landscape */
  @media (min-width: 1025px) and (max-width: 1366px) {
    .locations-container {
      padding: 0 50px;
    }
  
    .locations-grid {
      grid-template-columns: repeat(6, 1fr);
    }
  }
  
  /* iPad Landscape */
  @media (min-width: 1024px) and (max-width: 1024px) {
    .locations-container {
      padding: 0 40px;
    }
  
    .locations-grid {
      grid-template-columns: repeat(6, 1fr);
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .locations-section {
      padding: 50px 0;
    }
  
    .locations-container {
      padding: 0 30px;
    }
  
    .locations-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
  
    .location-item {
      height: 220px;
      grid-column: span 2;
    }
  
    .location-item.location-large {
      grid-column: span 2;
      height: 220px;
    }
  
    .location-overlay {
      padding: 20px;
    }
  
    .location-name {
      font-size: 22px;
    }
  }
  
  /* iPad Mini Portrait */
  @media (max-width: 820px) and (min-width: 769px) {
    .locations-container {
      padding: 0 25px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .locations-section {
      padding: 40px 0;
    }
  
    .locations-container {
      padding: 0 20px;
    }
  
    .locations-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  
    .location-item {
      height: 250px;
      grid-column: span 1;
    }
  
    .location-item.location-large {
      grid-column: span 1;
      height: 250px;
    }
  
    .location-overlay {
      padding: 20px;
    }
  
    .location-name {
      font-size: 24px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .locations-section {
      padding: 30px 0;
    }
  
    .locations-container {
      padding: 0 15px;
    }
  
    .locations-grid {
      grid-template-columns: 1fr;
      gap: 8px;
    }
  
    .location-item {
      height: 200px;
      grid-column: span 1;
    }
  
    .location-item.location-large {
      height: 200px;
      grid-column: span 1;
    }
  
    .location-overlay {
      padding: 15px;
    }
  
    .location-name {
      font-size: 20px;
    }
  }
  
  /* ===================================
     WHY NERKAL RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .why-nerkal-container {
      padding: 0 40px;
    }
  
    .why-nerkal-grid {
      gap: 40px 60px;
    }
  
    .why-images {
      grid-template-columns: 1fr 20px 1fr 110px 2fr;
    }
  
    .why-image {
      height: 350px;
    }
    
    .why-nerkal-main-heading {
      font-size: 32px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .why-nerkal-section {
      padding: 0 0 60px 0;
    }
    
    .why-nerkal-heading-section {
      padding: 60px 0 30px 0;
    }
    
    .why-nerkal-main-heading {
      font-size: 30px;
    }
  
    .why-nerkal-grid {
      gap: 35px 50px;
      margin-bottom: 50px;
    }
  
    .why-title {
      font-size: 17px;
    }
  
    .why-description {
      font-size: 13px;
    }
  
    .why-images {
      grid-template-columns: 1fr 20px 1fr 90px 2fr;
    }
  
    .why-image {
      height: 300px;
    }
  }
  
  /* iPad Pro Landscape */
  @media (min-width: 1025px) and (max-width: 1366px) {
    .why-nerkal-container {
      padding: 0 50px;
    }
    
    .why-nerkal-main-heading {
      font-size: 35px;
    }
  }
  
  /* iPad Landscape */
  @media (min-width: 1024px) and (max-width: 1024px) {
    .why-nerkal-container {
      padding: 0 40px;
    }
    
    .why-nerkal-main-heading {
      font-size: 30px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .why-nerkal-section {
      padding: 0 0 50px 0;
    }
    
    .why-nerkal-heading-section {
      padding: 50px 0 25px 0;
    }
    
    .why-nerkal-main-heading {
      font-size: 26px;
    }
  
    .why-nerkal-container {
      padding: 0 30px;
    }
  
    .why-nerkal-grid {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 40px;
    }
  
    .why-title {
      font-size: 16px;
    }
  
    .why-description {
      font-size: 13px;
    }
  
    .why-images {
      grid-template-columns: 1fr 15px 1fr 80px 2fr;
      gap: 15px 0;
    }
  
    .why-image {
      height: 280px;
    }
  }
  
  /* iPad Mini Portrait */
  @media (max-width: 820px) and (min-width: 769px) {
    .why-nerkal-container {
      padding: 0 25px;
    }
    
    .why-nerkal-main-heading {
      font-size: 25px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .why-nerkal-section {
      padding: 0 0 40px 0;
    }
    
    .why-nerkal-heading-section {
      padding: 40px 20px 20px 20px;
    }
    
    .why-nerkal-main-heading {
      font-size: 22px;
    }
  
    .why-nerkal-container {
      padding: 0 20px;
    }
  
    .why-nerkal-grid {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 35px;
    }
  
    .why-item {
      gap: 15px;
    }
  
    .why-number {
      font-size: 16px;
    }
  
    .why-title {
      font-size: 16px;
      margin-bottom: 10px;
    }
  
    .why-description {
      font-size: 13px;
      line-height: 1.5;
    }
  
    .why-images {
      grid-template-columns: 1fr 15px 1fr;
      gap: 15px;
    }
  
    .why-image {
      height: 250px;
    }
  
    .why-image:nth-child(1) {
      grid-column: 1;
    }
  
    .why-image:nth-child(2) {
      grid-column: 3;
    }
  
    .why-image:nth-child(3) {
      grid-column: 1 / 4;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .why-nerkal-section {
      padding: 0 0 30px 0;
    }
    
    .why-nerkal-heading-section {
      padding: 30px 15px 15px 15px;
    }
    
    .why-nerkal-main-heading {
      font-size: 18px;
    }
  
    .why-nerkal-container {
      padding: 0 15px;
    }
  
    .why-nerkal-grid {
      gap: 25px;
      margin-bottom: 30px;
    }
  
    .why-item {
      gap: 12px;
    }
  
    .why-number {
      font-size: 14px;
    }
  
    .why-title {
      font-size: 15px;
    }
  
    .why-description {
      font-size: 12px;
    }
  
    .why-images {
      grid-template-columns: 1fr 12px 1fr;
      gap: 12px;
    }
  
    .why-image {
      height: 200px;
    }
  
    .why-image:nth-child(1) {
      grid-column: 1;
    }
  
    .why-image:nth-child(2) {
      grid-column: 3;
    }
  
    .why-image:nth-child(3) {
      grid-column: 1 / 4;
    }
  }
  
  /* ===================================
     OUR TEAM RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .team-container {
      padding: 0 40px;
    }
  
    .team-card {
      height: 220px;
    }
  
    .team-card-large {
      height: 460px;
    }
    
    .team-main-heading {
      font-size: 32px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .team-section {
      padding: 0 0 60px 0;
    }
    
    .team-heading-section {
      padding: 60px 0 30px 0;
    }
    
    .team-main-heading {
      font-size: 30px;
    }
  
    .team-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }
  
    .team-card {
      height: 220px;
    }
  
    .team-card-large {
      height: 455px;
    }
  
    .team-name {
      font-size: 17px;
    }
  
    .team-position {
      font-size: 13px;
    }
  }
  
  /* iPad Pro Landscape */
  @media (min-width: 1025px) and (max-width: 1366px) {
    .team-container {
      padding: 0 50px;
    }
    
    .team-main-heading {
      font-size: 35px;
    }
  }
  
  /* iPad Landscape */
  @media (min-width: 1024px) and (max-width: 1024px) {
    .team-container {
      padding: 0 40px;
    }
    
    .team-main-heading {
      font-size: 30px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .team-section {
      padding: 0 0 50px 0;
    }
    
    .team-heading-section {
      padding: 50px 0 25px 0;
    }
    
    .team-main-heading {
      font-size: 26px;
    }
  
    .team-container {
      padding: 0 30px;
    }
  
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  
    .team-card {
      height: 250px;
    }
  
    .team-card-large {
      grid-row: span 2;
      height: 515px;
    }
  
    .team-name {
      font-size: 16px;
    }
  
    .team-position {
      font-size: 13px;
    }
  }
  
  /* iPad Mini Portrait */
  @media (max-width: 820px) and (min-width: 769px) {
    .team-container {
      padding: 0 25px;
    }
    
    .team-main-heading {
      font-size: 25px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .team-section {
      padding: 0 0 40px 0;
    }
    
    .team-heading-section {
      padding: 40px 20px 20px 20px;
    }
    
    .team-main-heading {
      font-size: 22px;
    }
  
    .team-container {
      padding: 0 20px;
    }
  
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  
    .team-card {
      height: 200px;
    }
  
    .team-card-large {
      grid-row: span 2;
      height: 415px;
    }
  
    .team-overlay {
      padding: 15px;
    }
  
    .team-name {
      font-size: 15px;
    }
  
    .team-position {
      font-size: 12px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .team-section {
      padding: 0 0 30px 0;
    }
    
    .team-heading-section {
      padding: 30px 15px 15px 15px;
    }
    
    .team-main-heading {
      font-size: 18px;
    }
  
    .team-container {
      padding: 0 15px;
    }
  
    .team-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  
    .team-card {
      height: 300px;
    }
  
    .team-card-large {
      grid-row: span 1;
      height: 300px;
    }
  
    .team-name {
      font-size: 16px;
    }
  
    .team-position {
      font-size: 13px;
    }
  }
  
  /* ===================================
     OUR DEPARTMENTS RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .departments-container {
      padding: 0 40px;
    }
  
    .department-item {
      padding: 25px 0;
    }
  
    .department-header {
      gap: 20px;
    }
  
    .department-description {
      font-size: 15px;
      padding-left: 38px;
    }
    
    .departments-main-heading {
      font-size: 32px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .departments-section {
      padding: 0 0 60px 0;
    }
    
    .departments-heading-section {
      padding: 60px 0 30px 0;
    }
    
    .departments-main-heading {
      font-size: 30px;
    }
  
    .departments-container {
      flex-direction: column;
    }
  
    .department-item {
      padding: 25px 0;
    }
  
    .department-header {
      gap: 20px;
    }
  
    .department-description {
      font-size: 15px;
      padding-left: 38px;
    }
  
    .department-name {
      font-size: 18px;
    }
  }
  
  /* iPad Pro Landscape */
  @media (min-width: 1025px) and (max-width: 1366px) {
    .departments-container {
      padding: 0 50px;
    }
    
    .departments-main-heading {
      font-size: 35px;
    }
  }
  
  /* iPad Landscape */
  @media (min-width: 1024px) and (max-width: 1024px) {
    .departments-container {
      padding: 0 40px;
    }
    
    .departments-main-heading {
      font-size: 30px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .departments-section {
      padding: 0 0 50px 0;
    }
    
    .departments-heading-section {
      padding: 50px 0 25px 0;
    }
    
    .departments-main-heading {
      font-size: 26px;
    }
  
    .departments-container {
      padding: 0 30px;
      flex-direction: column;
    }
  
    .department-item {
      padding: 22px 0;
    }
  
    .department-header {
      gap: 20px;
    }
  
    .department-number {
      font-size: 16px;
    }
  
    .department-name {
      font-size: 17px;
    }
  
    .department-toggle {
      width: 36px;
      height: 36px;
    }
  
    .department-description {
      font-size: 14px;
      padding-left: 36px;
    }
  }
  
  /* iPad Mini Portrait */
  @media (max-width: 820px) and (min-width: 769px) {
    .departments-container {
      padding: 0 25px;
    }
    
    .departments-main-heading {
      font-size: 25px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .departments-section {
      padding: 0 0 40px 0;
    }
    
    .departments-heading-section {
      padding: 40px 20px 20px 20px;
    }
    
    .departments-main-heading {
      font-size: 22px;
    }
  
    .departments-container {
      padding: 0 20px;
      flex-direction: column;
    }
  
    .department-item {
      padding: 20px 0;
    }
  
    .department-header {
      gap: 15px;
    }
  
    .department-number {
      font-size: 15px;
    }
  
    .department-name {
      font-size: 16px;
    }
  
    .department-toggle {
      width: 34px;
      height: 34px;
    }
  
    .department-toggle svg {
      width: 20px;
      height: 20px;
    }
  
    .department-description {
      font-size: 14px;
      padding-left: 30px;
      margin-top: 20px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .departments-section {
      padding: 0 0 30px 0;
    }
    
    .departments-heading-section {
      padding: 30px 15px 15px 15px;
    }
    
    .departments-main-heading {
      font-size: 18px;
    }
  
    .departments-container {
      padding: 0 15px;
    }
  
    .department-item {
      padding: 18px 0;
    }
  
    .department-header {
      gap: 12px;
    }
  
    .department-number {
      font-size: 14px;
    }
  
    .department-name {
      font-size: 15px;
    }
  
    .department-toggle {
      width: 32px;
      height: 32px;
    }
  
    .department-toggle svg {
      width: 18px;
      height: 18px;
    }
  
    .department-description {
      font-size: 13px;
      padding-left: 26px;
      margin-top: 18px;
    }
  }
  
  /* ===================================
     OUR CLIENTS SECTION
     =================================== */
  .clients-section {
    width: 100%;
    background-color: #f5f5f5;
    padding: 80px 0;
    overflow: hidden;
  }
  
  .clients-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .clients-slider-wrapper {
    overflow: hidden;
    width: 100%;
  }
  
  .clients-slider-track {
    display: flex;
    gap: 40px;
    width: fit-content;
    will-change: transform;
    transition: none;
  }
  
  .clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 10px;
    align-items: center;
    justify-content: flex-start;
  }
  
  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    min-height: 100px;
    min-width: 150px;
    flex-shrink: 0;
  }
  
  .client-logo img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
  }
  
  /* ===================================
     OUR CLIENTS RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .clients-container {
      padding: 0 40px;
    }
  
    .clients-slider-track {
      gap: 35px;
    }
  
    .client-logo {
      min-width: 140px;
    }
  
    .client-logo img {
      max-width: 140px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .clients-section {
      padding: 60px 0;
    }
  
    .clients-slider-track {
      gap: 30px;
    }
  
    .client-logo {
      min-width: 130px;
    }
  
    .client-logo img {
      max-width: 130px;
      max-height: 70px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .clients-section {
      padding: 50px 0;
    }
  
    .clients-container {
      padding: 0 30px;
    }
  
    .clients-slider-track {
      gap: 25px;
    }
  
    .client-logo {
      min-height: 90px;
      min-width: 120px;
      padding: 15px;
    }
  
    .client-logo img {
      max-width: 120px;
      max-height: 70px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .clients-section {
      padding: 40px 0;
    }
  
    .clients-container {
      padding: 0 20px;
    }
  
    .clients-slider-track {
      gap: 20px;
    }
  
    .client-logo {
      min-width: 110px;
      min-height: 100px;
      padding: 15px;
    }
  
    .client-logo img {
      max-width: 110px;
      max-height: 70px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .clients-section {
      padding: 30px 0;
    }
  
    .clients-container {
      padding: 0 15px;
    }
  
    .clients-slider-track {
      gap: 15px;
    }
  
    .client-logo {
      min-width: 100px;
      min-height: 90px;
      padding: 12px;
    }
  
    .client-logo img {
      max-width: 100px;
      max-height: 60px;
    }
  }
  
  /* ===================================
     PROJECTS PAGE
     =================================== */
  .projects-page {
    width: 100%;
    min-height: 100vh;
    background-color: #2c2520;
    padding: 100px 0 80px 0;
  }
  
  .projects-page-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .projects-page-header {
    margin-bottom: 60px;
  }
  
  .back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    float: left;
  }
  
  .back-button:hover {
    opacity: 0.7;
  }
  
  .back-button svg {
    flex-shrink: 0;
  }
  
  .projects-page-title {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #8d846b;
    margin: 0;
    text-align: center;
    letter-spacing: 2px;
  }
  
  .projects-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .project-card {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 0px;
    cursor: pointer;
    text-decoration: none;
    display: block;
  }
  
  .project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(25px);
  }
  
  .project-name {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    line-height: 100%;
  }
  
  /* ===================================
     PROJECTS PAGE RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .projects-page-container {
      padding: 0 40px;
    }
  
    .projects-page-title {
      font-size: 42px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .projects-page {
      padding: 50px 0 60px 0;
    }
  
    .projects-page-header {
      margin-bottom: 50px;
    }
  
    .projects-page-title {
      font-size: 36px;
    }
  
    .projects-page-grid {
      gap: 25px;
    }
  
    .project-card {
      height: 300px;
    }
  
    .project-name {
      font-size: 20px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .projects-page-container {
      padding: 0 30px;
    }
  
    .projects-page-title {
      font-size: 32px;
    }
  
    .project-card {
      height: 280px;
    }
  
    .project-name {
      font-size: 19px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .projects-page {
      padding: 40px 0 50px 0;
    }
  
    .projects-page-container {
      padding: 0 20px;
    }
  
    .projects-page-header {
      margin-bottom: 40px;
    }
  
    .back-button {
      font-size: 16px;
      margin-bottom: 30px;
    }
  
    .projects-page-title {
      font-size: 28px;
      letter-spacing: 1px;
    }
  
    .projects-page-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .project-card {
      height: 250px;
    }
  
    .project-overlay {
      padding: 20px;
    }
  
    .project-name {
      font-size: 18px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .projects-page {
      padding: 30px 0 40px 0;
    }
  
    .projects-page-container {
      padding: 0 15px;
    }
  
    .back-button {
      font-size: 15px;
      margin-bottom: 25px;
    }
  
    .projects-page-title {
      font-size: 24px;
    }
  
    .projects-page-grid {
      gap: 15px;
    }
  
    .project-card {
      height: 220px;
    }
  
    .project-overlay {
      padding: 15px;
    }
  
    .project-name {
      font-size: 16px;
    }
  }
  
  /* ===================================
     GALLERY PAGE
     =================================== */
  .gallery-page {
    width: 100%;
    min-height: 100vh;
    background-color: #2c2520;
    padding: 100px 0 80px 0;
  }
  
  .gallery-page-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .gallery-page-header {
    margin-bottom: 15px;
  }
  
  .gallery-page-title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #8d846b;
    margin: 0 0 15px 0;
    text-align: center;
    letter-spacing: 2px;
  }
  
  .gallery-page-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-align: left;
    margin-bottom: 15px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .gallery-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0px;
  }
  
  .gallery-item:last-child {
    grid-column: 1 / -1;
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .gallery-image {
    transform: scale(1.05);
  }
  
  /* ===================================
     GALLERY PAGE RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .gallery-page-container {
      padding: 0 40px;
    }
  
    .gallery-page-title {
      font-size: 36px;
    }
  
    .gallery-item {
      height: 350px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .gallery-page {
      padding: 50px 0 60px 0;
    }
  
    .gallery-page-header {
      margin-bottom: 40px;
    }
  
    .gallery-page-title {
      font-size: 32px;
    }
  
    .gallery-page-subtitle {
      font-size: 16px;
    }
  
    .gallery-item {
      height: 300px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .gallery-page-container {
      padding: 0 30px;
    }
  
    .gallery-page-title {
      font-size: 28px;
    }
  
    .gallery-item {
      height: 280px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .gallery-page {
      padding: 40px 0 50px 0;
    }
  
    .gallery-page-container {
      padding: 0 20px;
    }
  
    .gallery-page-header {
      margin-bottom: 30px;
    }
  
    .gallery-page-title {
      font-size: 24px;
      letter-spacing: 1px;
    }
  
    .gallery-page-subtitle {
      font-size: 15px;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  
    .gallery-item {
      height: 250px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .gallery-page {
      padding: 30px 0 40px 0;
    }
  
    .gallery-page-container {
      padding: 0 15px;
    }
  
    .gallery-page-title {
      font-size: 20px;
    }
  
    .gallery-page-subtitle {
      font-size: 14px;
    }
  
    .gallery-grid {
      gap: 10px;
    }
  
    .gallery-item {
      height: 220px;
    }
  }
  
  /* ===================================
     CONTACT SECTION
     =================================== */
  .contact-section {
    width: 100%;
    background-color: #2c2520;
    padding: 80px 0 0 0;
  }
  
  .contact-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
  }
  
  .contact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  
  .contact-title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
  }
  
  .contact-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
  }
  
  .contact-text a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .contact-text a:hover {
    opacity: 0.7;
  }
  
  .contact-map {
    width: 100%;
    height: 450px;
    margin: 0;
  }
  
  .contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  /* ===================================
     CONTACT SECTION RESPONSIVE STYLES
     =================================== */
  
  /* Desktop */
  @media (max-width: 1200px) {
    .contact-container {
      padding: 0 40px;
    }
  
    .contact-grid {
      gap: 30px;
    }
  
    .contact-map {
      height: 350px;
    }
  }
  
  /* Tablet Landscape */
  @media (max-width: 992px) {
    .contact-section {
      padding: 60px 0 0 0;
    }
  
    .contact-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 30px;
      margin-bottom: 50px;
    }
  }
  
  /* iPad Portrait */
  @media (min-width: 769px) and (max-width: 834px) {
    .contact-section {
      padding: 50px 0 0 0;
    }
  
    .contact-container {
      padding: 0 30px;
    }
  
    .contact-grid {
      gap: 35px 25px;
      margin-bottom: 40px;
    }
  
    .contact-icon {
      width: 50px;
      height: 50px;
    }
  
    .contact-icon img {
      width: 35px;
      height: 35px;
    }
  
    .contact-title {
      font-size: 18px;
    }
  
    .contact-text {
      font-size: 15px;
    }
  
    .contact-map {
      height: 300px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .contact-section {
      padding: 40px 0 0 0;
    }
  
    .contact-container {
      padding: 0 20px;
    }
  
    .contact-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 35px 20px;
      margin-bottom: 40px;
    }
  
    .contact-icon {
      width: 50px;
      height: 50px;
    }
  
    .contact-icon img {
      width: 35px;
      height: 35px;
    }
  
    .contact-title {
      font-size: 17px;
    }
  
    .contact-text {
      font-size: 14px;
    }
  
    .contact-map {
      height: 300px;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .contact-section {
      padding: 30px 0 0 0;
    }
  
    .contact-container {
      padding: 0 15px;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 30px;
    }
  
    .contact-icon {
      width: 45px;
      height: 45px;
    }
  
    .contact-icon img {
      width: 32px;
      height: 32px;
    }
  
    .contact-title {
      font-size: 16px;
    }
  
    .contact-text {
      font-size: 14px;
    }
  
    .contact-map {
      height: 250px;
    }
  }
  