:root {
    --primary:      #0d3b7a;
    --primary-dark: #082d60;
    --secondary:    #17c1e8;
    --secondary-dark: #10a8cb;
    --accent-yellow: #f5c518;
    --dark-bg:      #1b2c3a;
    --dark-bg2:     #1e3a5f;
    --light-bg:     #f4f7fb;
    --white:        #ffffff;
    --text-dark:    #1a2e4a;
    --text-muted:   #5a6a7a;
    --border:       #e2e8f0;
    --font-main:    'Poppins', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --shadow:       0 4px 20px rgba(0,0,0,.10);
    --shadow-lg:    0 8px 40px rgba(0,0,0,.15);
    --radius:       6px;
    --transition:   all .3s ease;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: var(--font-main); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: .5px;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-pad { padding: 90px 0; }

/* =============================================
   TYPOGRAPHY UTILITIES
============================================= */
.label-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title--white { color: var(--white); }

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.8;
}

.section-desc--white { color: rgba(255,255,255,.80); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-dark:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

/* =============================================
   HEADER / NAVIGATION
============================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: var(--transition);
}

#site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.site-logo img {
    height: 52px;
    width: auto;
}
.site-logo-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    max-width: 140px;
}

/* Nav */
#site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

#site-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 4px;
}

#site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--secondary);
    transition: width .3s ease;
}

#site-nav a:hover, #site-nav a.current-menu-item {
    color: var(--secondary);
}
#site-nav a:hover::after,
#site-nav a.current-menu-item::after { width: 100%; }

.header-cta { margin-left: 16px; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* =============================================
   HERO SECTION
============================================= */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,59,122,.72) 0%, rgba(13,59,122,.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,.88);
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* =============================================
   FEATURE CARDS (3-col under hero)
============================================= */
#features {
    background: var(--dark-bg2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    padding: 40px 36px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.feature-card:last-child { border-right: none; }
.feature-card:last-child { background: var(--secondary); }
.feature-card:last-child .feature-title { color: var(--primary); }
.feature-card:last-child .feature-desc { color: var(--primary); opacity: .85; }

.feature-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: rgba(23,193,232,.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card:last-child .feature-icon {
    background: rgba(13,59,122,.15);
}

.feature-icon img,
.feature-icon svg { width: 28px; height: 28px; }

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
}

/* =============================================
   QUALITY SECTION
============================================= */
#quality {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

#quality .section-title {
    max-width: 750px;
    margin: 0 auto 20px;
}

#quality .section-desc {
    margin: 0 auto;
    font-size: 17px;
}

/* =============================================
   ABOUT US SECTION
============================================= */
#about {
    background: var(--dark-bg2);
    padding: 90px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-content .label-tag { color: var(--secondary); }
.about-content .section-title { color: var(--white); }
.about-content .section-desc { color: rgba(255,255,255,.80); margin-bottom: 32px; }

.about-image img {
    border-radius: 8px;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* =============================================
   EXCELLENCE SECTION (2-col white)
============================================= */
#excellence {
    padding: 90px 0;
    background: var(--white);
}

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

.excellence-content .section-title { margin-bottom: 20px; }
.excellence-content .section-desc { font-size: 16px; color: var(--text-muted); }

.excellence-image img {
    border-radius: 8px;
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* =============================================
   SERVICES SECTION
============================================= */
#services {
    background: var(--light-bg);
    padding: 90px 0;
}

.services-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
}

.services-intro { padding-top: 10px; }
.services-intro .label-tag { color: var(--secondary); }
.services-intro .section-title { margin-bottom: 16px; }
.services-intro .section-desc { margin-bottom: 28px; font-size: 15px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card-body {
    padding: 18px 18px 22px;
    text-align: center;
}

.service-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.4;
}

.service-card-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 18px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.service-card-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* =============================================
   PROJECTS SECTION
============================================= */
#projects {
    padding: 90px 0;
    background: var(--white);
}

.projects-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.projects-header-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 360px;
}

