  :root {
            --primary-color: #2e7d32;
            --secondary-color: #4caf50;
            --accent-color: #ff9800;
            --text-color: #2c3e50;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            --accent-gradient: linear-gradient(135deg, #ff9800, #ffb74d, #ff9800);
            --green-gradient: linear-gradient(135deg, #2e7d32, #4caf50, #2e7d32);
            --premium-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --gold-gradient: linear-gradient(135deg, #ff9800, #ffb74d, #ff9800);
            --gold-color: #ff9800;
            --dark-green: #1b5e20;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--white);
            color: var(--text-color);
            overflow-x: hidden;
            line-height: 1.7;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: transparent;
            transition: var(--transition);
            padding: 5px 0 0;
        }

        .header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 2px 0 0;
        }

        .header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 5%;
        }

        .logo-section {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: center;
            margin-bottom: 2px;
            position: relative;
        }

        .logo-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
        }

        .logo {
            margin: 0 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo img {
            height: 55px;
            transition: var(--transition);
            filter: brightness(0) invert(1);
        }

        .logo-text {
            color: white;
            font-weight: bold;
            margin-top: 3px;
            font-size: 1.1rem;
        }

        .header.scrolled .logo img {
            filter: none;
        }

        .header.scrolled .logo-text {
            color: var(--primary-color);
        }

        .nav-sections {
            display: flex;
            width: 100%;
            justify-content: space-between;
            margin-top: 0;
            padding-top: 0;
        }

        .nav-left, .nav-right {
            display: flex;
            gap: 25px;
        }

        .nav-item {
            position: relative;
            padding: 8px 0 6px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            color: var(--white);
            font-size: 1rem;
            line-height: 1.2;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .header.scrolled .nav-item {
            color: var(--text-color);
        }

        .nav-item:hover {
            color: var(--accent-color);
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }

        .nav-item:hover::after {
            width: 100%;
        }

        .nav-item i {
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .nav-item:hover i {
            transform: translateX(-3px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--white);
            min-width: 250px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 1;
            border-radius: 5px;
            overflow: hidden;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-item {
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            color: var(--text-color);
            transition: var(--transition);
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .dropdown-item:hover {
            background-color: var(--light-bg);
            color: var(--primary-color);
        }

        .dropdown-item i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .dropdown-item:hover i {
            transform: translateX(-5px);
        }

        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 20px;
            left: 20px;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1002;
        }

        .header.scrolled .mobile-menu-btn {
            color: var(--primary-color);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            z-index: 1003;
            padding: 80px 30px 30px;
            transition: var(--transition);
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            left: 20px;
            background: transparent;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-color);
            cursor: pointer;
        }

        .mobile-nav-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-size: 1.1rem;
            color: var(--text-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
        }

        .mobile-dropdown-content {
            padding-right: 20px;
            margin-top: 10px;
            display: none;
        }

        .mobile-dropdown-content.active {
            display: block;
        }

        .mobile-dropdown-item {
            padding: 10px 0;
            color: #666;
            font-size: 0.95rem;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            animation: slideAnimation 24s infinite;
        }

        .slide:nth-child(1) {
            background-image: url('1.webp');
            animation-delay: 0s;
        }

        .slide:nth-child(2) {
            background-image: url('2.webp');
            animation-delay: 6s;
        }

        .slide:nth-child(3) {
            background-image: url('3.webp');
            animation-delay: 12s;
        }

        .slide:nth-child(4) {
            background-image: url('4.webp');
            animation-delay: 18s;
        }

        @keyframes slideAnimation {
            0% { opacity: 0; }
            10% { opacity: 1; }
            25% { opacity: 1; }
            35% { opacity: 0; }
            100% { opacity: 0; }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            line-height: 1.6;
             color: var(--white);
        }

        .btn-primary {
            display: inline-block;
            background: var(--gold-gradient);
            color: var(--text-color);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        .scroll-down i {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        
        .about-section {
            min-height: 100vh;
            background: #f6f6f6;
            padding: 120px 60px 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .about-title-banner {
            background: var(--gold-color);
            padding: 35px 60px;
            width: fit-content;
            margin: 40px auto;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(211, 155, 29, 0.3);
            border: 3px solid var(--dark-green);
        }

        .about-title-banner h1 {
            margin: 0;
            font-size: 48px;
            color: var(--dark-green);
            font-weight: 900;
            letter-spacing: 2px;
            text-align: center;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1400px;
            width: 100%;
            margin-top: 20px;
        }

        .about-text-box {
            background: #ff990040;
            border: 4px solid var(--light-bg);
            border-radius: 25px;
            padding: 40px;
            line-height: 1.7;
            font-size: 18px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .about-text-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .about-text-box p {
            margin-bottom: 20px;
            color: #333;
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .about-image-box {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .about-image-box:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .about-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .about-arrow {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 280px;
            height: 280px;
            background: var(--gold-color);
            border-top-right-radius: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 60px;
            color: white;
            font-weight: bold;
            box-shadow: -5px -5px 20px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: var(--transition);
        }

        .about-arrow:hover {
            background: var(--dark-green);
            width: 300px;
            height: 300px;
        }

        .about-arrow i {
            transform: rotate(90deg);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(76, 175, 80, 0.1);
            animation: float 25s infinite linear;
            box-shadow: 0 0 40px rgba(76, 175, 80, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: rgba(46, 125, 50, 0.6);
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            50% {
                transform: translateY(-500px) rotate(180deg) scale(1.2);
            }
            100% {
                transform: translateY(-1000px) rotate(360deg) scale(1);
            }
        }

        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: var(--gold-gradient);
            z-index: 1001;
            transition: width 0.3s ease;
        }

        .section {
            width: 100%;
            min-height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 120px 2rem 2rem;
            overflow: hidden;
        }

        .qa-container {
            display: grid;
            grid-template-columns: 45% 55%;
            height: 100vh;
            width: 100%;
        }
        .qa-left-section {
            background-color: var(--secondary-color);
            padding: 60px;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .qa-menu {
            position: absolute;
            top: 20px;
            right: 40%;
            display: flex;
            gap: 40px;
            font-weight: bold;
        }
        .qa-menu a {
            color: #fff;
            text-decoration: none;
        }
        .qa-left-section h1 {
            font-size: 60px;
            margin: 0;
            line-height: 1.1;
            font-weight: 800;
        }
        .qa-text {
            margin-top: 20px;
            font-size: 20px;
            line-height: 1.6;
        }
        .qa-nav-arrows {
            display: flex;
            justify-content: space-between;
            font-size: 60px;
            margin-top: 40px;
            color: #fff;
        }
        .qa-right-section {
            background-image: url('72404\(1\).png');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .qa-arrow-btn {
            position: absolute;
            bottom: 40px;
            font-size: 60px;
            color: #fff;
            cursor: pointer;
        }
        .qa-left-arrow {
            left: 40px;
        }
        .qa-right-arrow {
            right: 40px;
        }

        .services-container {
            width: 90%;
            max-width: 1200px;
            margin: 60px auto;
        }

        .service-section {
            position: relative;
            margin-bottom: 180px;
            perspective: 1200px;
        }

        .service-image-box {
            width: 55%;
            margin-left: auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            transform: translateZ(0);
            transition: transform 0.5s ease;
        }

        .service-image-box:hover {
            transform: translateZ(20px);
        }

        .service-image-box img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .service-image-box:hover img {
            transform: scale(1.05);
        }

        .service-card {
            width: 52%;
            background: linear-gradient(135deg, #ffffff37 0%, #f8f9fa44 100%);
            border-radius: 20px;
            padding: 35px;
            position: absolute;
            top: 40px;    
            left: -30px;
            box-shadow: 
              0 15px 35px rgba(0,0,0,0.15),
              0 5px 15px rgba(0,0,0,0.1),
              inset 0 1px 0 rgba(255,255,255,0.8);
            z-index: 20;
            transform: rotateY(-5deg) rotateX(2deg) translateZ(30px);
            transition: all 0.5s ease;
            border: 1px solid rgba(255,255,255,0.5);
            backdrop-filter: blur(5px);
        }

        .service-card:hover {
            transform: rotateY(0deg) rotateX(0deg) translateZ(50px);
            box-shadow: 
              0 20px 40px rgba(0, 0, 0, 0.019),
              0 10px 20px rgba(0, 0, 0, 0.007),
              inset 0 1px 0 rgba(255,255,255,0.8);
        }

        .service-card h2 {
            margin: 0 0 20px;
            color: var(--primary-color);
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
        }

        .service-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-gradient);
            border-radius: 3px;
        }

        .service-card p {
            margin: 0 0 25px;
            color: #444;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .service-btn {
            display: inline-block;
            background: var(--green-gradient);
            color: #fff;
            text-decoration: none;
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
            position: relative;
            overflow: hidden;
        }

        .service-btn::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to left, #4caf50, #66bb6a);
            z-index: -1;
            transition: transform 0.5s ease;
            transform: translateX(100%);
        }

        .service-btn:hover::before {
            transform: translateX(0);
        }

        .service-btn:hover {
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
            transform: translateY(-2px);
        }

        .service-section::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 30px;
            bottom: -40px;
            right: 10%;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 70%);
            z-index: 1;
            border-radius: 50%;
        }

        .reverse-section .service-card {
            left: auto;
            right: -30px;
            text-align: right;
            transform: rotateY(5deg) rotateX(2deg) translateZ(30px);
        }

        .reverse-section .service-card:hover {
            transform: rotateY(0deg) rotateX(0deg) translateZ(50px);
        }

        .reverse-section .service-card h2::after {
            right: auto;
            left: 0;
        }

        .reverse-section .service-image-box {
            margin-left: 0;
            margin-right: auto;
        }

        .reverse-section::before {
            right: auto;
            left: 10%;
        }

        .services-main {
            background: var(--light-bg);
            padding: 100px 0;
            width: 100%;
        }

        .services-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .services-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .team-section {
            padding: 100px 20px;
            position: relative;
        }

        .team-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .team-title h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .team-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 100%;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 3px;
        }

        .team-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .team-container {
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
        }

        .team-member {
            display: flex;
            align-items: center;
            gap: 60px;
            padding: 40px;
            margin-bottom: 50px;
            border-radius: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .team-member.reverse {
            flex-direction: row-reverse;
        }

        .member-image {
            width: 420px;
            height: 600px;
            background: #f8fff8;
            border-radius: 25px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
        }

        .member-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 20px;
            transition: transform 0.4s ease;
        }

        .member-img:hover {
            transform: scale(1.05);
        }

        .member-info {
            max-width: 600px;
            padding: 15px;
            flex: 1;
        }

        .member-name {
            color: #1b5e20;
            margin-bottom: 25px;
            font-size: 36px;
            font-weight: 700;
            border-right: 5px solid #4caf50;
            padding-right: 20px;
            position: relative;
        }

        .member-name::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 100px;
            height: 3px;
            background: #4caf50;
            border-radius: 2px;
        }

        .member-position {
            color: #2e7d32;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .member-description {
            color: #424242;
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 25px;
            text-align: justify;
        }

        .member-achievements {
            background: #f1f8e9;
            padding: 20px;
            border-radius: 15px;
            margin: 25px 0;
            border-right: 4px solid #66bb6a;
        }

        .member-achievements p {
            color: #2e7d32;
            font-size: 17px;
            margin: 10px 0;
            padding-right: 20px;
            position: relative;
        }

        .member-achievements p::before {
            content: "✓";
            color: #4caf50;
            font-weight: bold;
            position: absolute;
            right: 0;
        }

        .member-highlight {
            color: #1b5e20;
            font-weight: 700;
            background: #e8f5e9;
            padding: 5px 10px;
            border-radius: 8px;
            display: inline-block;
            margin: 5px 0;
        }

        .clients-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .clients-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .clients-title h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .clients-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            justify-items: center;
            align-items: center;
        }

        .client-logo-item {
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            transition: all 0.3s ease;
        }

        .client-logo-img {
            width: 100%;
            max-width: 180px;
            height: auto;
            object-fit: contain;
            filter: grayscale(30%);
            transition: all 0.3s ease;
        }

        .client-logo-item:hover .client-logo-img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .clients-bg-elements,
        .client-bg-circle,
        .client-logo-card {
            display: none !important;
        }

        .sectors-section {
            padding: 100px 20px;
            background: #fafafa;
            position: relative;
        }

        .sectors-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .sectors-title h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .sectors-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .sector-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            text-align: center;
            border-top: 4px solid var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .sector-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: var(--green-gradient);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .sector-card:hover::before {
            transform: translateX(0);
        }

        .sector-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .sector-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .sector-card:hover .sector-icon {
            transform: scale(1.1);
        }

        .sector-card h3 {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.4;
        }

        .sector-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .contact-section {
            background: #2e7d32;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info {
            margin: 30px 0;
        }

        .contact-btn {
            display: inline-block;
            background: white;
            color: #2e7d32;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: var(--transition);
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .course-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 60px;
            background: var( --accent-color);
            position: relative;
            overflow: hidden;
            height: 73vh;
        }

        .course-section::before {
            content: "";
            position: absolute;
            top: -2%;
            left: 30%;
            transform: translateX(-50%);
            width: 790px;
            height: 110%;
            background: #ffffffeb;
            border-radius: 280px;
            z-index: 1;
        }

        .content {
            width: 55%;
            position: relative;
            z-index: 2;
            left: -750px;
        }

        .title {
            font-size: 36px;
            color: var(--dark-green);
            margin-bottom: 20px;
        }

        .title .icon {
            font-size: 40px;
            margin-right: 10px;
        }

        .checklist {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .checklist li {
            font-size: 20px;
            margin: 12px 0;
            position: relative;
            padding-right: 30px;
        }

        .checklist li::before {
            content: "✔";
            position: absolute;
            right: 0;
            color: #1aaa55;
            font-size: 22px;
            font-weight: bold;
        }

        .image-side {
            position: relative;
            z-index: 2;
            left: 1000px;
        }

        .image-side img {
            width: 400px;
            max-height: 700px;
            object-fit: contain;
            height: 120%;
        }

        .announcement-bar {
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color));
            color: white;
            padding: 12px 0;
            overflow: hidden;
            position: relative;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .announcement-content {
            display: flex;
            white-space: nowrap;
            animation: scrollText 30s linear infinite;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .announcement-content span {
            margin-right: 50px;
            display: inline-block;
        }

        @keyframes scrollText {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .social-sidebar {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: var(--transition);
        }

        .social-btn:hover::before {
            transform: translateX(0);
        }

        .social-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .whatsapp {
            background: #25D366;
        }

        .twitter {
            background: #000000;
        }

        .snapchat {
            background: #FFFC00;
            background: linear-gradient(135deg, #FFFC00, #FFF000);
            color: #000;
        }

        .facebook {
            background: #3b5998;
        }

        .instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .linkedin {
            background: #0077b5;
        }

        .twitter:hover {
            background: #000000;
        }

        .snapchat:hover {
            background: #FFFC00;
            color: #000;
        }

        @media (max-width: 1200px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .about-title-banner h1 {
                font-size: 42px;
            }
            
            .qa-left-section h1 {
                font-size: 50px;
            }
            
            .qa-container {
                grid-template-columns: 1fr;
                height: auto;
            }
            
            .qa-left-section {
                padding: 40px;
            }
            
            .qa-right-section {
                height: 400px;
            }
            
            .nav-left, .nav-right {
                gap: 20px;
            }

            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 30px;
            }

            .client-logo-img {
                max-width: 160px;
            }

            .member-image {
                width: 380px;
                height: 450px;
            }

            .member-name {
                font-size: 32px;
            }

            .member-position {
                font-size: 20px;
            }
        }

        @media (max-width: 992px) {
            .course-section {
                flex-direction: column;
                height: auto;
                padding: 40px 20px;
                text-align: center;
            }
            
            .course-section::before {
                display: none;
            }
            
            .content {
                width: 100%;
                left: 0;
                margin-bottom: 40px;
            }
            
            .image-side {
                width: 100%;
                left: 0;
                display: flex;
                justify-content: center;
            }
            
            .image-side img {
                width: 300px;
                height: auto;
            }
            
            .service-card {
                width: 90%;
                position: relative;
                left: 0 !important;
                right: 0 !important;
                top: -50px;
                margin: 0 auto;
                transform: none !important;
                text-align: center;
            }
            
            .reverse-section .service-card {
                text-align: center;
            }
            
            .service-card h2::after {
                right: 0;
                left: 0;
                margin: 0 auto;
            }
            
            .service-image-box {
                width: 100%;
                margin: 0 auto;
            }
            
            .nav-sections {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .nav-left, .nav-right {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-item {
                font-size: 0.9rem;
                padding: 6px 0 4px;
            }
            
            .about-text-box p {
                font-size: 1.1rem;
            }

            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 25px;
            }

            .client-logo-img {
                max-width: 140px;
            }

            .clients-title h2 {
                font-size: 2.2rem;
            }

            .team-member {
                gap: 40px;
                padding: 30px;
            }

            .member-image {
                width: 350px;
                height: 420px;
            }

            .member-name {
                font-size: 28px;
            }

            .member-position {
                font-size: 19px;
            }

            .member-description {
                font-size: 17px;
            }
        }

        @media (max-width: 768px) {
            .nav-sections {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .about-section {
                padding: 100px 20px 40px;
            }
            
            .about-title-banner {
                padding: 20px 30px;
                margin: 20px auto;
            }
            
            .about-title-banner h1 {
                font-size: 32px;
            }
            
            .about-text-box {
                padding: 25px;
            }
            
            .about-text-box p {
                font-size: 1rem;
                line-height: 1.6;
            }
            
            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 20px;
            }

            .client-logo-img {
                max-width: 120px;
            }

            .clients-title h2 {
                font-size: 1.8rem;
            }

            .clients-title p {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .qa-left-section h1 {
                font-size: 36px;
            }
            
            .qa-text {
                font-size: 1rem;
            }
            
            .services-title h2 {
                font-size: 1.8rem;
            }
            
            .services-title p {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .service-card h2 {
                font-size: 1.5rem;
            }
            
            .service-card p {
                font-size: 0.95rem;
            }
            
            .service-image-box img {
                height: 220px;
            }
            
            .title {
                font-size: 28px;
            }
            
            .checklist li {
                font-size: 16px;
                margin: 8px 0;
                text-align: right;
                padding-right: 25px;
            }
            
            .checklist li::before {
                font-size: 18px;
            }
            
            .image-side img {
                width: 250px;
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .about-arrow {
                width: 200px;
                height: 200px;
                font-size: 40px;
            }
            
            .about-arrow:hover {
                width: 220px;
                height: 220px;
            }
            
            .services-title h2 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .sectors-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .sectors-title h2 {
                font-size: 2rem;
            }

            .sector-card {
                padding: 30px 20px;
            }

            .team-member {
                flex-direction: column;
                padding: 25px;
                margin-bottom: 40px;
            }

            .team-member.reverse {
                flex-direction: column;
            }

            .member-image {
                width: 100%;
                max-width: 400px;
                height: 350px;
            }

            .member-name {
                font-size: 26px;
            }

            .member-position {
                font-size: 18px;
            }

            .member-description {
                font-size: 16px;
            }

            .member-achievements p {
                font-size: 15px;
            }

            .team-title h2 {
                font-size: 1.8rem;
            }

            .social-sidebar {
                left: 10px;
                gap: 10px;
            }
            
            .social-btn {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                padding: 0 10px;
            }
            
            .btn-primary {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .about-title-banner h1 {
                font-size: 26px;
            }
            
            .about-text-box {
                padding: 20px;
            }
            
            .about-arrow {
                width: 120px;
                height: 120px;
                font-size: 24px;
            }
            
            .about-arrow:hover {
                width: 130px;
                height: 130px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .qa-left-section {
                padding: 30px 20px;
            }
            
            .qa-left-section h1 {
                font-size: 28px;
            }
            
            .services-container {
                width: 95%;
            }
            
            .service-card {
                padding: 25px;
                width: 95%;
            }
            
            .service-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .contact-content {
                padding: 0 20px;
            }
            
            .contact-btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .logo img {
                height: 45px;
            }
            
            .logo-text {
                font-size: 0.9rem;
            }

            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .client-logo-img {
                max-width: 130px;
            }

            .clients-title h2 {
                font-size: 1.6rem;
            }

            .sectors-title h2 {
                font-size: 1.6rem;
            }

            .sector-card h3 {
                font-size: 1.2rem;
            }

            .team-member {
                padding: 20px;
                margin-bottom: 30px;
            }

            .member-image {
                height: 280px;
            }

            .member-name {
                font-size: 24px;
            }

            .member-position {
                font-size: 17px;
            }

            .member-description {
                font-size: 15px;
            }

            .member-achievements {
                padding: 15px;
            }

            .member-achievements p {
                font-size: 14px;
            }

            .team-title h2 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 400px) {
            .hero-title {
                font-size: 1.6rem;
            }
            
            .about-title-banner h1 {
                font-size: 22px;
            }
            
            .title {
                font-size: 24px;
            }
            
            .checklist li {
                font-size: 15px;
            }
            
            .image-side img {
                width: 200px;
            }
            
            .client-logo-img {
                max-width: 110px;
            }

            .clients-grid {
                gap: 12px;
            }

            .sector-card {
                padding: 25px 15px;
            }

            .member-image {
                height: 250px;
            }

            .member-name {
                font-size: 22px;
            }

            .member-position {
                font-size: 16px;
            }

            .social-sidebar {
                left: 5px;
            }
            
            .social-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        @media (max-height: 700px) {
            .hero {
                height: 80vh;
            }
            
            .course-section {
                height: auto;
                min-height: 70vh;
            }

            .client-logo-img {
                max-width: 150px;
            }

            .member-image {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .service-section {
                margin-bottom: 120px;
            }
            
            .service-section::before {
                display: none;
            }
            
            .qa-left-section h1 {
                font-size: 30px;
            }
            
            .qa-text {
                font-size: 0.95rem;
            }
        }