@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ==========================================================================
   1. VARIABLES & BASE STYLES
   ========================================================================== */
:root {
    --primary: #111a45; /* Dark Navy original style */
    --primary-light: #ffffff; /* White card background */
    --secondary: #f8fafc; /* Light grey backdrop */
    --accent: #ff5100; /* Vivid orange accent */
    --accent-hover: #e04400;
    --accent-rgb: 255, 81, 0;
    --text-white: #ffffff;
    --text-dark: #111a45;
    --text-muted: #6f7c95;
    --text-light: #424f65; /* Dark grey for body readability */
    --bg-dark: #ffffff; /* Page overall bg - LIGHT MODE */
    --bg-light: #f8fafc;
    --border-color: #e2e6ec; /* Light borders */
    --border-dark: rgba(17, 26, 69, 0.08);
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-alt: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

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

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

button, input, select, textarea {
    font-family: inherit;
}

.wrap {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ==========================================================================
   2. TOP BAR & NAVIGATION HEADER
   ========================================================================== */
.site-topbar {
    background-color: var(--primary); /* Dark Navy */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    font-size: 0.85rem;
    font-family: var(--font-alt);
    color: rgba(255, 255, 255, 0.8);
}

.site-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-text {
    display: flex;
    gap: 20px;
}

.topbar-text p {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-text a {
    color: #ffffff;
    font-weight: 500;
}

.topbar-text a:hover {
    color: var(--accent);
}

.topbar-text i {
    color: var(--accent);
}

.social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

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

/* Site Header (Block layout, sits below top bar, above hero slider) */
.site-header {
    position: relative;
    top: 0;
    width: 100%;
    background-color: #ffffff; /* White background matches screenshot */
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    z-index: 100;
    transition: var(--transition);
}

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

.header-brand .logo {
    height: 48px;
    width: auto;
}

/* Navigator menu */
.navigator {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    color: var(--text-dark); /* Dark Navy text in static header */
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item > a:hover {
    color: var(--accent);
}

/* Active and current menu item orange bar */
.menu-item.active > a,
.menu-item.current_page_item > a,
.menu-item.current-menu-item > a {
    color: var(--accent) !important;
}

.menu-item.active > a::after,
.menu-item.current_page_item > a::after,
.menu-item.current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: -16px; /* Sits exactly aligned with header bottom border */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
}

.sub-menu {
    position: absolute;
    top: -9999px; /* Positioned off-screen when hidden to avoid hitbox triggers */
    left: 0;
    background-color: #ffffff; /* Light background for drop downs */
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(17, 26, 69, 0.08);
    list-style: none;
    min-width: 240px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Prevents cursor triggers when hidden */
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border-radius: 4px;
}

.menu-item:hover > .sub-menu {
    top: 100%; /* Positions dropdown below links when active */
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Restores interactions on hover active */
    transform: translateY(0);
}

.sub-menu .menu-item {
    width: 100%;
}

.sub-menu .menu-item > a {
    padding: 10px 25px;
    font-size: 0.9rem;
    color: var(--text-light); /* #424f65 */
    display: block;
    font-weight: 600;
    text-transform: none;
}

.sub-menu .menu-item > a::after {
    display: none;
}

.sub-menu .menu-item > a:hover {
    background-color: var(--bg-light);
    color: var(--accent);
}

/* Nested submenus */
.sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

/* Megamenu dropdown structure */
.megamenu {
    position: static;
}

.megamenu > .sub-menu {
    width: 90%;
    max-width: var(--max-width);
    left: 5%;
    right: 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px;
    gap: 25px;
}

.megamenu > .sub-menu > .menu-item {
    display: flex;
    flex-direction: column;
}

.megamenu > .sub-menu > .menu-item > a {
    font-weight: bold;
    color: var(--text-dark); /* Navy title for megamenu sections */
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 12px;
    padding-bottom: 8px;
    cursor: default;
    text-transform: uppercase;
}

.megamenu > .sub-menu > .menu-item > .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Restores link clickability in column layout */
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.megamenu > .sub-menu > .menu-item > .sub-menu .menu-item a {
    padding: 6px 0;
    color: var(--text-light);
}

.megamenu > .sub-menu > .menu-item > .sub-menu .menu-item a:hover {
    background: transparent;
    color: var(--accent);
}

/* Contact Us Button with Red-Orange Gradient */
.header-info-text .paoc-popup-btn {
    background: linear-gradient(90deg, #ff2a5f 0%, #ff6a00 100%);
    color: var(--text-white);
    font-family: var(--font-alt);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 42, 95, 0.2);
    display: inline-block;
    transition: var(--transition);
}

.header-info-text .paoc-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 42, 95, 0.3);
}

/* Sticky Header styling (White sticky header with shadow) */
.site-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    z-index: 200;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    box-shadow: 0 4px 20px rgba(17, 26, 69, 0.05);
}

