:root {
    --primary-color: #0073cc;
    --primary-hover: #005bb5;
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --bg-light: #f8f9fa;
    --bg-dark: #002244;
    --blue-gradient: linear-gradient(135deg, #004494 0%, #00d4ff 100%);
    --purple-gradient: linear-gradient(135deg, #003380 0%, #0073cc 100%);
    --card-blue: #0073cc;
    --card-purple: #005bb5;
    --font-heading: 'Montserrat', sans-serif;
    --font-main: 'Open Sans', sans-serif;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    border-radius: 40px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 115, 204, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Typography Highlights */
.highlight {
    position: relative;
    display: inline-block;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    z-index: -1;
}

/* Topbar */
.topbar {
    display: flex;
    justify-content: space-between;
    height: 40px;
    background-color: #f2f2f2;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    position: relative;
    z-index: 101;
}

.topbar-left {
    background-color: #3da047;
    color: #ffffff;
    padding: 0 40px 0 50px;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
    position: relative;
    flex: 0 1 auto;
    min-width: 45%;
}

.topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 50px 0 40px;
    color: #3da047;
    flex: 1;
}

.topbar-icon {
    margin-right: 8px;
    font-size: 16px;
    line-height: 1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: padding 0.4s cubic-bezier(0.2, 0.75, 0.2, 1), background-color 0.4s ease;
}

.navbar.scrolled {
    padding: 10px 50px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar nav ul.nav-links {
    display: flex;
    gap: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.navbar nav ul li {
    position: relative;
}

.navbar nav ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    outline: none;
}

.navbar nav ul li a:hover {
    color: var(--primary-color);
}

.dropdown > a::after {
    content: " \25BC";
    font-size: 0.7em;
    color: #00aeef;
    margin-left: 5px;
    vertical-align: middle;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 300px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0;
    border: 2px solid #00aeef;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 20px !important;
    font-weight: 500;
    font-size: 0.95rem;
    color: #333333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #004b7b;
    color: #ffffff !important;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    background-color: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.2, 0.75, 0.2, 1), visibility 1s;
    display: flex;
    align-items: center;
    padding: 150px 10% 120px;
    background-attachment: fixed !important;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* Enablement Section */
.enablement {
    position: relative;
    padding: 100px 0;
}

.enablement-text-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 800;
    color: rgba(0,0,0,0.02);
    z-index: -1;
    white-space: nowrap;
}

.enablement-content {
    max-width: 600px;
}

.enablement h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.enablement .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.enablement ul {
    margin-bottom: 40px;
}

.enablement ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.enablement ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #5b9bd5;
    font-weight: bold;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background-color: #fafafa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.card {
    border-radius: 8px;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.2, 0.75, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card:not(.has-image) {
    padding: 40px 30px;
}

.card.has-image .card-text-content {
    padding: 40px 30px 20px 30px;
    flex: 1;
}

.card-image-wrap {
    width: 100%;
    margin-top: 10px;
    margin-bottom: -15px;
    transition: transform 0.5s cubic-bezier(0.2, 0.75, 0.2, 1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.card-image-wrap img {
    max-width: 90%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

.card:hover .card-image-wrap {
    transform: translateY(-8px);
}

.card-blue {
    background-color: var(--card-blue);
}

.card-white {
    background-color: #ffffff;
    color: var(--text-dark);
}

.card-white .card-subtitle {
    color: var(--text-muted);
}

.card-purple {
    background-color: var(--card-purple);
}

.card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.card-subtitle {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}

.card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.card ul li::before {
    content: '-';
    position: absolute;
    left: 0;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 51, 128, 0.85) 0%, rgba(0, 115, 204, 0.95) 100%), url('/images/bg-servers.png') center/cover fixed;
    padding: 80px 0;
    color: var(--text-light);
    clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
    margin-top: 40px;
    margin-bottom: 20px;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
}

.cta-btn {
    background-color: #ffffff;
    color: #004494;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    background-color: #f8f9fa;
    color: #002244;
}

/* Footer */
.footer {
    background-color: #0c5075;
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list li a {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links-list li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.certification-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cert-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #004494;
    border: 2px solid #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.cert-circle span {
    font-size: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Scroll Animations (Kopis Style) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.75, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Button & Hover enhancements */
.btn-primary {
    background: linear-gradient(90deg, #3da047, #55c760);
    background-size: 200% auto;
    transition: 0.5s;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(61, 160, 71, 0.5);
}

.card {
    transition: all 0.5s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.case-studies-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.case-text {
    flex: 1;
}

.case-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.case-text ul {
    margin: 30px 0;
}

.case-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.case-text ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--card-blue);
}

.case-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: var(--blue-gradient);
    border-radius: 8px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

.case-studies-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.case-studies-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 800;
    color: rgba(0,0,0,0.02);
    z-index: -1;
    white-space: nowrap;
}

.case-studies-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.case-study-block {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.case-study-content {
    flex: 1;
}

.case-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.case-study-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.case-study-image {
    flex: 1;
}

.flag-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    clip-path: none;
    background: #ccc;
}

/* Partners / Logo Cloud */
.partners {
    padding: 80px 0;
    background-color: #ffffff;
}

.partners-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partners-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}

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

.partner-logo {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

.partner-logo:nth-child(even) {
    animation-delay: 1s;
}

.partner-logo:nth-child(3n) {
    animation-delay: 2s;
}

.partner-logo:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Scheduler Section */
.scheduler-section {
    position: relative;
    padding-bottom: 80px;
}

.scheduler-banner {
    background: var(--blue-gradient);
    color: white;
    padding: 100px 0 150px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    text-align: right;
}

.scheduler-banner h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.calendar-widget {
    background-color: #004494;
    color: white;
    max-width: 400px;
    margin: -100px auto 0;
    position: relative;
    z-index: 10;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.calendar-header {
    text-align: center;
    margin-bottom: 20px;
}

.calendar-header p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.month-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
}

.day-name {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.7;
    margin-bottom: 10px;
}

.day {
    font-size: 0.9rem;
    padding: 5px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.day:hover {
    background-color: var(--primary-color);
}

/* Company Profile Page */
.company-profile-page {
    background-color: #fcfcfc;
}

.cp-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    color: white;
}

.cp-bg-text {
    font-size: 10rem;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    letter-spacing: 10px;
}

.cp-title {
    font-size: 3.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.cp-welcome {
    padding: 80px 20px;
    text-align: center;
    max-width: 900px;
}

.cp-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0073cc;
    margin-bottom: 30px;
}

.cp-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.cp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px 80px;
}

.cp-stats .stat-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 8px;
    transition: transform 0.3s;
}

.cp-stats .stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon-wrap {
    width: 70px;
    height: 70px;
    background: #0073cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon {
    font-size: 30px;
    color: white;
}

.cp-stats h3 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.cp-stats p {
    color: #777;
    font-size: 1.1rem;
    font-weight: 600;
}

.cp-join {
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.cp-join-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cp-join-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn-white {
    background: white;
    color: #0073cc;
    padding: 15px 35px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
}

.btn-white:hover {
    background: #f0f0f0;
}

.cp-map-section {
    padding: 80px 20px;
}

.cp-map-grid {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 30px;
}

.cp-branches {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.branch h4 {
    color: #0073cc;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.branch p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

    .cp-map-container iframe {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* Mobile Toggle Buttons */
    .mobile-toggle-btn {
        display: none;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
    }
    
    .mobile-toggle-btn .bar {
        display: block;
        width: 30px;
        height: 4px;
        margin: 6px 0;
        border-radius: 2px;
        transition: 0.3s;
    }
    
    .bar-orange {
        background-color: #ff9800; /* Orange color */
    }
    
    .bar-red {
        background-color: #f44336; /* Red color */
    }
    
    .welcome-section {
        background-image: url('/images/gear-bg-faint.png'); /* Add faint gear bg if needed, or adjust SVG */
        background-size: cover;
        background-position: center;
    }

    @media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cp-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .cp-map-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cp-stats {
        grid-template-columns: 1fr;
    }
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .topbar {
        display: none !important; /* Hide completely on mobile as per screenshot */
    }
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }
    .navbar.scrolled {
        padding: 10px 15px;
    }
    .mobile-toggle-btn {
        display: block;
    }
    .desktop-btn {
        display: none !important;
    }
    .logo {
        flex: 1;
        justify-content: center;
    }
    .navbar nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        display: none;
        border-top: 1px solid #eee;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 101;
    }
    .navbar nav.open {
        display: block;
    }
    .navbar nav ul.nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 0;
    }
    .navbar nav ul.nav-links li {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }
    .navbar nav ul.nav-links li a {
        padding: 15px 20px !important;
        width: 100%;
    }
    .logo-img {
        height: 40px !important;
    }
    .logo span {
        font-size: 1.5rem !important;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-light);
        display: none;
        border: none;
        min-width: 100%;
        text-align: center;
    }
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
    .dropdown-menu li a {
        padding: 12px 20px !important;
        padding-left: 40px !important;
    }
    .hero-slide {
        padding: 120px 5% 80px;
    }
    .hero-content {
        text-align: center; /* Center hero text */
    }
    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.3;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 16px !important;
    }
    
    /* Welcome section specific mobile styling */
    .welcome-section .container {
        text-align: center !important;
    }
    .welcome-section h2 {
        font-size: 24px !important;
        color: #003366 !important;
    }
    .welcome-section h4 {
        font-size: 14px !important;
        color: #0088cc !important;
    }
    .welcome-section p {
        text-align: center;
    }
    .enablement-text-bg {
        font-size: 4rem;
    }
    .case-studies-bg-text {
        font-size: 3rem;
    }
    .case-studies-intro {
        flex-direction: column;
        text-align: center;
    }
    .case-image {
        justify-content: center;
    }
    .case-text ul li {
        text-align: left;
    }
    .cp-bg-text {
        font-size: 4rem;
    }
    .cp-title {
        font-size: 2.5rem;
    }
    .section-main-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px !important;
    }
    .logo span {
        font-size: 1.2rem !important;
    }
    .logo-img {
        height: 30px !important;
        margin-right: 8px !important;
    }
    .logo div div span {
        font-size: 0.6rem !important;
    }
}

