               /* Logo and Company Info */
               .site-logo {
                height:120px;
                width: auto;
              }
              
              .company-info {
                display: flex;
                flex-direction: column;
                align-items: flex-start; /* Ensures proper alignment */
                margin-top:20px;
              }
              
              .company-name {
                font-family:Citadel Script;
                font-size: 35px;
                font-weight: bold;
                margin: 0;
                white-space: nowrap; /* Prevents breaking on smaller screens */
                color:#29741d;
              }
              
              .punch-line-image {
                height: 20px;
                width: auto;
                margin-top: 5px;
                align-self: flex-end ; /* Aligns punch line with company name */
              }
              /* Responsive Styles */
              @media (max-width: 768px) {
                .site-logo {
                    height: 60px;
                }
              
                .company-name {
                    font-size: 20px;
                }
              
                .punch-line-image {
                    height: 25px;
                    align-self: flex-end ;
                }
              }
              
              @media (max-width: 576px) {
                .site-logo {
                    height: 50px;
                }
              
                .company-name {
                    font-size: 18px;
                    text-align: center;
                }
              
                .punch-line-image {
                    height: 20px;
                    align-self: flex-end ;
                }
              
                .company-info {
                     /* Center align for mobile */
                    align-items: flex-start;
                }
              }

        /* Navigation Styles */
        .main-nav {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: clamp(15px, 2vw, 25px);
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #29741d;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 10px 0;
            display: block;
            font-size: clamp(0.8rem, 1.2vw, 1rem);
        }

        .nav-links a:hover {
            color:#e74c3c;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background:#e74c3c;
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            width: 220px;
            box-shadow: var(--shadow);
            border-radius: 5px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }

        .dropdown-content li {
            margin: 0;
            padding: 8px 20px;
        }

        .dropdown-content a {
            display: block;
            color: var(--text-color);
            white-space: nowrap;
            padding: 5px 0;
            font-size: 0.9rem;
        }

        .dropdown-content a:hover {
            color: #29741d;
            padding-left: 10px;
        }

        .dropdown-content a::after {
            display: none;
        }

        .sub-dropdown {
            position: relative;
        }

        .sub-dropdown-content {
            position: absolute;
            left: 100%;
            top: -15px;
            background-color: white;
            width: 220px;
            box-shadow: var(--shadow);
            border-radius: 5px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .sub-dropdown:hover .sub-dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateX(5px);
        }

        .dropdown-arrow {
            margin-left: 5px;
            transition: var(--transition);
            font-size: 0.8rem;
        }

        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .sub-dropdown-arrow {
            margin-left: auto;
            transition: all 0.3s ease;
            font-size: 0.8rem;
        }

        .sub-dropdown:hover .sub-dropdown-arrow {
            transform: rotate(90deg);
        }
         /* Mobile Menu */
         .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: #29741d;
            transition: all 0.3s ease;
            margin-left: 20px;
        }

        .menu-toggle:hover {
            color:  #e74c3c;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                transition: var(--transition);
                overflow-y: auto;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 12px 0;
                width: 80%;
                text-align: center;
            }
            
            .dropdown-content {
                position: static;
                width: 100%;
                box-shadow: none;
                padding: 10px 0 0 0;
                opacity: 1;
                visibility: visible;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                background-color: rgba(0, 0, 0, 0.03);
                border-radius: 5px;
                margin-top: 10px;
            }
            
            .dropdown.active .dropdown-content {
                max-height: 1000px;
            }
            
            .sub-dropdown-content {
                position: static;
                width: 100%;
                box-shadow: none;
                padding: 10px 0 0 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                background-color: rgba(0, 0, 0, 0.05);
                margin-top: 10px;
            }
            
            .sub-dropdown.active .sub-dropdown-content {
                max-height: 1000px;
            }
            
            .dropdown-arrow, .sub-dropdown-arrow {
                transition: transform 0.3s ease;
            }
            
            .dropdown.active .dropdown-arrow {
                transform: rotate(180deg);
            }
            
            .sub-dropdown.active .sub-dropdown-arrow {
                transform: rotate(90deg);
            }}

        
        /* Language Selector */
        .language-selector {
            margin-left: clamp(15px, 2vw, 30px);
            position: relative;
        }

          /* Header Styles */
          header {
            background-color: white;
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;;
        }

        .header-scrolled {
            padding: 10px 5%;
            background-color: rgba(255, 255, 255, 0.98);
        }
         /* Scroll Animation for Elements */
         .animated {
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
   /* Orientation-specific styles */
   @media screen and (orientation: portrait) {
    .hero {
        min-height: 100vh;
    }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 150vh;
    }
}

/* High DPI/Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
    /* Any high-DPI specific styles */
}


/* Footer Styles */
.footer {
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    z-index: 2;
  }
  
  .footer-content {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.3s, transform 0.3s;
  }
  
  .social-icons a:hover {
    color: #00acee;
    transform: scale(1.2);
  }
  
  /* Responsive Footer */
  @media (max-width: 480px) {
    .footer p {
      font-size: 0.85rem;
    }
  
    .social-icons a {
      font-size: 1.2rem;
    }
  }

  

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: white;
  height: 100vh;
  overflow-x: hidden;
    background-color: #2c3e50;
 
}

.about-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('images/about.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  animation: slideUp 1.5s ease-out forwards;
}

.about-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #eee;
}

/* Animations */
@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fade {
  opacity: 0;
  animation: slideUp 1s forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-content {
    padding: 0 10px;
  }

  .about-content h1 {
    font-size: 1.6rem;
  }
}
/* Footer Styles */
.footer {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  z-index: 2;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #00acee;
  transform: scale(1.2);
}

/* Responsive Footer */
@media (max-width: 480px) {
  .footer p {
    font-size: 0.85rem;
  }

  .social-icons a {
    font-size: 1.2rem;
  }
}
#ceo-card{
  background-image:url('images/gallery5.jpeg');
}
.ceo-info-card {

  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  text-align: center;
  margin-top: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
  margin-bottom: 10px;
 
}

.ceo-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.ceo-info-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #333;
}

.ceo-info-card p {
  margin: 5px 0;
  color: #555;
  font-size: 1rem;
}
/* Language Selector */
.language-selector {
  margin-left: clamp(15px, 2vw, 30px);
  position: relative;
}

.language-selector select {
  padding: 8px 35px 8px 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background-color: white;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
}

.language-selector select:hover {
  border-color: var(--secondary-color);
}

.language-selector::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: var(--text-color);
}
  /* Header Styles */
  header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.header-scrolled {
    padding: 10px 5%;
    background-color: rgba(255, 255, 255, 0.98);
}