.site-header-sticky.is-sticky {
    transform: translateY(0);
}

.site-header-sticky .menu-item > a {
    color: var(--text-dark);
}

.site-header-sticky .menu-item > a:hover {
    color: var(--accent);
}

/* Mobile Toggle Hamburger */
.off-canvas-toggle {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.off-canvas-toggle span,
.off-canvas-toggle span::before,
.off-canvas-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark); /* Dark lines matches white header */
    left: 0;
    transition: var(--transition);
}

.off-canvas-toggle span {
    top: 11px;
}

.off-canvas-toggle span::before {
    top: -8px;
}

.off-canvas-toggle span::after {
    top: 8px;
}

/* Mobile sidebar sliding menu */
.off-canvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background-color: var(--primary); /* Dark Navy */
    z-index: 300;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    padding: 40px 30px;
}

.off-canvas.active {
    transform: translateX(0);
}

.off-canvas-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.off-canvas .off-canvas-toggle {
    align-self: flex-end;
    margin-bottom: 40px;
}

.off-canvas .off-canvas-toggle span {
    background: transparent;
}

.off-canvas .off-canvas-toggle span::before {
    transform: rotate(45deg);
    top: 0;
    background-color: #ffffff;
}

.off-canvas .off-canvas-toggle span::after {
    transform: rotate(-45deg);
    top: 0;
    background-color: #ffffff;
}

.menu-sliding {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.menu-sliding .menu-item a {
    color: var(--text-white);
    font-size: 1.1rem;
    font-family: var(--font-alt);
    font-weight: 500;
}

.menu-sliding .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    margin-top: 10px;
    display: none;
}

.menu-sliding .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
}

/* ==========================================================================
   3. HERO SLIDER & REVOLUTION SLIDER
   ========================================================================== */
.hero-slider-wrap {
    position: relative;
    height: 80vh;
    min-height: 550px;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(120deg, rgba(151, 240, 239, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    padding: 0 20px;
    color: var(--text-dark); /* Dark text on light background slider */
}

.hero-slide h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease both;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-dark); /* Navy heading matches screenshot */
    line-height: 1.25;
}

.hero-slide p {
    font-size: 1.25rem;
    font-family: var(--font-body);
    color: var(--text-light); /* Grey paragraph matches screenshot */
    margin-bottom: 35px;
    animation: fadeInUp 1.2s ease both;
}

/* White button with dark text */
.hero-slide .button {
    display: inline-block;
    background-color: #ffffff;
    color: var(--text-dark);
    font-family: var(--font-alt);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 4px;
    animation: fadeInUp 1.4s ease both;
    box-shadow: 0 4px 15px rgba(17, 26, 69, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.hero-slide .button:hover {
    background-color: var(--accent);
    color: var(--text-white);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 81, 0, 0.25);
}

/* Bottom Orange line on Hero */
.hero-slider-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent);
    z-index: 15;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(17,26,69,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-white);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* ==========================================================================
   4. CONTENT BLOCKS & GRID STYLES
   ========================================================================== */
