* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
    box-sizing: border-box;
}

.navbar {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    width: 100%;
    gap: 20px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin: 0;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 20px;
    font-weight: bold;
    color: #1c42c0;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 70%;
    /* transform: translateX(-50%); */
    z-index: 1;
}

.nav-links a {
    text-decoration: none;
    color: #777575;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1c42c0;
}


/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    margin-left: auto;
    margin-right: 0;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1c42c0;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Mobile Navigation Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    border-radius: 20px 0 0 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
}

.mobile-logo-title {
    font-size: 16px;
    font-weight: bold;
    color: #1a3a5f;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.mobile-logo-subtitle {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.menu-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #1a3a5f;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 300;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav-links li {
    padding: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    color: #888;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.mobile-nav-links a:hover {
    color: #1a3a5f;
}

.mobile-nav-links a.mobile-active {
    color: #1c42c0;
    font-weight: bold;
}

/* Overlay when menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {  
   
    height: calc(100vh - 80px);
    min-height: 800px;
    background-image: url('resources/assestl-samplewebsite/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(6, 20, 65, 0.5); */
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: white;
    padding-left: 20px;
    width: 100%;
}

.hero-headline {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
    max-width: 850px;
    color: white;
    margin-top: 20%;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 45px;
    max-width: 900px;
    line-height: 1.8;
    color: white;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1c42c0;
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #2a52d0;
    transform: translateY(-2px);
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Company Profile Section */
.company-profile {
    padding: 100px 40px;
    background: white;
}

.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    color: #1a3a5f;
    margin-bottom: 30px;
}

.profile-text {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-button {
    display: inline-block;
    background: #1c42c0;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 40px;
    transition: background 0.3s;
}

.contact-button:hover {
    background: #2a4a6f;
}

.profile-images {
    display: flex;
    align-items: center;
}

/* .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
} */

.grid-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Business Section */
.core-business {
    background: #061441;
    padding: 100px 40px;
    color: white;
}

.business-container {
    max-width: 1400px;
    margin: 0 auto;
}

.business-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.business-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* First 3 cards span 2 columns each */
.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3) {
    grid-column: span 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 35px;
    padding: 30px;
    transition: transform 0.3s, background 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}


.services-grid .service-card:nth-child(4) {
    grid-column: 2 / 4;
}

.services-grid .service-card:nth-child(5) {
    grid-column: 4 / 6;
}

/* Contact Section */
.contact-section {
    padding: 10px 40px 80px;
    background: white;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    /* height: 100%; */
    /* border: 1px solid red; */
    min-height: 100%;
}

.contact-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-image: url('resources/assestl-samplewebsite/contact.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    /* min-height: 200px; */
    padding-bottom: 60px;
    border-bottom-left-radius: 43px;
    border-bottom-right-radius: 43px;
    overflow: visible;
    /* border-radius: 20px; */
    /* border: 1px solid red; */
}

.contact-content {
    width: 100%;
    color: white;
    position: relative;
    z-index: 1;
    padding-left: 80px;
    padding-right: 50%;
    padding-top: 160px;
    padding-bottom: 60px;
    /* border: 1px solid red; */

}

.contact-heading {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 500px;
}

.contact-text {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 550px;
}

.email-button {
    display: inline-block;
    /* background: #2a4a6f; */
    color: #39d1ff;
    padding: 15px 30px;
    border-radius: 55px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1.5px solid #39d1ff;
    transition: background 0.3s, border-color 0.3s;
}

.email-button:hover {
    background: #3a5a7f;
    border-color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: #050c25;
    padding: 60px 40px 20px;
    color: #ffffff;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-company-name {
    font-size: 24px;
    color: #1c42c0;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.footer-company-subtitle {
    font-size: 14px;
    color: #b4b6be;
    text-transform: uppercase;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #b4b6be;
    max-width: 400px;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-contact-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #b4b6be;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 144, 164, 0.3);
}

.footer-copyright p {
    font-size: 12px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .contact-wrapper {
        background-position: center top;
    }
    
    .contact-content {
        padding-left: 60px;
        padding-right: 45%;
        padding-top: 150px;
    }
    
    .contact-heading {
        font-size: 38px;
    }
    
    .contact-text {
        font-size: 17px;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
    }
    
    .contact-wrapper {
        background-size: cover;
        background-position: center top;
    }
    
    .contact-content {
        padding-left: 50px;
        padding-right: 40%;
        padding-top: 120px;
    }
    
    .contact-heading {
        font-size: 36px;
    }
}

@media (max-width: 968px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 30px 30px 60px;
    }
    
    .contact-wrapper {
        min-height: 400px;
        padding-bottom: 30px;
        background-size: cover;
        background-position: center top;
    }
    
    .contact-content {
        padding-left: 40px;
        padding-right: 35%;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .contact-heading {
        font-size: 34px;
        max-width: 450px;
    }
    
    .contact-text {
        font-size: 16px;
        max-width: 480px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        /* padding: 15px; */
        padding-bottom: 0;
    }
    
    .navbar {
        width: calc(100% - 40px);
        /* margin: 15px auto; */
        padding: 15px 15px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-sizing: border-box;
    }
    
    .logo-container {
        flex: 0 0 auto;
        margin: 0;
        gap: 8px; 
    }
    
    .menu-toggle {
        /* flex: 0 0 auto; */
        /* margin-left: auto; */
        /* margin-right: 0; */
        margin: 0;
    }
    
    .logo-title {
        font-size: 16px;
        color: #1a3a5f;
    }
    
    .logo-subtitle {
        font-size: 10px;
        color: #888;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        margin-top: 0;
        height: 100vh;
        min-height: 70vh;
        padding: 40px 20px;
    }
    
    .hero-content {
        padding-left: 0;
    }
    
    .hero-headline {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title,
    .business-title {
        font-size: 32px;
    }
    
    .contact-heading {
        font-size: 32px;
    }
    
    .contact-section {
        padding: 40px 20px;
        background: white;
        overflow: visible;
    }
    
    .contact-wrapper {
        width: 100%;
        margin: 0 auto;
        position: relative;
        background-image: url('resources/assestl-samplewebsite/mobile-contact-bg.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        border-radius: 20px;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 25px;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .contact-content {
        width: 100%;
        color: white;
        position: relative;
        z-index: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-heading {
        font-size: 28px;
        max-width: 100%;
        margin-bottom: 20px;
        font-weight: bold;
    }
    
    .contact-text {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .email-button {
        margin-bottom: 0;
    }
}