/* --- Our Services Slider Section --- */
.our-services-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, #f8f9fa 0%, #eef2f5 100%);
}

.section-top-label {
    color: #0073cc;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-main-heading {
    color: #004b7b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.services-slider-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 20px 10px 40px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.services-slider-container::-webkit-scrollbar {
    height: 8px;
}
.services-slider-container::-webkit-scrollbar-track {
    background: #e1e8ed;
    border-radius: 4px;
}
.services-slider-container::-webkit-scrollbar-thumb {
    background: #0073cc;
    border-radius: 4px;
}

.services-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.service-slide-card {
    scroll-snap-align: center;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 12px 12px 0 12px;
    transition: transform 0.3s ease;
}

.service-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 3px #0099ff, 0 10px 30px rgba(0,153,255,0.15);
}

.card-img {
    width: 100%;
    height: 180px;
    border-bottom: 4px solid #0099ff;
    overflow: hidden;
}

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

.card-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: absolute;
    top: 157px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #14497e;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: #004b7b;
}

.card-body {
    padding: 50px 20px 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-body h4 {
    color: #004b7b;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.btn-view-more {
    background-color: #0099ff;
    color: white;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease;
}
.btn-view-more:hover {
    background-color: #007bb5;
    color: white;
}
.services-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.services-slider-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}
.services-slider-dots .dot.active {
    opacity: 1;
}
/* Hide scrollbar for the services slider */
.services-slider-container::-webkit-scrollbar {
    display: none;
}
.services-slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Utility classes */
.text-center {
    text-align: center !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.mt-5 {
    margin-top: 3rem !important;
}

/* Why Choose Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}
.why-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.why-card {
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-icon-container {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    transition: height 0.3s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
}

.why-title {
    color: #14497e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.why-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

/* Hover States */
.why-card:hover {
    background-color: #0099ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,153,255,0.2);
}

.why-card:hover .why-icon-container {
    height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.why-card:hover .why-title {
    color: #ffffff !important;
}

.why-card:hover .why-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

/* Hero Slide Up Animations */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    display: flex;
    align-items: center;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.slide-up-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
.hero-slide.active .slide-up-text {
    opacity: 1;
    transform: translateY(0);
}
.slide-up-text.delay-1 {
    transition-delay: 0.2s;
}
