/* ===== Base Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: white;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }
        
        /* ===== Header & Navigation ===== */
        header {
            background: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #0056b3;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            font-size: 32px;
        }
        
        .nav-menu {
            display: flex;
            gap: 25px;
        }
        
        .nav-menu > li {
            list-style: none;
            position: relative;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #0056b3;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-menu a:hover {
            color: #003366;
        }
        
        .nav-menu a i {
            font-size: 14px;
        }
        
        /* Dropdown Menus */
        .dropdown {
            position: relative;
			
        }
        
		li .dropdown{
			list-style-type:none;
		}
		
        .dropdown-content {
            display: none;
            position: absolute;
            background: white;
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            top: 100%;
            left: 0;
            z-index: 1;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown-content a {
            padding: 12px 16px;
            border-bottom: 1px solid #f0f0f0;
            color: #444;
        }
        
        .dropdown-content a:hover {
            background: #f8f8f8;
            color: #0056b3;
        }
        
        /* Mobile Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #0056b3;
        }
        
        .mobile-menu {
            display: none;
            background: white;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu a {
            display: block;
            padding: 12px 0;
            color: #0056b3;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-dropdown {
            padding-left: 15px;
        }
        
        .mobile-dropdown a {
            font-size: 14px;
            color: #666;
        }
        
        /* ===== Hero Section ===== */
        .hero {
            background: url('../images/klx/hero.jpeg');
            background-size: cover;
            background-position: center;
			background-attachment: fixed;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        
		.hero .container{
			margin-right:50%;
			border-bottom:2em bold;
			border-color:blue;
		}
		
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
		 .drilling-motor-hero {
            background: url('../images/services/Drilling-motor-hero.jpg');
            background-size: cover;
            background-position: center;
			background-attachment: fixed;
            color: white;
            padding: 120px 0;
			height:90vh;
            text-align: center;
        }
        
		.drilling-motor-hero .container{
			margin-right:50%;
			border-bottom:2em bold;
			border-color:blue;
		}
		
        .drilling-motor-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .drilling-motor-hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
		
		.dm-hero img{
			max-width: 100%;
			height: auto;
			display: block;
		}
		
		.drilling-motor-hero .container{
			margin-right:0%;
			border-bottom:2em bold;
			border-color:blue;
		}
		
		@media (max-width: 768px) {
           img{
				width:100%;
				height:auto;
			}
			.drilling-motor-hero .container{
			margin-right:0%;
			border-bottom:2em bold;
			border-color:blue;
		}
			.drilling-motor-hero h1{
				font-size:1rem;
			}
			.drilling-motor-hero p{
				font-size:0.7rem;
			}
        }
        
        .jar-hero {
            background: url('../images/services/jar-hero.jpeg');
            background-size: cover;
            background-position: center;
			background-attachment: fixed;
            color: white;
            padding: 120px 0;
			height:90vh;
            text-align: center;
        }
        
		.jar-hero .container{
			margin-right:50%;
			border-bottom:2em bold;
			border-color:blue;
		}
		
        .jar-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .jar-hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
		
		.ja-hero img{
			max-width: 100%;
			height: auto;
			display: block;
		}
		
		.ja-hero .container{
			margin-right:0%;
			border-bottom:2em bold;
			border-color:blue;
		}
		
		@media (max-width: 768px) {
           img{
				width:100%;
				height:auto;
			}
			.jar-hero .container{
			margin-right:0%;
			border-bottom:2em bold;
			border-color:blue;
		}
			.jar-hero h1{
				font-size:1rem;
			}
			.jar-hero p{
				font-size:0.7rem;
			}
        }
		.oscillator-hero {
            background: url('../images/services/EE--001.jpg');
            background-size: cover;
            background-position: center;
			background-attachment: relative;
            color: white;
            padding: 120px 0;
			height:110%;
            text-align: center;				
        }		
		
		.shock-hero {
            background: url('../images/services/GG--001.jpg');
            background-size: cover;
            background-position: center;
			background-attachment: relative;
            color: white;
            padding: 120px 0;
			height:110%;
            text-align: center;				
        }
		
		.stabilizers-hero {
            background: url('../images/services/HH--001.jpg');
            background-size: cover;
            background-position: center;
			background-attachment: relative;
            color: white;
            padding: 120px 0;
			height:110%;
            text-align: center;				
        }
		
		.sub-hero {
            background: url('../images/services/FF--001.jpg');
            background-size: cover;
            background-position: center;
			background-attachment: relative;
            color: white;
            padding: 120px 0;
			height:110vh;
            text-align: center;
			margin-top:10px;
        }
        
		.sub-hero .container{
			
			border-bottom:2em bold;
			border-color:blue;
			
		}
		
        .sub-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .sub-hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
		
		.su-hero img{
			max-width: 100%;
			height: auto;
			display: block;
		}
		
		.su-hero .container{
			margin-right:0%;
			border-bottom:2em bold;
			border-color:blue;
		}
		
		@media (max-width: 768px) {
           img{
				width:100%;
				height:auto;
			}
			.sub-hero .container{
			margin-right:0%;
			border-bottom:2em bold;
			border-color:blue;
		}
			.sub-hero h1{
				font-size:1rem;
			}
			.sub-hero p{
				font-size:0.7rem;
			}
        }
		
        .btn {
            display: inline-block;
            background: #0056b3;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn:hover {
            background: #003366;
            transform: translateY(-2px);
        }
        .fancy-line {
			height: 16px;
			background: linear-gradient(to right, transparent, #0066ff, transparent);
			border: none;
    }
        /* ===== Section Styling ===== */
		
        section {
            padding: 80px 0;
        }              
		
		 .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #0056b3;
            font-size: 56px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #0056b3;
            margin: 15px auto 0;			
        }
        
        .section-divider {
            height: 1px;
            background: #e0e0e0;
            margin: 60px 0;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: #0056b3;
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        /* Projects Gallery */
        .projects-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .project-card {
            position: relative;
            height: 250px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }
        
        .project-card:hover img {
            transform: scale(1.1);
        }
        
        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 86, 179, 0.8);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: all 0.3s;
        }
        
        .project-card:hover .project-overlay {
            transform: translateY(0);
        }
        
        /* ===== Footer ===== */
        footer {
            background: #003366;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #0056b3;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: #0056b3;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 14px;
        }
		
		/*===== Extra =====*/
		.nav-menu .dropdown > a{
			font-size:10px;
		}
		.nav-menu li > a{
			font-size:10px;
		}
		
		.nav-menu .dropdown-content > a{
			font-size:10px;
		}
		
        /* ===== About section =====*/
		#about{
			width=100%;
		}				
		.about-content p{
			float:left;
			
		}
		.about-section-img{
			float:right;
			width:85%;
		}
		
		
		/* Company Profile Page Styles */