.section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-bg-classic {
    background-color: var(--bg-light); /* #f8fafc */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.jw-headline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.jw-headline__first {
    font-family: var(--font-alt);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.jw-headline__second {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    display: block;
}

/* Grid layout for services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--primary-light); /* White background */
    border: 1px solid var(--border-color); /* Light grey borders */
    padding: 40px 30px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(17, 26, 69, 0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(17, 26, 69, 0.08);
}

.service-card::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 0%;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.service-card:hover::after {
    height: 100%;
}

.service-icon {
    margin-bottom: 25px;
    height: 64px;
    display: flex;
    align-items: center;
}

.service-icon img {
    height: 54px;
    width: auto;
}

.service-title {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Carousel block */
.quick-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.carousel-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
}

.carousel-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.carousel-card:hover .carousel-card-img {
    transform: scale(1.1);
}

.carousel-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, rgba(17,26,69,0.9) 0%, rgba(17,26,69,0.2) 100%);
    z-index: 2;
}

.carousel-card-content {
    position: relative;
    z-index: 5;
    padding: 30px;
    width: 100%;
}

.carousel-card-title {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.carousel-card-text {
    font-family: var(--font-alt);
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.carousel-card-btn {
    display: inline-block;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: var(--font-alt);
}

.carousel-card-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Testimonial slider layout */
.testimonial-slider-wrap {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 30px;
}

.testimonial-card {
    min-width: calc(50% - 15px);
    background-color: var(--primary-light); /* White background */
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(17, 26, 69, 0.04);
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-comment {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light); /* Darker text for readability */
    font-style: italic;
}

.testimonial-name {
    font-family: var(--font-alt);
    font-weight: 600;
    color: var(--text-dark); /* Dark Navy */
    font-size: 0.9rem;
}

/* ==========================================================================
   5. ABOUT PAGE ELEMENTS & COUNTERS
   ========================================================================== */
.content-header {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.content-header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(17, 26, 69, 0.85) 0%, rgba(17, 26, 69, 0.6) 100%);
    z-index: 1;
}

.content-header-inner {
    position: relative;
    z-index: 5;
    color: var(--text-white);
}

.content-header h1 {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.content-header .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Counters section */
.counters-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 50px 0;
}

.counter-box {
    text-align: center;
    background-color: var(--primary-light); /* White */
    padding: 40px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(17, 26, 69, 0.04);
}

.counter-number {
    font-family: var(--font-alt);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Story Section */
.story-text {
    max-width: 900px;
    margin: 0 auto;
}

.story-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Button general */
.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-white);
    font-family: var(--font-alt);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 81, 0, 0.2);
}

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

/* ==========================================================================
   6. TEAM PAGE DESIGN
   ========================================================================== */
.team-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.team-grid-title {
    font-size: 2.2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
}

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

.profile-card {
    background-color: var(--primary-light); /* White */
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(17, 26, 69, 0.04);
}

.profile-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(17, 26, 69, 0.08);
}

.profile-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
    text-align: center;
}

.profile-name {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: var(--font-alt);
    font-weight: 600;
}

.profile-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   7. CONTACT PAGE & FORM STYLES
   ========================================================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background-color: var(--primary-light); /* White */
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 6px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(17, 26, 69, 0.04);
}

.info-card-icon {
    font-size: 2rem;
    color: var(--accent);
}

.info-card-title {
    font-family: var(--font-alt);
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form-wrap {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-light); /* White */
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(17, 26, 69, 0.06);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-alt);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark); /* Navy text */
}

.form-control {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 81, 0, 0.1);
}

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

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-group .title {
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: block;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-light);
}