.project-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.project-card:hover .project-card-img { transform: scale(1.05); }

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,59,122,.85) 0%, rgba(13,59,122,.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.project-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.project-card-btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 7px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.project-card-btn:hover {
    background: var(--white);
    color: var(--primary);
}

/* =============================================
   WHY CHOOSE US
============================================= */
#why-us {
    padding: 90px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}
.why-header .label-tag { color: var(--secondary); }
.why-header .section-title { max-width: 800px; margin: 0 auto; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.why-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
}
.why-icon img { width: 100%; height: 100%; object-fit: contain; }

.why-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   STATS SECTION
============================================= */
#stats {
    position: relative;
    padding: 90px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(240,245,255,.88);
}

.stats-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stats-big-number {
    font-family: var(--font-heading);
    font-size: clamp(52px, 9vw, 90px);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.stats-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-icon { width: 48px; height: 48px; }
.stat-icon img { width: 100%; }

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-number span { font-size: 24px; color: var(--secondary); }

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
}

/* =============================================
   CTA BANNER SECTION
============================================= */
#cta-banner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,59,122,.82) 0%, rgba(13,59,122,.55) 100%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-inner p {
    font-size: 16px;
    color: rgba(255,255,255,.82);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* =============================================
   NEED HELP BANNER
============================================= */
#need-help {
    padding: 48px 0;
    background: var(--light-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.need-help-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.need-help-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.need-help-text p {
    font-size: 15px;
    color: var(--text-muted);
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.50);
    margin-bottom: 24px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }

.footer-newsletter-text {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    margin-bottom: 20px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
}

.newsletter-input {
    flex: 1;
    background: rgba(255,255,255,.06);
    border: none;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--white);
    font-family: var(--font-main);
    outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }

.newsletter-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: var(--transition);
}
.newsletter-btn:hover { background: var(--secondary-dark); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.40);
}
.footer-bottom a { color: var(--secondary); }

/* =============================================
   PAGE / BLOG TEMPLATES
============================================= */
.page-hero {
    background: var(--primary);
    padding: 120px 0 60px;
    text-align: center;
}
.page-hero h1 {
    font-size: 40px;
    color: var(--white);
    font-weight: 700;
}

.content-wrap {
    padding: 70px 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}
.post-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.post-card-img { height: 220px; object-fit: cover; width: 100%; }

.post-card-body { padding: 22px; }

.post-card-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.post-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Entry Content */
.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}
.entry-content h2, .entry-content h3 { color: var(--primary); margin: 28px 0 12px; }
.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin: 12px 0 18px 24px; }
.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }
.entry-content img { border-radius: 6px; margin: 20px 0; }
.entry-content a { color: var(--secondary); }

/* Single post layout */
.single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

.sidebar { margin-top: 10px; }

.widget {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 28px;
}
.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
    .services-layout { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .single-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .about-grid,
    .excellence-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
    .about-image img, .excellence-image img { height: 320px; }
    .projects-header { grid-template-columns: 1fr; gap: 20px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    #site-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; gap: 0; padding: 16px 0; box-shadow: var(--shadow); }
    #site-nav.open { display: flex; }
    #site-nav a { padding: 12px 30px; border-bottom: 1px solid var(--border); }
    #site-nav a::after { display: none; }
    .header-cta { display: none; }
    .nav-toggle { display: flex; }

    .features-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .need-help-inner { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .post-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   INNER PAGE BANNER (half-height hero)
============================================= */
.inner-banner {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 72px;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,59,122,.68) 0%, rgba(13,59,122,.40) 100%);
}

.inner-banner-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 40px 0;
}

.inner-banner-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.inner-banner-content p {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    max-width: 680px;
}

/* =============================================
   BREADCRUMB BAR
============================================= */
.breadcrumb-bar {
    background: var(--light-bg);
    padding: 28px 0 36px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb a:hover { color: var(--secondary); }

.breadcrumb-sep {
    color: var(--text-muted);
    font-size: 11px;
}

.breadcrumb-bar h1 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--primary);
}

