@import url('https://fonts.cdnfonts.com/css/satoshi');

:root {
    --primary-orange: #FF6600;
    --dark-blue: #003366;
    --text-color: #333333;
    --light-grey: #f8f9fa;
    --footer-bg: #e9ecef;
    --footer-bottom-bg: #343a40;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: var(--text-color);
    font-family: 'Satoshi', sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Header Styles */
.site-header {
    width: 100%;
}

.header-top {
    background-color: var(--primary-orange);
    color: white;
    padding: 10px 10% 10px 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}

.header-top a {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-main {
    padding: 10px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark-blue);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    padding: 0 20px;
    border-right: 1px solid #ddd;
}

.nav-links li:last-child {
    border-right: none;
    padding-right: 0;
}

.nav-links a {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-links .home-icon {
    color: #00AEEF;
    font-size: 20px;
}

/* Theme Utilities */
.text-orange { color: var(--primary-orange) !important; }
.bg-orange { background-color: var(--primary-orange) !important; }
.border-orange { border-color: var(--primary-orange) !important; }

.btn-orange {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    transition: 0.3s;
}

.btn-orange:hover {
    background-color: #e65c00;
    color: white;
    transform: translateY(-2px);
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.tracking-wider { letter-spacing: 2px; }

/* AOS Custom Animations */
[data-aos="stretch-right"] {
    width: 0;
    transition-property: width;
}
[data-aos="stretch-right"].aos-animate {
    width: 60px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--footer-bg);
    padding-top: 60px;
}

.footer-container {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column h4 {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links a {
    color: #444;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #555;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--primary-orange);
}

.footer-bottom {
    background-color: var(--footer-bottom-bg);
    color: #aaa;
    padding: 15px 10%;
    text-align: left;
    font-size: 12px;
}

/* Hero Slider Section */
.hero-slider {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.swiper-slide-active .slide-content img {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
}

.slide-overlay .container {
    max-width: 1200px;
}

.slide-overlay h1 {
    font-size: clamp(32px, 5vw, 64px);
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
    font-weight: 900;
}

.slide-overlay h1 span {
    color: var(--primary-orange);
}

.slide-overlay p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-orange);
    color: white;
    font-weight: 700;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease 0.7s;
}

.btn-primary:hover {
    background-color: #e65c00;
    transform: translateY(-3px) !important;
}

.swiper-slide-active .slide-overlay h1,
.swiper-slide-active .slide-overlay p,
.swiper-slide-active .slide-overlay .btn-primary {
    opacity: 1;
    transform: translate(0, 0);
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

/* Shared Layout Utilities */
.container-custom {
    width: 85%;
    margin: 0 auto;
}

.rounded-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    width: 100%;
    object-fit: cover;
}

.floating-effect {
    transition: transform 0.5s ease;
}

.floating-effect:hover {
    transform: translateY(-10px);
}

/* Section Titles */
.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.1;
    margin-bottom: 25px;
}

.section-title span {
    color: var(--primary-orange);
    display: block;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: #ffffff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-lead {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.4;
}

.feature-cards-mini {
    display: flex;
    gap: 20px;
}

.feature-card-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fdfdfd;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.feature-card-mini:hover {
    border-color: var(--primary-orange);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-card-mini i {
    font-size: 24px;
    color: var(--primary-orange);
}

.feature-card-mini span {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-blue);
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.accent-bar {
    width: 80px;
    height: 6px;
    background: var(--primary-orange);
    margin-bottom: 30px;
    border-radius: 3px;
}

.profile-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.profile-text strong {
    color: var(--dark-blue);
    font-weight: 800;
}

/* Responsive */
@media (max-width: 992px) {
    .mission-grid, .profile-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .profile-grid .profile-image {
        order: 2;
    }
    
    .section-title {
        font-size: 36px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallerySwiper .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: #fdfdfd;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    text-align: center;
}

.why-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.why-card i {
    font-size: 45px;
    color: var(--primary-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.why-card h4 {
    color: var(--dark-blue);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    color: #666;
    font-size: 15px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    transition: 0.3s;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #fff5f0;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.service-item h3 {
    color: var(--dark-blue);
    font-size: 22px;
    font-weight: 700;
}

.service-item p {
    color: #777;
    font-size: 15px;
}

/* Industries We Serve */
.industries-section {
    padding: 100px 0;
    background: #f4f7f9;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.industry-tag {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--dark-blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid transparent;
    transition: 0.3s;
}

.industry-tag:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateX(10px);
}

.industry-tag i {
    font-size: 24px;
    color: var(--primary-orange);
}

/* Feature Alt Section */
.feature-section-alt {
    padding: 100px 0;
    background: white;
}

.feature-alt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-checklist {
    list-style: none;
    margin-top: 30px;
}

.feature-checklist li {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-checklist i {
    color: #28a745;
    font-size: 22px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #fafafa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--dark-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 20px;
    border: 5px solid #fff;
    box-shadow: 0 0 0 2px var(--dark-blue);
}

.step-item p {
    font-weight: 700;
    font-size: 15px;
    color: #333;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--dark-blue);
    color: white;
}

.stats-section .section-title {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('assets/images/Executed Work_JES/29.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.cta-section .section-title {
    color: white;
}

.cta-section p {
    font-size: 20px;
    max-width: 700px;
    margin: 20px auto 40px;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: white;
    font-weight: 700;
    border-radius: 4px;
    border: 2px solid white;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--dark-blue);
}

.text-center { text-align: center; }

@media (max-width: 992px) {
    .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .feature-alt-grid { grid-template-columns: 1fr; gap: 40px; }
}