.checkbox-item input {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

.submit-btn {
    background-color: var(--accent);
    color: var(--text-white);
    border: none;
    padding: 14px 40px;
    border-radius: 4px;
    font-family: var(--font-alt);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 81, 0, 0.3);
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   8. PORTFOLIO & CASE STUDY PAGE LAYOUTS
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--primary-light); /* White */
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 8px 22px;
    border-radius: 4px;
    font-family: var(--font-alt);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(17, 26, 69, 0.03);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-white);
}

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

.portfolio-card {
    background-color: var(--primary-light); /* White */
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(17, 26, 69, 0.04);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(17, 26, 69, 0.08);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-category {
    font-family: var(--font-alt);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio-card-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.portfolio-link {
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
}

.portfolio-link:hover {
    color: var(--accent);
}

/* Case Study detail styling */
.case-study-hero {
    padding: 160px 0 60px 0;
    background-color: var(--primary); /* Navy Hero remains dark for premium contrast */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-study-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    background-color: #ffffff; /* White background */
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(17, 26, 69, 0.04);
}

.meta-item-title {
    font-family: var(--font-alt);
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.meta-item-value {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.case-study-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 80px 0;
}

.case-study-body h2 {
    font-size: 2rem;
    margin: 40px 0 20px 0;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.case-study-body h2:first-child {
    margin-top: 0;
}

.case-study-body p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.case-study-sidebar-box {
    background-color: var(--primary-light); /* White */
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(17, 26, 69, 0.04);
}

.case-study-sidebar-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

/* ==========================================================================
   9. BLOG & TECH DETAIL STYLING
   ========================================================================== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.service-featured-section {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-featured-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-featured-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-featured-img {
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.offerings-section {
    margin-bottom: 80px;
}

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

.offering-card {
    background-color: var(--primary-light); /* White */
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 6px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(17, 26, 69, 0.04);
}

.offering-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(17, 26, 69, 0.08);
}

.offering-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: var(--font-alt);
    font-weight: 600;
}

.offering-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.highlight-banner {
    background-color: var(--accent);
    color: var(--text-white);
    padding: 50px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 80px;
}

.highlight-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.border-gradient {
    border: 1px solid var(--border-color);
    background-color: var(--primary-light); /* White */
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(17, 26, 69, 0.04);
    border-left: 4px solid var(--accent);
}

.border-gradient h3 {
    font-family: var(--font-alt);
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.border-gradient p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   10. SITE FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--primary); /* Navy background */
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-widgets-inner {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-aside-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ctaBox {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 6px;
}

.ctaBox h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.ctaBox p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.ctaBox .button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-white);
    font-family: var(--font-alt);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.main-flex-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.menu-footer-menu-container ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-footer-menu-container b {
    color: var(--text-white);
    font-family: var(--font-alt);
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.menu-footer-menu-container a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.menu-footer-menu-container a:hover {
    color: var(--accent);
}

.infoBox-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
    list-style: none;
}

.infoBox-footer li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.infoBox-footer i {
    font-size: 1.8rem;
    color: var(--accent);
}

.infoContent {
    font-size: 0.85rem;
}

.infoContent span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

.infoContent a {
    font-weight: 600;
    color: var(--text-white);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    font-size: 0.85rem;
    font-family: var(--font-alt);
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.go-to-top a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.5);
}

.go-to-top a:hover {
    color: var(--accent);
}

/* ==========================================================================
   11. ANIMATIONS & MEDIA QUERIES
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .menu {
        gap: 15px;
    }
    .hero-slide h1 {
        font-size: 3rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-widgets-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-topbar {
        display: none;
    }
    .site-header {
        top: 0;
    }
    .navigator {
        display: none;
    }
    .header-info-text {
        display: none;
    }
    .off-canvas-toggle {
        display: block;
    }
    .hero-slide h1 {
        font-size: 2.2rem;
    }
    .hero-slide p {
        font-size: 1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .quick-carousel {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        min-width: 100%;
    }
    .counters-section {
        grid-template-columns: 1fr;
    }
    .team-intro-grid {
        grid-template-columns: 1fr;
    }
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 30px 20px;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .case-study-meta {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-study-layout {
        grid-template-columns: 1fr;
    }
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    .service-featured-section {
        flex-direction: column;
    }
    .main-flex-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .profiles-grid {
        grid-template-columns: 1fr;
    }
    .case-study-meta {
        grid-template-columns: 1fr;
    }
    .main-flex-box {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   New Premium Sections (Process, Estimator, Partners, FAQ)
   ========================================== */

