:root {
    --primary-navy: #001940;
    --primary-orange: #FF8B00;
    --primary-blue: #69A1FD;
    --white: #FFFFFF;
    --text-dark: #001940;
    --font-heading: 'Bayon', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background-color: var(--primary-navy);
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
}

/* Clip overflow below footer only (contact glow); does not wrap main so header stays correct */
.footer-area {
    overflow: hidden;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    z-index: 1;
}

.navbar .container {
    background-color: #B2CFFF12;
    -webkit-backdrop-filter: blur(36.29999923706055px);
    backdrop-filter: blur(36.29999923706055px);
    border-radius: 50px;
    padding: 20px 40px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--white) !important;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--white) !important;
    margin: 0 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

.nav-link.active {
    background-color: rgba(0, 25, 64, 0.8);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    margin: 0 5px;
}

.btn-primary-orange {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 139, 0, 0.3);
    background-color: var(--primary-orange);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-navy);
}

/* Hero Section */
.hero-section {
    padding: 207px 0px 100px 0px;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-position: center;
    margin-top: -128px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;

}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
}

.rating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.rating-badge .stars {
    color: var(--primary-orange);
    font-size: 14px;
}

.rating-badge .text {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.user-avatars {
    display: flex;
    margin-right: 10px;
}

.user-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.user-avatars img:first-child {
    margin-left: 0;
}

/* Partner Logos */
.partners-section {
    padding: 60px 0;
}

.partners-container {
    border: none;
    border-radius: 20px;
    padding: 40px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 130px;
    flex-wrap: wrap;
    background: transparent;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
}

.brand-item i {
    font-size: 36px;
    color: var(--white);
}

.brand-item:hover {
    color: var(--primary-orange);
}

.brand-item:hover i {
    color: var(--primary-orange);
}

.partners-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.brand-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
    object-fit: contain;
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo {
    opacity: 0.8;
    transition: opacity 0.3s;
    height: 30px;
}

.partner-logo:hover {
    opacity: 1;
}

/* About Us Hero Section */
.about-hero-section {
    padding: 150px 0 100px;
    background-color: transparent;
    position: relative;
    text-align: center;
    margin-top: -128px;
    overflow: visible;
}

.about-hero-container {
    background-color: #69a1fd14;
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

/* Services Page Hero */
.services-hero-section {
    padding: 150px 0 100px;
    background-color: transparent;
    position: relative;
    text-align: center;
    margin-top: -128px;
    overflow: visible;
}

.services-hero-container {
    background-color: #69a1fd14;
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.services-hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

/* Single Service Page - Breadcrumb */
.single-service-breadcrumb {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.single-service-breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.single-service-breadcrumb a:hover {
    color: var(--primary-orange);
}

.single-service-breadcrumb .breadcrumb-sep {
    margin: 0 8px;
    opacity: 0.7;
}

.single-service-breadcrumb .breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
}

.single-service-section .single-service-card {
    margin-bottom: 0;
}

/* Single Service - What We Provide & Why Choose */
.service-what-section,
.service-why-section {
    padding: 80px 0;
    background-color: var(--primary-navy);
}

.service-section-title {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-section-intro {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.service-provide-row,
.service-why-row {
    margin-top: 20px;
}

.service-provide-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-provide-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.service-provide-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 25px;
}

.service-provide-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 400;
}

.service-provide-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.service-why-item {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-why-number {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.service-why-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: capitalize;
    font-weight: 400;
}

.service-why-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(0, 25, 64, 0.8);
    line-height: 1.6;
    margin: 0;
}

.service-provide-item,
.service-why-item {
    margin-bottom: 30px;
}

.contact-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Detail Section (Services Page) */
.service-detail-section {
    padding: 60px 0 100px;
    background-color: var(--primary-navy);
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.service-detail-card:last-child {
    margin-bottom: 0;
}

.service-detail-card-reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.service-detail-icon {
    position: absolute;
    bottom: 10px;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
    right: 0;
}

.service-detail-content {
    flex: 1;
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 45px;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: capitalize;
    font-weight: 400;
}

.service-detail-text {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(0, 25, 64, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content .btn-primary-orange {
    margin-top: 10px;
}

/* Contact Page Hero */
.contact-hero-section {
    padding: 150px 0 100px;
    background-color: transparent;
    position: relative;
    text-align: center;
    margin-top: -128px;
    overflow: visible;
}

.contact-hero-container {
    background-color: #69a1fd14;
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

/* Contact Page Content Section */
.contact-page-section {
    padding: 60px 0 80px;
    background-color: var(--primary-navy);
}

.contact-page-row {
    align-items: stretch;
}

.contact-page-info {
    padding-right: 40px;
}

.contact-page-heading {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact-page-text {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-page-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page-details li {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-page-details li i {
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-page-form-card {
    background: #F5F5F5;
    border-radius: 30px;
    padding: 50px;
}

.contact-page-form .form-group {
    margin-bottom: 25px;
}

.contact-page-form .form-group label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.contact-page-form .form-control {
    background: var(--white);
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-page-form .form-control::placeholder {
    color: #B0B0B0;
}

.contact-page-form .btn-primary-orange {
    margin-top: 10px;
}

/* Contact Page Map Section */
.contact-map-section {
    padding: 0 0 80px;
    background-color: var(--primary-navy);
}

.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 20px;
}

/* Info Card Section */
.info-card-section {
    padding: 0px 0 60px;
}

.info-card {
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.info-card-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.info-card-image img {
    width: 100%;
    height: auto;
}

.info-card-content {
    flex: 1;
}

.pill-tag {
    display: inline-block;
    background: transparent;
    border: 2px solid #001940;
    color: #001940;
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.49;
    letter-spacing: 2.5%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Services section override for white text on dark background */
.services-section .pill-tag {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 10px 15px;
    letter-spacing: 10px;
    margin-bottom: 25px;
}

.pill-tag-wrapper {
    display: inline-block;
    border: 1px solid #000000;
    padding: 15px 30px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.pill-tag-wrapper .pill-tag {
    margin-bottom: 0;
    border: none;
    padding: 0;
        color: #000000;
}


.info-card-title {
    font-family: var(--font-heading);
    font-size: 70px;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
    width: 500px;
}

.info-card-text {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--primary-navy);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--white);
    margin-bottom: 60px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: 0%;
    text-align: center;
}


.service-card {
    background: transparent;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card-image {
    position: relative;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    margin: 20px;
}

.service-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.service-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary-orange);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.service-card-body {
    padding: 30px 20px;
    text-align: left;
}

.service-card-title {
    font-family: var(--font-body);
    font-size: 45px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: 0%;
}

.service-card-text {
    font-family: var(--font-body);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background-color: var(--primary-navy);
    position: relative;
    overflow: visible;
    z-index: 1;
}


.mission-vision-card {
    text-align: center;
    padding: 60px 40px;
    background: transparent;
    border-radius: 25px;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
}

.mission-vision-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 139, 0, 0.3);
    position: relative;
    font-weight: 700;
}

.mission-vision-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-orange);
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.mission-icon-text {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.vision-icon {
    border-radius: 25px;
}

.vision-icon-inner {
    position: relative;
    width: 60px;
    height: 60px;
}

.vision-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    z-index: 2;
}

.vision-brackets {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.vision-bracket-left,
.vision-bracket-right {
    position: absolute;
    font-size: 40px;
    color: var(--white);
    font-weight: 300;
    line-height: 1;
}

.vision-bracket-left {
    top: 0;
    left: 0;
}

.vision-bracket-right {
    top: 0;
    right: 0;
}

.mission-vision-title {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.2;
}

.mission-vision-text {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* Glow spreads from contact down to footer only, not above contact */
.contact-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 1800px;
    background: #69A1FD;
    border-radius: 50%;
    filter: blur(600px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}

.contact-card {
    background: var(--white);
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.contact-title {
font-family: var(--font-heading);
    font-size: 70px;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;

}

.contact-form {
    max-width: 1190px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    letter-spacing: 0.5px;
}

.form-control {
    border: none;
    background: #F8F8F8;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s;
}

.form-control::placeholder {
    color: #B0B0B0;
}

.form-control:focus {
    background: #F8F8F8;
    box-shadow: 0 0 0 2px rgba(255, 139, 0, 0.15);
    border: none;
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    padding: 20px;
}

/* Footer - no space below */
.footer {
    padding: 80px 0 40px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    z-index: 1;
    margin-bottom: 0;
}

.footer > .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    margin-bottom: 40px;
    background-color: #B2CFFF12;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(655.8360595703125px);
    -webkit-backdrop-filter: blur(655.8360595703125px);
}

.footer-content > [class*="col-"] {
    padding-left: 25px;
    padding-right: 25px;
}

.footer-content > [class*="col-"]:first-child {
    padding-left: 0;
    padding-right: 40px;
}

.footer-content > [class*="col-"]:nth-child(2) {
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
}

.footer-content > [class*="col-"]:last-child {
    padding-right: 0;
    padding-left: 40px;
}

.footer-logo {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-subscribe {
    margin-top: 25px;
}

.subscribe-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0;
    background: var(--white);
    overflow: hidden;
    width: 100%;
}

.subscribe-input {
    flex: 2;
    border: none;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    width: 66.66%;
}

.subscribe-input::placeholder {
    color: #A9ACB2;
}

.subscribe-input:focus {
    outline: none;
    background: transparent;
}

.subscribe-btn {
    border: none;
    background: #0161FE;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 0 50px 50px 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    width: 33.33%;
    flex-shrink: 0;
}

.subscribe-btn:hover {
    background: #0156e5;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    padding-left: 0;
}

.footer-content > [class*="col-"]:nth-child(2) .footer-links {
    display: inline-block;
    text-align: center;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.footer-content > [class*="col-"]:nth-child(2) .footer-links li {
    padding-left: 0;
    text-align: center;
}

.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.footer-content > [class*="col-"]:nth-child(2) .footer-links li::before {
    display: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--white);
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 0;
}

.social-icons a {
    color: var(--white);
    font-size: 20px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--primary-blue);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.privacy-link:hover {
    color: var(--primary-orange);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 8px;
    color: var(--white);
    font-size: 24px;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    left: 0;
    transition: all 0.3s;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--primary-navy);
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-brand {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.mobile-menu-close:hover {
    color: var(--primary-orange);
}

.mobile-menu-nav {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-link {
    display: block;
    padding: 18px 20px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 18px;
    transition: all 0.3s;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-orange);
    padding-left: 30px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 70px;
    }
    
    .section-title {
        font-size: 70px;
    }
    
    .info-card-title {
        font-size: 60px;
    }
    
    .contact-title {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 50px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .info-card {
        flex-direction: column;
        padding: 40px;
    }
    
    .info-card-title {
        font-size: 45px;
        width: 100%;
    }
    
    .info-card-text {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 50px;
    }
    
    .service-card-title {
        font-size: 35px;
    }
    
    .service-card-text {
        font-size: 18px;
    }
    
    .contact-title {
        font-size: 45px;
    }
    
    .footer-content {
        padding: 30px 20px;
    }
    
    .footer-content > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 30px;
    }
    
    .footer-content > [class*="col-"]:first-child {
        padding-right: 15px;
    }
    
    .footer-content > [class*="col-"]:nth-child(2) {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-content > [class*="col-"]:last-child {
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 15px 20px !important;
    }
    
    .navbar-brand {
        font-size: 18px;
    }
    
    .hero-section {
        padding: 150px 0 80px;
        margin-top: -100px;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
        max-width: 100%;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .hero-buttons a {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .btn-outline-white {
        text-align: center;
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-container {
        gap: 40px;
        padding: 30px 0;
    }
    
    .brand-item {
        font-size: 18px;
    }
    
    .brand-item i {
        font-size: 28px;
    }
    
    .info-card-section {
        padding: 40px 0;
    }
    
    .info-card {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .info-card-title {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .info-card-text {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .pill-tag {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .services-section .pill-tag {
        font-size: 12px;
        padding: 8px 12px;
        letter-spacing: 5px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-card-image {
        margin: 15px;
    }
    
    .service-card-body {
        padding: 20px 15px;
    }
    
    .service-card-title {
        font-size: 28px;
    }
    
    .service-card-text {
        font-size: 16px;
    }
    
    .about-hero-section {
        padding: 100px 0 60px;
    }
    
    .about-hero-container {
        padding: 60px 30px;
        border-radius: 25px;
    }
    
    .about-hero-container::after {
        height: 60px;
        bottom: -30px;
    }
    
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .services-hero-section {
        padding: 100px 0 60px;
    }
    
    .services-hero-container {
        padding: 60px 30px;
        border-radius: 25px;
    }
    
    .services-hero-title {
        font-size: 48px;
    }
    
    .contact-hero-section {
        padding: 100px 0 60px;
    }
    
    .contact-hero-container {
        padding: 60px 30px;
        border-radius: 25px;
    }
    
    .contact-hero-title {
        font-size: 48px;
    }
    
    .single-service-breadcrumb {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .contact-page-section {
        padding: 40px 0 60px;
    }
    
    .contact-page-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-page-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .contact-page-text {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .contact-page-form-card {
        padding: 35px 25px;
        border-radius: 25px;
    }
    
    .contact-map-section {
        padding: 0 0 60px;
    }
    
    .contact-map-wrapper iframe {
        height: 350px;
    }
    
    .service-what-section,
    .service-why-section {
        padding: 50px 0;
    }
    
    .service-section-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .service-section-intro {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .service-provide-item,
    .service-why-item {
        margin-bottom: 25px;
    }
    
    .service-provide-item {
        padding: 30px 25px;
    }
    
    .service-provide-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .service-provide-title {
        font-size: 20px;
    }
    
    .service-why-item {
        padding: 28px 20px;
    }
    
    .service-why-number {
        font-size: 32px;
    }
    
    .service-why-title {
        font-size: 20px;
    }
    
    .service-detail-section {
        padding: 40px 0 60px;
    }
    
    .service-detail-card,
    .service-detail-card-reverse {
        flex-direction: column;
        padding: 30px 25px;
        margin-bottom: 40px;
    }
    
    .service-detail-image {
        order: 1;
    }
    
    .service-detail-content {
        order: 2;
    }
    
    .service-detail-icon {
        bottom: 10px;
        right: 0;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-detail-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .service-detail-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 40px 25px;
        border-radius: 25px;
    }
    
    .contact-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-control {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    textarea.form-control {
        min-height: 120px;
        padding: 15px;
    }
    
    .footer {
        padding: 60px 0 30px;
        margin-bottom: 0;
    }
    
    .footer-content {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .footer-content > [class*="col-"]:nth-child(2) {
        text-align: left;
    }
    
    .footer-content > [class*="col-"]:nth-child(2) .footer-links {
        display: block;
        text-align: left;
    }
    
    .footer-content > [class*="col-"]:nth-child(2) .footer-links li {
        padding-left: 20px;
        text-align: left;
    }
    
    .footer-content > [class*="col-"]:nth-child(2) .footer-links li::before {
        display: block;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .footer-links li {
        text-align: left;
    }
    
    .footer-contact {
        text-align: left;
    }
    
    .footer-contact li {
        text-align: left;
        justify-content: flex-start;
    }
    
    .footer-links li,
    .footer-contact li {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .subscribe-form {
        flex-direction: row;
        border-radius: 50px;
        gap: 0;
        display: flex;
    }
    
    .subscribe-input {
        border-radius: 50px 0 0 50px;
        flex: 1;
        width: auto;
        margin-bottom: 0;
    }
    
    .subscribe-btn {
        border-radius: 0 50px 50px 0;
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 15px 0;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 15px;
    }
    
    .social-icons a {
        font-size: 18px;
    }
    
    .copyright,
    .privacy-link {
        font-size: 12px;
    }
    
    .footer-divider {
        margin: 30px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 50px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .section-title,
    .contact-title,
    .info-card-title {
        font-size: 50px;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .services-hero-title {
        font-size: 36px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-page-heading {
        font-size: 28px;
    }
    
    .contact-page-details li {
        font-size: 16px;
    }
    
    .service-detail-title {
        font-size: 26px;
    }
    
    .service-detail-text {
        font-size: 15px;
    }
    
    .mission-vision-title {
        font-size: 28px;
    }
    
    .mission-vision-icon {
        width: 80px;
        height: 80px;
        font-size: 35px;
        margin-bottom: 20px;
    }
    
    .mission-vision-card {
        padding: 30px 15px;
    }
    
    .mission-vision-text {
        font-size: 15px;
    }
    
    .service-card-title {
        font-size: 24px;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .partners-container {
        gap: 25px;
    }
    
    .brand-item {
        font-size: 16px;
        gap: 12px;
    }
    
    .brand-item i {
        font-size: 24px;
    }
}