.profile-hero {
    background: url('../images/about/About1.jpg');
    background-size: cover;
    background-position: center;
	background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.breadcrumbs {
    padding: 15px 0;
    background-color: #f5f5f5;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--text-color);
    font-weight: 600;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-year {
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.timeline-content {
    padding-left: 30px;
}

.timeline-content h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.mv-card {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-number {
    color: var(--primary-color);
    margin-right: 10px;
}

.operations-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin: 60px 0;
    align-items: center;
}

.operations-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
    justify-items: center;
}

.cert-item {
    text-align: center;
}

.cert-item img {
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.cta-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary {
    background-color: white;
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.profile-image{
	background-attachment: fixed;
}

.profile-image img{
	width:400px;
	height:200px;
	overflow:hidden;
	
}

/* Leadership Team Page Styles */
.leadership-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('../assets/images/leadership-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.leadership-intro {
    padding: 60px 0 40px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px 0;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background-color: white;
    border-radius: 5px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.member-image {
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.member-info {
    padding: 30px 30px 30px 0;
}

.member-info h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.tenure {
    font-style: italic;
    color: #666;
    margin-top: 20px;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.leader-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.leader-info {
    padding: 25px;
}

.location {
    color: #666;
    margin: 10px 0;
}

.location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.board-member {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow-sm);
}

.board-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--light-gray);
}

.affiliation {
    font-style: italic;
    color: #666;
    margin-top: 5px;
}

.cta-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.btn-primary {
    background-color: white;
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .team-member {
        grid-template-columns: 1fr;
    }
    
    .member-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .leaders-grid,
    .board-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .profile-grid,
    .operations-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
        /* ===== Responsive Design ===== */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 80px 0;
            }
            
            section {
                padding: 60px 0;
            }
			
			li .dropdown{
				list-style-type:none;
			}
        }