/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.main-nav {
    background-color: #051a2c;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 35px;
    width: auto;
}

.logo-symbol {
    font-size: 20px;
    margin-right: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.dropdown-icon {
    font-size: 10px;
}

.btn-connect {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-connect:hover {
    background-color: #ffffff;
    color: #0a2540;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #051A2C 0%, #082743 30%, #0B365E 60%, #0F477B 100%);
    padding: 100px 0 150px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
    z-index: 1;
    background: transparent;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 102px;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin: 0;
}

.hero-highlight {
    background: linear-gradient(90deg, #2B88DB 0%, #3E93DF 12.02%, #67AAE6 38.46%, #A3CDF1 72.12%, #EDF6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-align: right;
    width: 100%;
    padding-bottom: 0.1em;
}

.hero-sidebar {
    position: relative;
    padding-left: 30px;
}

.sidebar-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 15%;
    height: 3px;
    background-color: #ffffff;
	margin-left: 2em;
}

.sidebar-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #ffffff;
}

.sidebar-text {
    font-size: 16px;
    line-height: 1.8;
    color: #b8d4f1;
    margin-bottom: 30px;
}

.btn-see-what {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: gap 0.3s;
}

.btn-see-what:hover {
    gap: 15px;
}

.arrow {
    font-size: 20px;
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'%3E%3Cpath fill='%234a7ba7' fill-opacity='0.3' d='M0,50 C240,100 480,0 720,50 C960,100 1200,0 1440,50 L1440,150 L0,150 Z'%3E%3C/path%3E%3Cpath fill='%234a7ba7' fill-opacity='0.2' d='M0,80 C240,30 480,130 720,80 C960,30 1200,130 1440,80 L1440,150 L0,150 Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    opacity: 0.8;
}

/* Solutions Section */
.solutions-section {
    background-color: #0F467A;
    padding: 100px 0;
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
}

.solutions-content .section-title {
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0;
}

.industries-content .section-title {
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: 0.08em;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #b8d4f1;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.tag {
    background-color: rgba(107, 165, 231, 0.2);
    border: 1px solid rgba(107, 165, 231, 0.4);
    padding: 12px 20px;
    border-radius: 25px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.03em;
    color: #ffffff;
    display: inline-block;
}

/* Help Section */
.help-section {
    background-color: #0F467A;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.help-content .section-title,
.services-content .section-title {
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: 0.08em;
}

.help-content .section-text {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.service-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.service-btn {
    background-color: rgba(107, 165, 231, 0.15);
    border: 1px solid rgba(107, 165, 231, 0.3);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.service-btn:hover {
    background-color: rgba(107, 165, 231, 0.25);
    border-color: rgba(107, 165, 231, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    color: #6ba5e7;
}

/* Case Section */
.case-section {
    background: linear-gradient(180deg, #0F477B 0%, #042b50 100%);
    padding: 100px 0 120px;
    position: relative;
}

.case-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.carousel {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.case-card {
    position: relative;
    max-width: 700px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.case-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.95) 0%, transparent 100%);
    padding: 40px 50px;
}

.case-name {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ffffff;
}

.case-description {
    font-size: 14px;
    line-height: 1.6;
    color: #b8d4f1;
    letter-spacing: 1px;
}

.carousel-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #6ba5e7;
    width: 35px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 70px;
    }
    
    .solutions-grid,
    .help-grid {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .solutions-grid,
    .help-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-content {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-buttons {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .case-name {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-section {
        padding: 60px 0 100px;
    }
    
    .solutions-section,
    .help-section,
    .case-section {
        padding: 60px 0;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    background-color: #e8eef5;
    padding-top: 80px;
    color: #1a2332;
}

.why-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #1a4976;
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
}

.why-text-content {
    display: flex;
    flex-direction: column;
}

.why-image-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.owners-image {
    width: auto;
    max-width: 175%;
    object-fit: contain;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.why-item-title {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.04em;
    margin-bottom: 15px;
    color: #1a2332;
}

.why-item-text {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.04em;
    color: #4a5568;
}

.tech-expert-text {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    line-height: 30px;
    letter-spacing: 0.04em;
    margin: 40px 0 20px;
    color: #1a2332;
}

.signature {
    margin-bottom: 30px;
}

.signature-name {
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: #2d5f9f;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 14px;
    color: #6b7280;
}

.why-actions {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.why-link {
    color: #2d5f9f;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.why-link:hover {
    gap: 12px;
}

/* Spotlights Section */
.spotlights-section {
    background: linear-gradient(180deg, #0a2540 0%, #0e3557 100%);
    padding: 100px 0;
}

.spotlights-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: center;
}

.spotlights-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.spotlights-subtitle {
    font-size: 16px;
    color: #b8d4f1;
    line-height: 1.6;
}

.curious-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
}

.btn-see-more {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-see-more:hover {
    background-color: #ffffff;
    color: #0a2540;
}

.spotlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.spotlight-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.spotlight-card:hover {
    transform: translateY(-5px);
}

.spotlight-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-title {
    font-size: 16px;
    font-weight: 600;
    padding: 20px 20px 10px;
    color: #ffffff;
    line-height: 1.4;
}

.spotlight-link {
    display: inline-block;
    padding: 0 20px 20px;
    color: #6ba5e7;
    text-decoration: none;
    font-size: 14px;
    transition: gap 0.3s;
}

.spotlight-link:hover {
    text-decoration: underline;
}

.arrow-small {
    margin-left: 5px;
}

/* Connect with Experts Section */
.connect-experts-section {
    background: linear-gradient(180deg, #042B50 30.29%, #053461 55.29%, #0962B6 100%);
    padding: 100px 0;
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.connect-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

.experts-highlight {
    color: #a5d8ff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input,
.form-textarea {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 15px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.full-width {
    grid-column: 1 / -1;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-send-message {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-send-message:hover {
    background-color: #ffffff;
    color: #1a4976;
}

/* Human Side Section */
.human-side-wrapper {
    padding: 40px;
    border-radius: 8px;
}

.human-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

.human-quote {
    font-size: 16px;
    line-height: 1.8;
    color: #b8d4f1;
    font-style: italic;
    margin-bottom: 20px;
}

.human-author {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

.ceo-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.ceo-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Boxes Section */
.cta-boxes-section {
    background-color: #e8eef5;
    padding: 0;
}

.cta-boxes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.cta-box {
    padding: 80px 60px;
    text-align: left;
    border: 1px solid rgba(26, 73, 118, 0.1);
}

.cta-box:first-child {
    background-color: #f4f7fa;
}

.cta-box:last-child {
    background-color: #e8eef5;
}

.cta-box-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a4976;
    line-height: 1.3;
}

.cta-box-link {
    color: #2d5f9f;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.cta-box-link:hover {
    gap: 12px;
}

.arrow-icon {
    font-size: 18px;
}

/* Footer */
.main-footer {
    background-color: #0a2540;
    padding: 60px 0 30px;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-address,
.footer-phone {
    font-size: 14px;
    line-height: 1.6;
    color: #b8d4f1;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #b8d4f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-connect {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.btn-footer-connect {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 20px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-footer-connect:hover {
    background-color: #ffffff;
    color: #0a2540;
}

.arrow-circle {
    margin-left: 8px;
}


.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #b8d4f1;
}

/* Additional Responsive Styles for New Sections */
@media (max-width: 992px) {
    .why-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .owners-image {
        height: 50vh;
    }
    
    .spotlights-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .spotlights-grid {
        grid-template-columns: 1fr;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .cta-boxes-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-connect {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .why-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
