/* Reset and Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Tahoma, sans-serif;
    /* Classic web-safe fonts */
    color: #333;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background-color: #2c3e50;
    color: #ffffff;
    font-size: 12px;
    padding: 5px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-switcher button {
    background: none;
    border: none;
    color: #bdc3c7;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 5px;
    transition: color 0.3s;
}

.lang-switcher button:hover {
    color: #ffffff;
}

.lang-switcher button.active {
    color: #00A8FF;
}

.top-contact .icon {
    margin-right: 5px;
}

.top-contact .spacer {
    margin: 0 10px;
    color: #7f8c8d;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: auto;
    max-height: 55px;
    transition: max-height 0.3s ease;
}

header.scrolled .logo img {
    max-height: 45px;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0055A4;
    transition: width 0.3s ease;
}

.main-menu a:hover {
    color: #0055A4;
}

.main-menu a:hover::after {
    width: 100%;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #0055A4;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn-primary {
    background: #0055A4;
    color: #ffffff;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 85, 164, 0.2);
}

.btn-primary:hover {
    background: #003366;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 85, 164, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0055A4;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0055A4;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #0055A4;
    color: #fff;
}

.btn-primary.large {
    padding: 12px 20px;
    font-size: 16px;
}

.btn-secondary {
    background: linear-gradient(to bottom, #004488 0%, #002244 100%);
    color: #ffffff;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #001122;
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background: #0d1f3c;
    min-height: 85vh;
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 85, 164, 0.15) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="%23ffffff" fill-opacity="0.03" fill-rule="evenodd"><path d="M0 40h40V0H0v40zm1 0V1h38v38H1z"/></g></svg>');
    z-index: 1;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 25px;
    font-weight: 800;
    color: #ffffff;
}

