/* Base Styles */
 :root {
     --primary-color: #FFA500;
     --secondary-color: #2C3E50;
     --accent-color: #E67E22;
     --text-color: #333333;
     --light-text: #FFFFFF;
     --background-color: #FFFFFF;
     --section-padding: 100px 0;
     --transition-speed: 0.3s;
     --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     --border-radius: 10px;
}
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 html {
     scroll-behavior: smooth;
     font-size: 16px;
}
 @media (max-width: 768px) {
     html {
         font-size: 14px;
    }
}
 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: var(--text-color);
     overflow-x: hidden;
}
/* Typography */
 h1, h2, h3, h4, h5, h6 {
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1rem;
}
 h1 {
     font-size: 3.5rem;
     margin-bottom: 1.5rem;
}
 h2 {
     font-size: 2.5rem;
     margin-bottom: 2rem;
}
 @media (max-width: 768px) {
     h1 {
         font-size: 2.5rem;
    }
     h2 {
         font-size: 2rem;
    }
}
/* Navigation */
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     transition: all var(--transition-speed);
}
 .navbar.scrolled {
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 1rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .logo {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--secondary-color);
}
 .logo-icon {
     color: var(--primary-color);
}
 .nav-links {
     display: flex;
     gap: 2rem;
     list-style: none;
}
 .nav-links a {
     text-decoration: none;
     color: var(--text-color);
     font-weight: 500;
     transition: color var(--transition-speed);
}
 .nav-links a:hover {
     color: var(--primary-color);
}
/* Hero Section */
 .hero {
     height: 100vh;
     background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9));
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--light-text);
     padding: 2rem;
}
 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('/assets/images/image2.jpeg?height=1080&width=1920') center/cover no-repeat;
     z-index: -1;
}
 .hero-content {
     max-width: 800px;
     padding: 0 1rem;
     position: relative;
     z-index: 1;
}
 .hero-buttons {
     display: flex;
     gap: 1.5rem;
     justify-content: center;
     margin-top: 2rem;
}
 @media (max-width: 768px) {
     .hero-content {
         padding: 0;
    }
     .hero-buttons {
         flex-direction: column;
         width: 100%;
         max-width: 300px;
         margin: 2rem auto 0;
         gap: 1rem;
    }
     .hero-buttons .btn {
         width: 100%;
         text-align: center;
    }
}
/* Buttons */
 .btn {
     display: inline-block;
     padding: 1rem 2rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: all var(--transition-speed);
     border: none;
     cursor: pointer;
     min-width: 160px;
     text-align: center;
}
 .btn-primary {
     background-color: var(--primary-color);
     color: var(--light-text);
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
 .btn-primary:hover {
     background-color: #e69500;
     transform: translateY(-2px);
     box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
 .btn-secondary {
     background-color: transparent;
     border: 2px solid var(--light-text);
     color: var(--light-text);
}
 .btn-secondary:hover {
     background-color: var(--light-text);
     color: var(--secondary-color);
     transform: translateY(-2px);
}
/* Stats Section */
 .stats-section {
     padding: 4rem 0;
     background: var(--secondary-color);
     color: var(--light-text);
}
 .stats-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     padding: 0 1rem;
}
 .stat-item {
     text-align: center;
     padding: 2rem;
     background: rgba(255, 255, 255, 0.1);
     border-radius: var(--border-radius);
     transition: transform var(--transition-speed);
}
 .stat-item:hover {
     transform: translateY(-5px);
}
 .stat-item span {
     font-size: 3rem;
     font-weight: 700;
     color: var(--primary-color);
     display: block;
     margin-bottom: 0.5rem;
}
/* Services Section */
 .services-section {
     padding: var(--section-padding);
     background-color: var(--background-color);
}
 .section-header {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 4rem;
     padding: 0 1rem;
}
 .services-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
     padding: 0 1rem;
}
 .service-card {
     padding: 2.5rem 2rem;
     text-align: center;
     background-color: #fff;
     border-radius: var(--border-radius);
     box-shadow: var(--card-shadow);
     transition: all var(--transition-speed);
}
 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
 .service-card i {
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 1.5rem;
}
 .service-card h3 {
     margin-bottom: 1rem;
     color: var(--secondary-color);
}
/* Projects Section */
 .projects-section {
     padding: var(--section-padding);
     background: var(--secondary-color);
     color: var(--light-text);
     position: relative;
}
 .project-showcase {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1rem;
}
 .project-card {
     background-color: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: var(--border-radius);
     overflow: hidden;
     margin-bottom: 3rem;
     transition: all var(--transition-speed);
}
 .project-card:hover {
     transform: translateY(-10px);
}
 .project-image {
     height: 400px;
     overflow: hidden;
}
 .project-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform var(--transition-speed);
}
 .project-info {
     padding: 2rem;
}
 .project-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
}
/* Team Section */
 .team-section {
     padding: var(--section-padding);
     background-color: var(--background-color);
}
 .team-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 3rem;
     padding: 0 1rem;
}
 .team-member {
     background: #fff;
     border-radius: var(--border-radius);
     box-shadow: var(--card-shadow);
     overflow: hidden;
     transition: all var(--transition-speed);
}
 .team-member:hover {
     transform: translateY(-10px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
 .member-image {
     width: 200px;
     height: 200px;
     margin: 2rem auto;
     border-radius: 50%;
     overflow: hidden;
     border: 3px solid var(--primary-color);
}
 .member-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}
 .member-info {
     padding: 2rem;
     text-align: center;
}
 .position {
     color: var(--primary-color);
     font-weight: 600;
     margin-bottom: 1rem;
}
 .bio-preview {
     margin-bottom: 1rem;
     color: #666;
}
 .bio-full {
     display: none;
     margin-bottom: 1rem;
     color: #666;
}
 .bio-toggle {
     background: none;
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
     padding: 0.5rem 1.5rem;
     border-radius: 25px;
     cursor: pointer;
     font-weight: 600;
     transition: all var(--transition-speed);
}
 .bio-toggle:hover {
     background: var(--primary-color);
     color: white;
}
/* Testimonials Section */
 .testimonials-section {
     padding: var(--section-padding);
     background-color: #f8f9fa;
}
 .testimonials-slider {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1rem;
}
 .testimonial-card {
     background: var(--light-text);
     border-radius: var(--border-radius);
     box-shadow: var(--card-shadow);
     padding: 3rem 2rem;
     margin: 1rem;
     position: relative;
     transition: all var(--transition-speed);
}
 .testimonial-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
 .testimonial-content {
     position: relative;
     padding: 1rem 0;
}
 .testimonial-content i {
     color: var(--primary-color);
     font-size: 2.5rem;
     margin-bottom: 1.5rem;
     display: block;
}
 .testimonial-content p {
     font-size: 1.1rem;
     line-height: 1.8;
     margin-bottom: 1.5rem;
     color: #555;
     font-style: italic;
}
 .testimonial-author {
     border-top: 1px solid #eee;
     padding-top: 1.5rem;
     margin-top: 1.5rem;
}
 .author-name {
     font-weight: 700;
     color: var(--secondary-color);
     margin-bottom: 0.25rem;
     font-size: 1.1rem;
}
 .author-position {
     color: var(--primary-color);
     font-size: 0.9rem;
}
/* Contact Section */
 .contact-section {
     padding: var(--section-padding);
     background-color: var(--background-color);
}
 .contact-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1rem;
}
 .contact-info {
     background: var(--secondary-color);
     color: var(--light-text);
     padding: 3rem 2rem;
     border-radius: var(--border-radius);
     margin-bottom: 3rem;
     box-shadow: var(--card-shadow);
}
 .contact-details {
     margin-top: 2rem;
}
 .contact-item {
     display: flex;
     align-items: center;
     margin-bottom: 1.5rem;
     gap: 1rem;
}
 .contact-item i {
     font-size: 1.5rem;
     color: var(--primary-color);
     width: 2.5rem;
     height: 2.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
}
 .contact-item p {
     margin: 0;
     font-size: 1.1rem;
}
 .contact-form {
     background: #fff;
     padding: 3rem 2rem;
     border-radius: var(--border-radius);
     box-shadow: var(--card-shadow);
}
/* Form Styling */
 .form-group {
     position: relative;
     margin-bottom: 2rem;
}
 .form-group input, .form-group textarea, .form-group select {
     width: 100%;
     padding: 1rem;
     border: 2px solid #eee;
     border-radius: var(--border-radius);
     font-size: 1rem;
     transition: all var(--transition-speed);
     background: #fff;
}
 .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
     border-color: var(--primary-color);
     outline: none;
     box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}
 .form-group label {
     position: absolute;
     left: 1rem;
     top: 1rem;
     padding: 0 0.5rem;
     color: #666;
     transition: all var(--transition-speed);
     pointer-events: none;
     background: #fff;
}
 .form-group input:focus ~ label, .form-group input:valid ~ label, .form-group textarea:focus ~ label, .form-group textarea:valid ~ label {
     top: -0.5rem;
     left: 0.5rem;
     font-size: 0.8rem;
     color: var(--primary-color);
}
 .form-group textarea {
     min-height: 120px;
     resize: vertical;
}
/* Footer */
 .footer {
     background-color: var(--secondary-color);
     color: var(--light-text);
     padding: 4rem 0 0;
}
 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     padding: 0 2rem;
}
 .footer-section {
     padding: 1rem;
}
 .footer-section h3 {
     color: var(--primary-color);
     margin-bottom: 1.5rem;
     font-size: 1.2rem;
     position: relative;
}
 .footer-section h3::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -0.5rem;
     width: 50px;
     height: 2px;
     background-color: var(--primary-color);
}
 .footer-section ul {
     list-style: none;
}
 .footer-section ul li {
     margin-bottom: 0.75rem;
}
 .footer-section ul li a {
     color: var(--light-text);
     text-decoration: none;
     transition: all var(--transition-speed);
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .footer-section ul li a:hover {
     color: var(--primary-color);
     padding-left: 0.5rem;
}
 .social-links {
     display: flex;
     gap: 1.5rem;
     margin-top: 1.5rem;
}
 .social-links a {
     color: var(--light-text);
     font-size: 1.5rem;
     transition: all var(--transition-speed);
     background: rgba(255, 255, 255, 0.1);
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
}
 .social-links a:hover {
     color: var(--primary-color);
     background: rgba(255, 255, 255, 0.2);
     transform: translateY(-3px);
}
 .footer-bottom {
     text-align: center;
     padding: 2rem;
     margin-top: 4rem;
     background: rgba(0, 0, 0, 0.2);
}
/* Scroll Indicator */
 .scroll-indicator {
     position: absolute;
     bottom: 2rem;
     left: 50%;
     transform: translateX(-50%);
     text-align: center;
     color: var(--light-text);
     animation: bounce 2s infinite;
}
 .mouse {
     width: 26px;
     height: 40px;
     border: 2px solid var(--light-text);
     border-radius: 20px;
     position: relative;
     margin: 0 auto 1rem;
}
 .mouse::before {
     content: '';
     position: absolute;
     left: 50%;
     top: 6px;
     transform: translateX(-50%);
     width: 4px;
     height: 8px;
     background: var(--light-text);
     border-radius: 2px;
     animation: scroll 2s infinite;
}
/* Animations */
 @keyframes scroll {
     0% {
         transform: translate(-50%, 0);
         opacity: 1;
    }
     100% {
         transform: translate(-50%, 15px);
         opacity: 0;
    }
}
 @keyframes bounce {
     0%, 20%, 50%, 80%, 100% {
         transform: translateY(0);
    }
     40% {
         transform: translateY(-10px);
    }
     60% {
         transform: translateY(-5px);
    }
}
 .fade-in {
     opacity: 0;
     transform: translateY(20px);
     animation: fadeIn 0.6s ease-out forwards;
}
 .fade-in-delay {
     opacity: 0;
     transform: translateY(20px);
     animation: fadeIn 0.6s ease-out forwards;
     animation-delay: 0.3s;
}
 .fade-up {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease-out;
}
 .fade-up.visible {
     opacity: 1;
     transform: translateY(0);
}
 @keyframes fadeIn {
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
/* Mobile Responsive Adjustments */
 @media (max-width: 768px) {
     .section-padding {
         padding: 60px 0;
    }
     .nav-links {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: rgba(255, 255, 255, 0.95);
         padding: 1rem;
         flex-direction: column;
         text-align: center;
    }
     .nav-links.active {
         display: flex;
    }
     .nav-toggle {
         display: block;
         cursor: pointer;
    }
     .nav-toggle span {
         display: block;
         width: 25px;
         height: 3px;
         background-color: var(--secondary-color);
         margin: 5px 0;
         transition: all var(--transition-speed);
    }
     .nav-toggle.active span:nth-child(1) {
         transform: rotate(45deg) translate(5px, 5px);
    }
     .nav-toggle.active span:nth-child(2) {
         opacity: 0;
    }
     .nav-toggle.active span:nth-child(3) {
         transform: rotate(-45deg) translate(7px, -6px);
    }
     .contact-container {
         grid-template-columns: 1fr;
    }
     .contact-info {
         margin-bottom: 2rem;
    }
     .footer-content {
         grid-template-columns: 1fr;
         gap: 2rem;
         text-align: center;
    }
     .footer-section h3::after {
         left: 50%;
         transform: translateX(-50%);
    }
     .footer-section ul li a {
         justify-content: center;
    }
     .social-links {
         justify-content: center;
    }
}
/* Additional Mobile Enhancements */
 @media (max-width: 480px) {
     .btn {
         padding: 0.875rem 1.5rem;
         font-size: 0.9rem;
    }
     .contact-item i {
         font-size: 1.25rem;
    }
     .contact-item p {
         font-size: 1rem;
    }
     .testimonial-content p {
         font-size: 1rem;
    }
     .footer-section {
         padding: 0.5rem;
    }
     .service-card, .project-card, .team-member {
         margin: 0 1rem;
    }
}
/* Innovation Section Styling */
 .innovation-section {
     padding: var(--section-padding);
     background: linear-gradient(rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.95)), url('/assets/images/image2.jpeg?height=1080&width=1920') center/cover fixed;
     color: var(--light-text);
     position: relative;
}
 .innovation-content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1rem;
}
 .innovation-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
}
 .innovation-item {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: var(--border-radius);
     padding: 2.5rem 2rem;
     text-align: center;
     transition: all var(--transition-speed);
     border: 1px solid rgba(255, 255, 255, 0.1);
}
 .innovation-item:hover {
     transform: translateY(-10px);
     background: rgba(255, 255, 255, 0.15);
     border-color: var(--primary-color);
}
 .innovation-item i {
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 1.5rem;
     background: rgba(255, 165, 0, 0.1);
     width: 80px;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     margin: 0 auto 1.5rem;
     transition: all var(--transition-speed);
}
 .innovation-item:hover i {
     background: rgba(255, 165, 0, 0.2);
     transform: scale(1.1);
}
 .innovation-item h3 {
     color: var(--light-text);
     font-size: 1.5rem;
     margin-bottom: 1rem;
     position: relative;
     padding-bottom: 1rem;
}
 .innovation-item h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 50px;
     height: 2px;
     background: var(--primary-color);
}
 .innovation-item p {
     color: rgba(255, 255, 255, 0.8);
     font-size: 1rem;
     line-height: 1.6;
}
/* Projects Section Styling */
 .projects-section {
     padding: var(--section-padding);
     background: var(--secondary-color);
     color: var(--light-text);
     position: relative;
}
 .project-showcase {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1rem;
}
 .project-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: var(--border-radius);
     overflow: hidden;
     margin-bottom: 3rem;
     transition: all var(--transition-speed);
     border: 1px solid rgba(255, 255, 255, 0.1);
}
 .project-card:hover {
     transform: translateY(-10px);
     border-color: var(--primary-color);
}
 .project-image {
     height: 400px;
     overflow: hidden;
     position: relative;
}
 .project-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform var(--transition-speed);
}
 .project-card:hover .project-image img {
     transform: scale(1.1);
}
 .project-info {
     padding: 2rem;
     background: rgba(0, 0, 0, 0.2);
}
 .project-info h3 {
     font-size: 1.8rem;
     margin-bottom: 1rem;
     color: var(--primary-color);
}
 .project-info p {
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 1.5rem;
     font-size: 1.1rem;
     line-height: 1.6;
}
 .project-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
}
 .project-item {
     position: relative;
     overflow: hidden;
     border-radius: var(--border-radius);
     aspect-ratio: 4/3;
     border: 1px solid rgba(255, 255, 255, 0.1);
}
 .project-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all var(--transition-speed);
}
 .project-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 2rem;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
     transform: translateY(100%);
     transition: all var(--transition-speed);
}
 .project-item:hover {
     border-color: var(--primary-color);
}
 .project-item:hover img {
     transform: scale(1.1);
}
 .project-item:hover .project-overlay {
     transform: translateY(0);
}
 .project-overlay h4 {
     color: var(--primary-color);
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
}
 .project-overlay p {
     color: rgba(255, 255, 255, 0.9);
     font-size: 1rem;
}
 .btn-outline {
     display: inline-block;
     padding: 0.75rem 1.5rem;
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
     border-radius: 25px;
     text-decoration: none;
     font-weight: 600;
     transition: all var(--transition-speed);
     background: transparent;
}
 .btn-outline:hover {
     background: var(--primary-color);
     color: var(--light-text);
     transform: translateY(-2px);
}
 @media (max-width: 768px) {
     .innovation-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
    }
     .project-grid {
         grid-template-columns: 1fr;
    }
     .project-image {
         height: 300px;
    }
     .project-info {
         padding: 1.5rem;
    }
     .project-info h3 {
         font-size: 1.5rem;
    }
     .project-overlay {
         padding: 1.5rem;
    }
     .project-overlay h4 {
         font-size: 1.3rem;
    }
}