/* =============================================
   TWO-COLUMN CONTENT SECTIONS
============================================= */
.two-col-section {
    padding: 90px 0;
}

.two-col-section.bg-light  { background: var(--light-bg); }
.two-col-section.bg-dark   { background: var(--dark-bg2); }
.two-col-section.bg-white  { background: var(--white); }

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.two-col-grid.reverse .two-col-img { order: -1; }

.two-col-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.two-col-text .label-tag { color: var(--secondary); }
.two-col-text .section-title { margin: 10px 0 18px; }
.two-col-text .section-desc { margin-bottom: 0; font-size: 15px; }

/* Values list (What Makes Us Different) */
.values-list { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(23,193,232,.12);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 22px; height: 22px; }

.value-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   SERVICES PAGE — CALL CENTER BOX
============================================= */
.services-intro-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
    padding: 90px 0;
}

.call-center-box {
    background: var(--primary);
    border-radius: 8px;
    padding: 48px 32px;
    text-align: center;
    color: var(--white);
}

.call-center-icon {
    width: 80px; height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.call-center-icon svg { width: 36px; height: 36px; }

.call-center-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.call-center-box p {
    font-size: 14px;
    color: rgba(255,255,255,.70);
    margin-bottom: 20px;
    line-height: 1.6;
}

.call-center-divider {
    width: 40px; height: 2px;
    background: var(--secondary);
    margin: 0 auto 20px;
}

.call-center-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

/* Services full grid */
.services-full-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.services-full-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-full-header .section-title { margin: 8px 0 14px; }

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =============================================
   PORTFOLIO PAGE
============================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 80px 0;
}

.portfolio-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.portfolio-card-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.portfolio-card:hover .portfolio-card-img { transform: scale(1.05); }

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,59,122,.90) 0%, rgba(13,59,122,.25) 55%, transparent 100%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.portfolio-card-meta {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    margin-bottom: 14px;
    line-height: 1.5;
}

.portfolio-card-btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.60);
    padding: 7px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    align-self: flex-start;
}
.portfolio-card-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-info-section {
    padding: 90px 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-info-heading { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--primary); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.contact-info-intro   { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

.contact-info-items { display: flex; flex-direction: column; gap: 16px; }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text-dark);
}

.contact-info-item-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    color: var(--primary);
    margin-top: 2px;
}
.contact-info-item-icon svg { width: 100%; height: 100%; }

.contact-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--dark-bg2);
    padding: 90px 0;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-form-header .label-tag { color: var(--secondary); }

.contact-form-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-top: 8px;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: 10px;
    padding: 44px 40px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group.full { margin-bottom: 18px; }

.cf-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.cf-label span { color: #e74c3c; }

.cf-input,
.cf-textarea {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--light-bg);
    transition: border-color .2s;
    outline: none;
    width: 100%;
}
.cf-input:focus,
.cf-textarea:focus { border-color: var(--secondary); background: var(--white); }
.cf-input::placeholder,
.cf-textarea::placeholder { color: #aab; }

.cf-textarea { resize: vertical; min-height: 130px; }

.cf-submit {
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 6px;
}
.cf-submit:hover { background: var(--secondary-dark); transform: translateY(-2px); }

.cf-msg {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: none;
}
.cf-msg.success { color: #27ae60; display: block; }
.cf-msg.error   { color: #e74c3c; display: block; }

/* Map */
.contact-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: var(--shadow-lg);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    display: block;
}

/* =============================================
   RESPONSIVE — INNER PAGES
============================================= */
@media (max-width: 900px) {
    .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
    .two-col-grid.reverse .two-col-img { order: 0; }
    .two-col-img img { height: 300px; }
    .services-intro-layout { grid-template-columns: 1fr; }
    .services-full-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-layout { grid-template-columns: 1fr; }
    .contact-map-wrap { min-height: 350px; }
    .contact-map-wrap iframe { min-height: 350px; }
}

@media (max-width: 600px) {
    .cf-row { grid-template-columns: 1fr; }
    .services-full-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .inner-banner { min-height: 320px; }
}
