/* Hero Section Styles */
.hero-section {
    background-image:  
                      url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* min-height: 80vh; */
    display: flex;
    align-items: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* App Store Buttons */
.app-buttons .btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.app-buttons .btn:hover {
    transform: translateY(-3px);
}

/* Phone Image */
.phone-image-container {
    margin-top: 50px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.phone-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .app-buttons{
        width: 100%;
    }
    
    .app-buttons .btn {
        padding: 10px 20px;
        font-size: 1rem;
        width: 45%;
    }
    
    .phone-image-container {
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .app-buttons{
        display: flex;
    }
    .app-buttons .btn {
        display: block;
        /* margin: 10px auto; */
        width: 45%;
    }
}

/* Navbar Styles */
.navbar {
    background-color: #071f4e;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

body {
    padding-top: 76px;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-logo {
    height: 50px;
    width: 70px;
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

/* .navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff;
} */

.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

.navbar-nav .btn-outline-light {
    border-radius: 20px;
    padding: 0.375rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .btn-outline-light:hover {
    background-color: #ffffff;
    color: #1a237e;
}

/* Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-collapse {
        background-color: #1a237e;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }
    
    .navbar-nav .btn-outline-light {
        margin: 0.5rem 0;
        display: inline-block;
    }
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.services-section h2 {
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.services-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #1a237e;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-title {
    color: #1a237e;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #1a237e;
    border-color: #1a237e;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #151b60;
    border-color: #151b60;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.feature-content {
    padding: 2rem;
}

.feature-content h2 {
    color: #07224A;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-content .lead {
    color: #6c757d;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: #07224A;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #39C1C5;
    font-weight: bold;
}
/* Articles Section */
.article-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    padding: 10px;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card img {
    height: 200px;
    object-fit: cover;
}

/* Workers Section */
.worker-card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.worker-card:hover {
    transform: translateY(-5px);
}

.worker-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.worker-social .social-link {
    color: #07224A;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

/* Partners Section */
.partners-section img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners-section img:hover {
    opacity: 1;
}

/* Footer Styles */
.bg-navy {
    background-color: #07224A;
}

.footer {
    position: relative;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #40c7c0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #40c7c0;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background: #40c7c0;
    color: white;
}

.footer-form .form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
}

.footer-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

/* .footer-bottom {
    background: rgba(0,0,0,0.2);
} */

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .footer-form {
        margin-top: 2rem;
    }
}

/* Graphic Styles */
.main-container {
    position: relative;
    width: 300px;
    padding: 20px;
    color: #07224A;
    margin: 0 auto;
}

.number {
    font-size: 100px;
    font-weight: bold;
    color: #07224A;
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 2;
}

.arrow-shape {
    background-color: #39C1C5;
    width: 100%;
    height: 150px;
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
    position: absolute;
    top: 20px;
    left: 20px;
}

.text-content {
    margin-top: 120px;
    font-size: 18px;
    color: #07224A;
}

.text-content p {
    margin: 0;
    line-height: 1.8;
}

.check-icon {
    font-size: 24px;
    color: #F8E71C;
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 2;
}

.plus-icon {
    font-size: 24px;
    color: #07224A;
    position: absolute;
    bottom: 20px;
    right: 40px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .main-container {
        margin: 3rem auto;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-list li {
        text-align: left;
    }
}

.heading {
    font-size: 2rem;
    font-weight: 700;
    color: #07224A;
    margin-bottom: 1.5rem;
    position: relative;
}

.heading-underline {
    width: 50px;
    height: 3px;
    background-color: #F8E71C;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 767.98px) {
    .heading {
        text-align: center;
    }
    
    .heading-underline {
        margin: 15px auto 0;
    }
} 