.hero-text .accent-text {
    display: inline-block;
    background: linear-gradient(90deg, #00A8FF, #0055A4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-secondary.white-border {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-secondary.white-border:hover {
    border-color: #00A8FF;
    background: #00A8FF;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

/* Services Section */
.services {
    background-color: #ffffff;
    padding: 50px 0;
}

.section-title {
    text-align: center;
    color: #003366;
    font-size: 28px;
    margin: 0;
}

.section-title.left-align {
    text-align: left;
}

.separator {
    width: 150px;
    height: 2px;
    background-color: #cccccc;
    margin: 10px auto 40px;
}

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

.service-box {
    text-align: left;
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-box img:hover {
    transform: scale(1.05);
}

.service-box h3 {
    color: #0055A4;
    font-size: 18px;
    margin: 15px 0 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

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

.service-details li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.service-details li::before {
    content: "•";
    color: #0055A4;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.center-btn {
    text-align: center;
}

/* About Section Corporate */
.about-section.corporate {
    background-color: #ffffff;
    padding: 100px 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.corporate-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    border-left: 3px solid #0055A4;
    padding-left: 20px;
}

.info-label {
    display: block;
    font-size: 13px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

.about-stats-corporate {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: auto;
}

.stat-box {
    background-color: #f4f7f9;
    padding: 30px;
    border: 1px solid #d0dce0;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #003366;
    display: inline-block;
}

.stat-box .stat-suffix {
    font-size: 32px;
    font-weight: 800;
    color: #0055A4;
    display: inline-block;
    margin-left: 2px;
}

.stat-box .stat-desc {
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
    font-weight: bold;
}

.top-contact .label {
    font-weight: bold;
    color: #bdc3c7;
    margin-right: 5px;
}

.location-chips {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.chip {
    background-color: #003366;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Realisations Section */
.realisations {
    background: linear-gradient(to bottom, #f0f4f8 0%, #e0e8f0 100%);
    padding: 50px 0;
    border-top: 1px solid #d0d8e0;
    border-bottom: 1px solid #d0d8e0;
}

.realisations .subtitle {
    color: #004488;
    font-size: 18px;
    margin: 5px 0;
}

.realisations .desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

.realisations-grid {
    display: flex;
    justify-content: space-between;
}

.realisation-box {
    width: 31%;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.realisation-box img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eeeeee;
}

.realisation-caption {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #333333;
    font-size: 14px;
}

/* Contact & About Section */
.contact-about {
    padding: 50px 0;
    background: url('images/contact-bg.jpg') center bottom no-repeat;
    background-size: cover;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #dddddd;
}

.about-box {
    width: 45%;
    display: flex;
    align-items: center;
}

.founder-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-right: 20px;
}

.founder-details h3 {
    color: #003366;
    margin: 0 0 5px;
    font-size: 20px;
}

.founder-details .role {
    color: #666;
    font-style: italic;
    margin: 0 0 15px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.contact-info li {
    font-size: 14px;
    margin-bottom: 5px;
    color: #0055A4;
    font-weight: bold;
}

.founder-desc {
    font-size: 13px;
    color: #555;
}

.contact-form-box {
    width: 50%;
}

.contact-form-box h3 {
    color: #003366;
    margin-top: 0;
    font-size: 22px;
}

.form-row {
    display: flex;
    justify-content: space-between;
}

.form-info {
    width: 35%;
    font-size: 13px;
    color: #555;
}

.form-info p {
    margin-bottom: 10px;
}

.form-inputs {
    width: 60%;
}

.form-inputs input,
.form-inputs textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.form-inputs input {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.form-inputs button {
    float: right;
}

/* Map Container */
.map-container {
    margin-top: 50px;
    border: 1px solid #ddd;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

/* Corporate Footer */
.corporate-footer {
    background: linear-gradient(135deg, #1c2833 0%, #2c3e50 100%);
    color: #ecf0f1;
    padding: 80px 0 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #0055A4;
}

.footer-logo {
    display: inline-block;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.footer-logo img {
    max-height: 50px;
    display: block;
}

.footer-desc {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #0055A4;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-details li {
    display: flex;
    gap: 12px;
    color: #bdc3c7;
    line-height: 1.6;
}

.contact-details i {
    color: #0055A4;
    font-size: 16px;
    margin-top: 4px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-copy {
    margin: 0;
    color: #95a5a6;
}

.footer-legal-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .contact-details li {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
        padding: 80px 40px;
        z-index: 1000;
    }

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

    .main-menu ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-menu li {
        margin: 15px 0;
    }

    .main-menu a {
        font-size: 18px;
    }

    .header-btn {
        display: none;
        /* Hide button on mobile menu to keep it clean */
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-image {
        width: 100%;
        margin-top: 40px;
    }

    .hero-text h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .realisations-grid {
        flex-direction: column;
        align-items: center;
    }

    .realisation-box {
        width: 100%;
        max-width: 450px;
        margin-bottom: 25px;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }

    .about-box, 
    .contact-form-box {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-info,
    .form-inputs {
        width: 100%;
    }

    .form-info {
        margin-bottom: 20px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-text {
        width: 100%;
    }

    .corporate-info-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-stats-corporate {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 150px;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .top-contact {
        flex-direction: column;
        gap: 5px;
    }

    .top-contact .spacer {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .realisation-box {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-info,
    .form-inputs {
        width: 100%;
    }

    .form-info {
        margin-bottom: 15px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo img {
        max-height: 50px;
    }

    .hero-text h1 {
        font-size: 28px;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 24px;
    }

    .founder-photo {
        width: 120px;
        height: 120px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .about-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .founder-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .about-stats-corporate {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 100%;
        max-width: 300px;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Project Cards Grid
   =========================== */
.project-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
}

.project-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8edf4;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 85, 164, 0.15);
    border-color: #0055A4;
}

/* Image zone */
.project-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.project-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.project-card:hover .project-card-img-wrap img {
    transform: scale(1.06);
}

/* Category badge */
.project-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 85, 164, 0.88);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

/* Card body */
.project-card-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0d1f3c;
    margin: 0;
    line-height: 1.35;
    position: relative;
    padding-bottom: 12px;
}

.project-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: #0055A4;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.project-card:hover .project-card-title::after {
    width: 60px;
}

.project-card-desc {
    font-size: 13.5px;
    color: #5a6880;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .project-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 520px) {
    .project-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-card-img-wrap {
        height: 180px;
    }
}

/* ===========================
   Service Cards v2
   =========================== */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.svc-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
}

.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 85, 164, 0.1);
    border-color: #0055A4;
}

/* Icon box */
.svc-icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.svc-icon-wrap svg {
    width: 32px;
    height: 32px;
}

/* Content */
.svc-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.svc-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #0d1f3c;
    margin: 0;
}

.svc-card-desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.svc-card-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-card-list li {
    font-size: 13.5px;
    color: #475569;
    padding-left: 20px;
    position: relative;
}

.svc-card-list li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 12px;
    top: 2px;
}

/* CTA Link */
.svc-cta {
    margin-top: auto;
    color: #0055A4;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.svc-cta i {
    font-size: 12px;
}

.svc-card:hover .svc-cta {
    gap: 12px;
}

/* Responsive */
@media (max-width: 960px) {
    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 540px) {
    .services-grid-v2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-card {
        padding: 20px 18px;
    }
}

/* Toast Notification */
.toast-notif {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    padding: 16px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid #0055A4;
}

.toast-notif.show {
    transform: translateX(0);
}

.toast-notif.success {
    border-left-color: #27ae60;
}

.toast-notif.error {
    border-left-color: #e74c3c;
}

.toast-notif i {
    font-size: 20px;
}

.toast-notif.success i {
    color: #27ae60;
}

.toast-notif.error i {
    color: #e74c3c;
}

.toast-notif span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}