body {
    font-family: 'Roboto', sans-serif;
}
/* Header Styles */
.header {
    background: linear-gradient(90deg, #1abc9c, #3498db);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header .navbar-brand {
    background: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    margin-left: 15px;
}
.header .navbar-brand img {
    height: 50px;
    border-radius: 8px;
}
.header .nav-link {
    color: #fff !important;
    font-weight: 400;
    position: relative;
    transition: color 0.3s;
}
.header .nav-link:hover,
.header .nav-link.active {
    color: #fff !important;
}
.header .nav-link.active::after,
.header .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e26814;
    animation: underline 0.3s ease-in-out;
}
@keyframes underline {
    from { width: 0; }
    to { width: 100%; }
}
.enquire-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}
.enquire-btn:hover {
    background: #e26814;
    color: #fff;
    transform: translateY(-2px);
}
/* Mobile Navigation */
@media (max-width: 767px) {
    .header {
        background: linear-gradient(90deg, #1abc9c, #3498db);
        padding: 10px 0;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(90deg, #1abc9c, #3498db);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 80px;
        overflow-y: auto;
    }
    .navbar-collapse.show {
        transform: translateY(0);
    }
    .navbar-nav {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .nav-item {
        margin: 15px 0;
    }
    .navbar-brand {
        background: #fff;
        padding: 5px 10px;
        border-radius: 8px;
        margin-left: 15px;
    }
    .navbar-toggler {
        border: none;
        z-index: 1001;
        margin-right: 15px;
        padding: 10px;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 30px;
        height: 30px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    .navbar-collapse .nav-link {
        color: #fff !important;
        font-size: 1.2rem;
        padding: 10px;
    }
    .navbar-collapse .nav-link:hover::after,
    .navbar-collapse .nav-link.active::after {
        background-color: #e26814;
    }
    .navbar-collapse .enquire-btn {
        margin: 20px auto;
        padding: 10px 30px;
        font-size: 1.1rem;
    }
    .navbar-collapse .btn-close {
        display: none;
    }
}
/* Slider Styles */
.swiper {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}
.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    border-radius: 12px;
}
.slide-content {
    text-align: center;
    color: #fff;
    position: absolute;
    z-index: 10;
    animation: fadeIn 1s ease-in-out;
}
.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #105981;
}
.slide-content p {
    font-size: 1.2rem;
}
.slide-content .btn {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}
.slide-content .btn:hover {
    background-color: #1abc9c;
    transform: translateY(-2px);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Desktop and Mobile Slider Visibility */
.desktop-slider {
    display: block;
}
.mobile-slider {
    display: none;
}
@media (max-width: 767px) {
    .desktop-slider {
        display: none;
    }
    .mobile-slider {
        display: block;
        height: 400px;
    }
    .swiper {
        height: 400px;
    }
    .swiper-slide {
        flex-direction: column;
    }
    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .slide-content h2 {
        font-size: 1.5rem;
        color: #105981;
    }
    .slide-content p {
        font-size: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .desktop-slider {
        height: 450px;
    }
}
/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    color: #105981;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e26814;
    margin: 10px auto;
    transition: width 0.3s ease-in-out;
}
.section-title:hover::after {
    width: 100px;
}
/* About Us */
.about-us, .vision-mission, .services, .industries, .why-choose-us, .contact-us, .partners, .footer {
    padding: 40px 0;
    margin: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
}
/* Vision & Mission */
.vision-mission img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}
.vision-mission h3 {
    position: relative;
    color: #105981;
}
.vision-mission h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #e26814;
    margin: 10px 0;
    transition: width 0.3s ease-in-out;
}
.vision-mission h3:hover::after {
    width: 80px;
}
@media (max-width: 767px) {
    .vision-mission .row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .vision-mission img {
        width: 100%;
        height: 150px;
        border-radius: 12px;
    }
}
/* Services Cards */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    border-radius: 12px;
    text-align: center;
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 12px 12px 0 0;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.service-card:hover img {
    transform: scale(1.1);
}
.service-card .btn {
    background-color: #3498db;
    color: #fff;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    margin: 0 auto;
    display: block;
    width: fit-content;
}
.service-card .btn:hover {
    background-color: #1abc9c;
    transform: translateY(-2px);
}
.services .btn-cta {
    display: block;
    margin: 30px auto;
    text-align: center;
    background-color: #3498db;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    width: fit-content;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}
.services .btn-cta:hover {
    background-color: #1abc9c;
    transform: translateY(-2px);
}
/* Partners Marquee */
.partners-marquee {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
}
.marquee-content {
    display: flex;
    width: 200%;
    animation: marquee 20s linear infinite;
}
.marquee-content:hover {
    animation-play-state: paused;
}
.marquee-item {
    flex: 0 0 auto;
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    margin: 0 10px;
    transition: transform 0.3s;
}
.marquee-item:hover {
    transform: translateY(-5px);
}
.marquee-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 767px) {
    .marquee-item {
        width: 100px;
        height: 100px;
    }
    .marquee-item img {
        width: 60px;
        height: 60px;
    }
    .marquee-content {
        width: 200%;
        animation: marquee 15s linear infinite;
    }
}
/* Contact Us */
.contact-us .form-container {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.contact-us .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}
.contact-us .form-control {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-us .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}
.contact-us .btn {
    background-color: #3498db;
    color: #fff;
    border-radius: 8px;
    padding: 8px 20px;
    transition: background-color 0.3s, transform 0.2s;
}
.contact-us .btn:hover {
    background-color: #1abc9c;
    transform: translateY(-2px);
}
/* Why Choose Us */
.why-choose-us .feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.why-choose-us .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1abc9c, #3498db);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
}
.why-choose-us .btn-cta {
    display: block;
    margin: 30px auto;
    text-align: center;
    background-color: #3498db;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    width: fit-content;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}
.why-choose-us .btn-cta:hover {
    background-color: #1abc9c;
    transform: translateY(-2px);
}
/* Footer */
.footer {
    padding: 40px 0;
    margin: 0;
    background: linear-gradient(90deg, #1abc9c, #3498db);
    color: #fff;
    text-align: center;
}
.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: #e26814;
}
.footer .social-icons a {
    font-size: 24px;
    margin: 0 10px;
    transition: transform 0.3s;
}
.footer .social-icons a:hover {
    transform: translateY(-2px);
}
.footer .row > div {
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .footer .row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
/* Footer Icons (Mobile) */
.footer-icons {
    display: none;
}
@media (max-width: 767px) {
    .footer-icons {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 20px;
        right: 20px;
        gap: 15px;
        z-index: 1000;
        align-items: flex-end;
    }
    .footer-icons a {
        width: 50px;
        height: 50px;
        background-color: #3498db;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        transition: background-color 0.3s, transform 0.2s;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    .footer-icons a:hover {
        background-color: #1abc9c;
        transform: translateY(-2px);
    }
    .footer-icons a[href*="wa.me"] {
        background-color: #25D366;
    }
    .footer-icons a[href*="wa.me"]:hover {
        background-color: #20b858;
    }
    .footer-icons a[href*="tel"] {
        background-color: #34C759;
        color: #fff;
    }
    .footer-icons a[href*="tel"]:hover {
        background-color: #2ea94b;
    }
}
/* Enquiry Modal */
.modal-content {
    border-radius: 12px;
}
.modal-header {
    background: linear-gradient(90deg, #1abc9c, #3498db);
    color: #fff;
    border-radius: 12px 12px 0 0;
}
.modal-body .form-label {
    font-weight: 500;
    color: #333;
}
.modal-body .form-control {
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.modal-body .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1abc9c, #3498db);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 36px;
    color: #fff;
}