/* Process Timeline Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.process-step {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: var(--transition);
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(17, 26, 69, 0.06);
    border-color: var(--accent);
}
.process-number {
    font-family: var(--font-alt);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #ff5100 0%, #ff2a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    opacity: 0.8;
}
.process-title {
    font-family: var(--font-alt);
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.process-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Project Estimator Section */
.calculator-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.calculator-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.calculator-group label {
    font-family: var(--font-alt);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.calc-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.calc-cb-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.calc-cb-label input {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}
.calc-cb-label:hover {
    border-color: var(--accent);
    background: #ffffff;
}
.calc-select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-family: var(--font-alt);
    font-weight: 600;
    color: var(--text-light);
    background: #ffffff;
    cursor: pointer;
}
.calc-range {
    width: 100%;
    accent-color: var(--accent);
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    cursor: pointer;
}
.calculator-display {
    display: flex;
    align-items: center;
}
.calc-result-box {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1e2858 100%);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    box-shadow: 0 10px 25px rgba(17, 26, 69, 0.15);
}
.calc-result-title {
    font-family: var(--font-alt);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a0aec0;
}
.calc-result-price {
    font-family: var(--font-alt);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 15px 0;
    color: #ffffff;
}
.calc-result-note {
    font-size: 0.85rem;
    color: #cbd5e0;
    line-height: 1.5;
    margin-bottom: 25px;
}
.calc-result-box .paoc-popup-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 6px;
    background: linear-gradient(90deg, #ff2a5f 0%, #ff6a00 100%);
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}
.calc-result-box .paoc-popup-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}

/* Integrations Partner Grid */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}
.partner-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    width: calc(20% - 20px);
    min-width: 180px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}
.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(17, 26, 69, 0.05);
}
.partner-icon {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    transition: var(--transition);
}
.partner-card:hover .partner-icon {
    color: var(--accent);
}
.partner-card h4 {
    font-family: var(--font-alt);
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}
.partner-badge {
    display: inline-block;
    font-size: 0.75rem;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* FAQ Accordion Section */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-toggle {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-alt);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-toggle:hover {
    color: var(--accent);
}
.faq-icon {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: bold;
}
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}
.faq-panel p {
    padding-bottom: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsiveness for New Sections */
@media (max-width: 991px) {
    .calculator-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .partner-card {
        width: calc(33.33% - 20px);
    }
}
@media (max-width: 600px) {
    .partner-card {
        width: calc(50% - 20px);
    }
    .calc-cb-label {
        width: 100%;
        justify-content: center;
    }
}

/* Timeline Milestones Section */
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    position: relative;
}
.timeline-container::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: var(--border-color);
}
.timeline-item {
    display: flex;
    gap: 30px;
    position: relative;
}
.timeline-year {
    font-family: var(--font-alt);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(90deg, #ff5100 0%, #ff2a5f 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 81, 0, 0.2);
    z-index: 2;
    flex-shrink: 0;
}
.timeline-content {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    flex-grow: 1;
    transition: var(--transition);
}
.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(17, 26, 69, 0.04);
}
.timeline-content h3 {
    font-family: var(--font-alt);
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 25px;
    }
    .timeline-year {
        width: 55px;
        height: 55px;
        font-size: 1rem;
    }
    .timeline-item {
        gap: 15px;
    }
}
