/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "League Spartan", sans-serif;
}

body {
    overflow-x: hidden;

}

/* HEADER */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 30px;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 2rem;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.top-header.blue {
    background-color: rgba(22, 0, 130, 0.8);
}

.top-header .header-left,
.top-header .social-icons {
    display: flex;
    gap: 5px;
}

.top-header .header-contact a,
.top-header .social-icons a {
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    margin-right: 1rem;
}

/* NAVBAR */
.custom-navbar {
    position: fixed;
    top: 30px;
    /* Just below top-header */
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    z-index: 1010;
    border-bottom: 1px solid #181818;
    transition: background-color 0.3s ease;
}

/* Hovered */
.custom-navbar:hover {
    background-color: #ffffff;
}

/* Hide top header when scrolled */
body.scrolled .top-header {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* When Scrolled */
.custom-navbar .scrolled {
    top: 0 !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hide top header when navbar is scrolled */
.custom-navbar.scrolled~.top-header {
    display: none;
}

/* LOGO */
.logo-wrapper {
    position: relative;
    height: 40px;
    width: auto;
}

.logo-wrapper img.logo {
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

/* By default */
.default-logo {
    opacity: 1;
}

.hover-logo {
    opacity: 0;
}

/* On navbar hover */
.custom-navbar:hover .default-logo {
    opacity: 0;
}

.custom-navbar:hover .hover-logo {
    opacity: 1;
}

/* On scroll, show hover-logo (logo12.png) */
.custom-navbar.scrolled .default-logo {
    opacity: 0;
}

.custom-navbar.scrolled .hover-logo {
    opacity: 1;
}

/* Nav links */
.custom-navbar .nav-link {
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.custom-navbar:hover .nav-link {
    color: #160082;
}

.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #ff5722;
    transition: width 0.3s ease-in-out;
}

.custom-navbar .nav-link:hover::after {
    width: 100%;
}

.custom-navbar .nav-link:hover {
    color: #ff5722;
}

/* Button */
.enquire-btn {
    background-color: #ff5722 !important;
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0px !important;
    border: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.enquire-btn:hover {
    background-color: #e64a19 !important;
}

/* Hero Section Styles */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: -56px;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

@media(max-width:600px){
    .hero-content h1{
        font-size: 20px !important;
    }
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ff5722;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 100vh;
}

.slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}


.slider-nav {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 20px;
    height: 5px;
    background-color: #888;
    cursor: pointer;
}

.slider-dot.active {
    background-color: #ff5722;
}

.slider-arrows {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    top: 50%;
}

.arrow {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
}


.services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-container {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left Column */
.services-header {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.services-header h3 {
    font-size: 18px;
    color: #FF5722;
    background: linear-gradient(to right, #ffcc80, #ffffff);
    /* Gradient: light orange to white */
    border-left: 4px solid #e64a19;
    /* Left stroke with your original orange */
    padding: 10px;
    /* Optional: space inside the box */
    width: 200px;
    margin-bottom: 10px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.services-header h2 {
    font-size: 32px;
    color: #1A237E;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #FF5722;
    border: 1px solid #FF5722;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0px;
    transition: background 0.3s, color 0.3s;
}

.read-more:hover {
    background-color: #FF5722;
    color: #fff;
}

/* Right Column */
.services-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    min-width: 300px;
}

.service-card {
    flex: 0 0 calc(50% - 10px);
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: #000;
    background: white;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #3D3D85, #F96235);
    color: white;
}

.service-icon {
    flex-shrink: 0;
    margin-right: 20px;
    position: relative;
    width: 40px;
    height: 40px;
}

.service-icon img {
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;

}

.service-icon .hover-icon {
    opacity: 0;
}

.service-card:hover .service-icon .default-icon {
    opacity: 0;
}

.service-card:hover .service-icon .hover-icon {
    opacity: 1;
}
.service-content {
    flex: 1;
}

.service-card h3,
.service-card p {
    margin: 0 0 10px;
    color: #000;
    transition: color 0.3s ease;
}

.service-card:hover h3,
.service-card:hover p {
    color: #fff;
}



/* Responsive for smaller screens */
@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .services-grid {
        justify-content: center;
    }
}


/* About Section Styles */
.about {
    padding: 4rem 2rem;
    margin-left: 60px;
}

.about-content {
    display: flex;
    gap: 100px;
    align-items: center;
}

.about-images {
    gap: 1rem;
    flex: 1;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}


.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
    margin-right: 60px;
}

.about-text h3 {
    color: #333;
    font-size: 18px;
    color: #FF5722;
    background: linear-gradient(to right, #ffcc80, #ffffff);
    /* Gradient: light orange to white */
    border-left: 4px solid #e64a19;
    /* Left stroke with your original orange */
    padding: 10px;
    /* Optional: space inside the box */
    width: 160px;
    margin-bottom: 10px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.about-text h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text h2 span {
    color: #ff5722;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about{
        padding: 0px !important;
        margin-left: 0px !important;
    }
    .about-content {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
        margin-left: 0;
    }

    .about-images {
        width: 100%;
    }

    .about-img {
        height: auto; /* Let it grow naturally */
        width: 100%;
    }

    .about-img img {
        height: auto;
        width: 100%;
        object-fit: contain;
    }

    .about-text {
        margin-right: 0;
        text-align: left;
        width: 100%;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}



body {
    font-family: 'Segoe UI', sans-serif;
}

.footer {
    background-color: #022c3c;
    color: white;
    padding: 20px 10px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    flex: 1 1 250px;
}

.footer-logo img {
    width: 130px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 13px;
    line-height: 1.5;
}

.footer-section {
    flex: 1 1 180px;
    margin-top: 30px;
    text-align: left;
}

.footer-section a{
    text-decoration: none;
    color: white;
}
.footer-section h4 {
    color: #ff5722;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 13px;
    margin: 5px 0;
}

.footer-section ul {
    list-style: none;
    padding-left: 0px !important;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    text-align: left;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
    font-size: 13px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 8px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    margin-right: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff5722;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section,
    .footer-logo {
        text-align: center;
        align-items: center;
    }

    .footer-section ul {
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        text-align: left;
    }

    .footer-section h4 {
        margin-top: 20px;
    }

    .social-icons {
        margin-bottom: 10px;
    }
}


/* Media Queries */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }

    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.3rem 0.5rem;
    }

    .header-contact {
        display: none;
    }
   

    .hero h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .service-card {
        padding: 1rem;
    }

   

    .services {
        padding: 2rem 1rem;
    }
}