@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*
{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #00539C;
}
#footer * {
    color: white;
}
#footer a {
    color: white;
}
:root
{
    --bg: #EEA47F;
    --font: #00539C;
    --footer-bg: #002147;
    --footer-text: #ffffff;
    --card-bg: #ffffff;
}
body
{
    background-color: var(--bg) !important;
    min-height: 100vh;
}
#hero
{
    min-height: 600px;
    width: 100%;
    position: relative;
    background-color: transparent;
}
.menu
{
    position: fixed;
    z-index: 999;
    width: 98%;
    background-color: transparent;
}
.nav-link
{
    color: white;
}
.nav-link.active
{
    color: whitesmoke !important;
}
.hero-section
{
    position: relative;
    min-height: 600px;
    min-width: 100%;
}
/* Services Section Styles */
#services {
    padding: 60px 0;
}
#services .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}
#services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
#services .card-header {
    padding: 0;
    border: none;
    height: 200px;
    overflow: hidden;
}
#services .card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
#services .card:hover .card-header img {
    transform: scale(1.1);
}
#services .card-body {
    padding: 25px;
    text-align: center;
}
#services .card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--font);
}
#services .card-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Popular Categories Styles */
.category-card {
    border: 3px solid white !important;
    border-radius: 8px !important;
    overflow: hidden;
    background: white !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-card .card-img-wrapper {
    height: 280px;
    overflow: hidden;
    background: #f8f8f8;
}

.category-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card .card-footer-title {
    background: white;
    padding: 15px 20px;
    text-align: left;
}

.category-card .card-footer-title h3 {
    font-size: 1.7rem;
    font-weight: 400;
    margin: 0;
    color: #000;
}

#services .text-white {
    color: white !important;
    margin-bottom: 30px;
}

/* Footer Section Styles */
#footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
}
#footer h3 {
    color: var(--footer-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}
#footer ul {
    list-style: none;
    padding: 0;
}
#footer ul li {
    margin-bottom: 12px;
}
#footer ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
#footer ul li a:hover {
    color: var(--footer-text);
    padding-left: 5px;
}
#footer .footer-contact li i {
    color: white;
    margin-right: 10px;
}
#footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}
#footer .social-links a:hover {
    background: var(--footer-text);
    color: var(--footer-bg);
    transform: translateY(-5px);
}
#footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ffffff;
}
#footer .footer-logo {
    margin-bottom: 20px;
}
#footer .footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ffffff;
}
@media only screen and (max-width: 768px) {
    .hero-section {
      width: 95%;
    }
    #hero
    {
        min-width: 100%;
        min-height: 100%;
    }
  }

/* Features Section Styles */
.features-section {
    background-color: #727272; /* Grey background */
    padding: 80px 0;
}
.features-section * {
    color: white !important;
}
.features-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}
.features-section .main-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
}
.feature-item {
    margin-bottom: 40px;
}
.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}
.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Icon Colors */
.icon-blue { color: #3b82f6 !important; }
.icon-yellow { color: #fbbf24 !important; }
.icon-dollar { color: #3b82f6 !important; }
.icon-pink { color: #ec4899 !important; }

/* Clients Section Styles */
.clients-section {
    background-color: #EEA47F; /* Peach background */
    padding: 80px 0;
    text-align: center;
}
.clients-section h2 {
    color: #00539C !important; /* Blue color */
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 60px;
}
.client-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.client-logo-row img {
    max-width: 180px;
    height: auto;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
@media only screen and (max-width: 992px) {
    .client-logo-row img {
        max-width: 150px;
    }
}
@media only screen and (max-width: 768px) {
    .client-logo-row {
        gap: 20px;
    }
    .client-logo-row img {
        max-width: 120px;
    }
}
