/*! tailwindcss v2.1.1 | MIT License | https://tailwindcss.com */


/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

*,
::after,
::before {
	box-sizing: border-box
}

:root {
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
    --primary-color: #00285E;
    --secondary-color: #2A3990;
    --yellow: #FFCD11;
}

.h3,h3{
    font-size: calc(1rem + .6vw) !important;
}

/* Modal Styles */
    .modal-help {
    padding: 1rem;
}

.modal-help .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-help .modal-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
}

.modal-help .modal-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.modal-help .form-label {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-help .form-control {
    border-radius: 8px;
    padding: 0.8rem;
    border: 1px solid #dee2e6;
}

.modal-help .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.modal-help .form-check {
    margin-bottom: 0.5rem;
}

.modal-help .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.modal-help .btn-submit {
    background-color: var(--yellow);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-help .btn-close {
    margin-top:-125px !important;
    padding: 1rem !important;
}

.modal-help .help-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .modal-help .modal-title {
        font-size: 1.5rem;
    }
}

/* Header Styles */
.header {
    background-color: white;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s ease;  /* Animasi smooth untuk shadow */
}

/* Class yang akan ditambahkan saat scroll */
.header-shadow {
    box-shadow: 0px 4px 4px -1px rgba(12, 12, 13, 0.1);
}


.logo {
    height: 30px;
}

.nav-menu {
    display: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 4rem 1.5rem;
    transition: left 0.3s ease;
    z-index: 1050;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin: 1rem 0;
}

.mobile-nav li.nav-active {
    width:40%;
    border-bottom: 3px solid #FFC000;
}

.mobile-nav a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 0.5rem 0;
    position: relative;
}

.mobile-nav a.active {
    color: var(--primary-color);
}

.mobile-nav a.active::after,.mobile-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #FFC000;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1040;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
    }
}

ul.header-menu-navigation {
	list-style-type: none;
	margin-top: 5px;
	padding: 6px;
	float: right
}

ul.header-menu-navigation li {
	float: left;
	margin-right: 10px;
    position: relative;
    cursor: pointer;
    padding-bottom: 3px;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.3s ease;
}

ul.header-menu-navigation li a {
	display: block;
	padding: 8px;
	font-style: normal;
	/* font-weight: 600; */
	font-size: 16px;
	line-height: 16px;
    color:#153D6E;
}

ul.header-menu-navigation li.nav-active,
ul.header-menu-navigation li:hover {
    border-bottom: 3px solid #FFC000;
}



.cta-button {
    background-color: var(--yellow);
    color: #153D6E;
    padding: 0.5rem 0.8rem;
    border: none;
    border-radius: 10px;
    /* font-weight: bold; */
    font-family: 'Titillium Web';
    display: inline-block;
    text-decoration: none;
    font-size:12px;
    margin-top:25px;
}

.contact-btn {
    background-color: var(--yellow);
    color: black;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    /* font-weight: bold; */
    font-family: 'Titillium Web';
}

/* Hero Section */
.hero {
    background: white;
    color: white;
    height:30vh !important;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0,0,0,0.5); */
}

.hero-content {
    position: absolute;
    z-index: 1;
    padding:3rem 2.5rem;
    margin-top:40px;
}

.hero h1 {
    font-size: 2.5rem !important;
    max-width: 450px !important;
    margin-bottom: 1rem;
}
.splide{
    position:absolute;
    width:100%;
    height:500px;
    margin-top:500px;
}
.splide__arrow {
    background:#FFCD11 !important;
    opacity: 1 !important;
}
.splide__pagination{
    left:5% !important;
    bottom:7rem !important; 
}
.splide__slide img{
    height:500px;
    width:100%;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 0 !important;
    }

    .splide{
        margin:0;
        height: 450px;
    }
    .splide__slide img{
        border-radius: 0;
        height: 450px;
    }

}

/* Hero Section Products */
.product-card.slick-slide{
    margin:0 10px !important;
}

.hero-product {
    background: linear-gradient(270deg, #153D6E 9.9%, #2876D4 94.1%);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    margin-top:105px;
}

.hero-product h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-product p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem auto 2rem;
    max-width: 600px;
}

.tab-button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
}

.tab-button.active {
    background: rgba(255, 235, 176, 1);
    border: 2px solid var(--yellow);
    color: rgba(21, 61, 110, 1);
    font-weight: 500;
    border-radius: 8px;
}

.tab-button:not(.active) {
    background: rgba(220, 226, 233, 1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: rgba(21, 61, 110, 1);
    font-weight: 500;
}

/* Product Hero */
.product-hero {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.product-hero-content-icon{
    max-width:120px;
    height:60px;
    margin-bottom:10px;
}

.product-hero-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.product-hero-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-hero-image {
    width: 672px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Product Cards */
.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    /* padding: 2rem; */
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    max-height: 150vh;
}
.product-card-image{
    height:250px;
}
/* .product-card-image{
    max-height:150px;
}
.product-card-description{
    max-height: 150px;
} */
.product-card-image,.product-card-description{
    flex: 1;
    padding: 20px;
}


.product-card img {
    width: 100px;
    height: auto;
    /* margin-bottom: 1rem; */
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card ul {
    text-align: left;
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.product-card li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    padding-left: 1.5rem;
    position: relative;
}

.product-card li:before {
    content: "•";
    color: var(--yellow);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

@media (max-width:768px) {
    .tab-nav {
        margin: 0 1rem 1rem;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .product-hero {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        margin: 1rem 0;
    }

    .product-hero-content {
        order: 2;
        padding:1rem;
    }

    .product-hero-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .product-hero-content p {
        font-size: 0.9rem;
    }

    .product-hero-image {
        order: 1;
        height: 200px;
        width:100%;
        border-radius: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .product-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .product-card img {
        width: 150px;
    }

    .product-card h3 {
        font-size: 1.2rem;
    }

    .product-card ul {
        margin-bottom: 1rem;
    }

    .product-card li {
        font-size: 0.9rem;
    }
    
}


/* Solutions Section */
.solutions {
    margin-top:20px;
    padding: 25rem 1rem 3rem 1rem;
    color: white;
    background: linear-gradient(270deg, #153D6E 9.9%, #2876D4 94.1%);
    border-top-left-radius: 50% 25%;
}

.solutions h2 {
    margin-left: 140px;
    margin-bottom: 2rem;
    font-size: 36px;
}

.solutions-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.solution-card {
    background: white;
    border-radius: 10px;
    padding:3rem;
    color: black;
    margin:5px;
}
.solution-card .solution-main-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}
.solution-card .solution-second-image{
    width:102px;
    height:50px;
}
.slick-next:before, .slick-prev:before {
    color:#FFCD11 !important;
    opacity:1 !important;
}

@media (max-width: 768px) {
    .solutions {
        /* margin-top:0; */
        padding: 16rem 1rem 3rem 1rem;
        border-top-left-radius: 0;
    }
    .solutions h2 {
        margin-left:0;
        font-size: 24px;
    }

}


/* Pillars Section */
.pillars {
    padding: 3rem 1rem;
    text-align: center;
}

.pillars h2 {
    margin-bottom: 1rem;
}

.pillars-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.pillar-card {
    text-align: center;
    margin-top:25px;
}

.pillar-card img {
    width: 100%;
    max-width: 252px;
    height: 240px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cta-button-pillar{
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;

}

.btn-pillar {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--yellow);
    color: #153D6E;
    text-decoration: none;
    border-radius: 5px;
    /* font-weight: bold; */
    transition: background-color 0.3s ease;
}

/* .btn-primary:hover {
    background-color: #ffca2c;
} */

/* Partners Section */
.partners {
    padding: 4rem 2rem;
    background-color: #E8ECF1;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto;  /* dua kolom */
    gap: 20px;
}

.partners-text {
    text-align: left;
    margin-bottom: 3rem;
}

.partners-text h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stats-container {
    align-items: baseline;
    gap: 0.5rem;
}

.stats-number {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1;
}

.stats-text {
    color: var(--primary-color);
    font-size: 1rem;
}

.partner-logos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .partners {
        padding: 2rem 1rem;
    }
    .partners-content{
        display: block;
        grid-template-columns: auto auto;  /* dua kolom */
        gap: 20px;
    }
    .partner-logo{
        margin: 5px;
    }

    .logo-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-number {
        font-size: 2.5rem;
    }
}


/* Media Section */
.media {
    padding: 3rem 1rem;
}

.media-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.media-tab {
    padding: 0.5rem 1rem;
    background: rgba(220, 226, 233, 1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: rgba(21, 61, 110, 1);
    font-weight: 500;

}

.media-tab.active {
    background: rgba(255, 235, 176, 1);
    border: 2px solid var(--yellow);
    color: rgba(21, 61, 110, 1);
    font-weight: 500;
    border-radius: 8px;
}

.media-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.media-content-more{
    text-decoration: none;
    color: var(--yellow);
    font-weight: 550;
}

.media-content-more::after{
    content: ">"; /* Unicode untuk tanda panah kanan */
    margin-left: 5px;
}

.media-card img {
    width: 240px;
    height:240px;
    /* height: 80px; */
    object-fit: cover;
    border-radius: 8px;
}
.hero-media {
    background: linear-gradient(270deg, #153D6E 9.9%, #2876D4 94.1%);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    margin-top:105px;
}

.hero-media h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-media p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-button-media{
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;

}

.btn-media {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--yellow);
    color: #153D6E;
    text-decoration: none;
    border-radius: 5px;
    /* font-weight: bold; */
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .media-card img{
        width: 120px;
        height:auto;
    }
}

/* Portfolio Content */
.hero-portfolio {
    background: linear-gradient(270deg, #153D6E 9.9%, #2876D4 94.1%);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    margin-top:105px;
}

.hero-portfolio h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-portfolio p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.portfolio-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 3rem;
    align-items: center;
}

.project {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    gap: 2rem;
}

.project:nth-child(even) {
    flex-direction: row-reverse;
}

.project-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

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

.project-info {
    flex: 1;
}

.project-info h2 {
    color: #13294B;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .project {
        flex-direction: column !important;
    }
}



/* Service Content */
.hero-service {
    background: linear-gradient(270deg, #153D6E 9.9%, #2876D4 94.1%);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    margin-top:105px;
}

.hero-service h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-service p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.service-tabs {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem auto 2rem;
    /* max-width: 600px; */
}

.service-image {
    width: 100%;
    max-height: 300px;
    max-width:600px;
    border-radius: 10px;
}

.service-details h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-button {
    background-color: var(--yellow);
    color: #153D6E;
    padding: 0.5rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    /* font-weight: bold; */
    display: inline-block;
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .service-tabs {
        padding: 1rem;
        overflow-x: auto;
        justify-content: flex-start;
    }
}

/* Hero About Us */
.hero-about-us {
    margin-top: 74px;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* About Section */
.about {
    padding: 2rem 0 0 0;
    text-align: center;
}

.about h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about p {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.slider-container-about {
    width:100%;
    margin: 0 auto;
    position: relative;
}

.slider-about img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slider-about .slick-prev {
    margin-left: 50px;
    z-index: 2;
}

.slider-about .slick-next {
    margin-right: 50px;
    z-index: 2;
}

/* .slider-about .slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    border-radius: 50%;
    z-index: 1;
} */

/* .slick-prev:before, .slick-next:before {
    color: black;
} */

/* Contact Content */
.contact-content {
    margin-top: 74px;
    padding: 2rem;
    max-width: 1200px;
    margin: 74px auto 0;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.office-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.office-info {
    padding: 1rem 0;
}

.office-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.office-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-details {
    margin-top: 1rem;
}

.contact-details a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

/* Map */
.map-container {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.form-container {
    background-color: #F8F9FA;
    padding: 2rem;
    border-radius: 0;
}

.form-title {
    color: #153D6E;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #153D6E;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #153D6E;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: white;
    border: 1px solid #DEE2E6;
    border-radius: 4px;
    padding: 0.75rem;
    width: 100%;
}

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

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.form-check-input {
    margin: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #DEE2E6;
}

.form-check-input:checked {
    background-color: #153D6E;
    border-color: #153D6E;
}

.form-check-label {
    color: #495057;
    margin: 0;
}

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

.btn-warning {
    background-color: #FFB800;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1rem;
}

.help-text {
    color: #6C757D;
    font-size: 0.85rem;
    margin-top: 1rem;
}


/* Footer */
.footer {
    background-color: #153D6E;
    color: white;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.footer-left, .footer-right {
    flex: 1;
}

.company-info, .operational-hours, .contact-us, .social-media {
    margin-bottom: 30px;
}

.footer h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}
.contact-us-phone{
    display:flex;
    
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: white;
    text-decoration: none;
}

.social-icons img {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.social-icons a:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left, .footer-right {
        width: 100%;
    }
}


/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        gap: 2rem;
    }

    .nav-menu a {
        color: black;
        text-decoration: none;
        /* font-weight: 500; */
    }

    .hero {
        height: 80vh;
        display: flex;
        align-items: center;
        padding: 8rem 4rem;
    }

    .hero h1 {
        font-size: 3rem;
        max-width: 600px;
    }

    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 90%;
        margin: 0 auto;
    }

    .pillars-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 95%;
        margin: 0 auto;
    }

    .partner-logos {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1000px;
        margin: 0 auto;
    }

    .media {
        max-width: 1200px;
        margin: 0 auto;
    }
}

.invalid-feedback {
    display: block;
    font-size: 0.9rem;
}

.is-invalid {
    border-color: #dc3545;
}

