
:root{
    --color-primary: #01345b;
    --color-secondary: #ec631f;
    --color-light: #EEF9FF;
    --color-yellow: #ffbb14;
    --color-dark: #222222;
    --color-gradient: linear-gradient(135deg, #01345b 0%, #ec631f 100%);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* { box-sizing: border-box; }

body{
    background: #fff; 
    color:var(--color-dark); 
    -webkit-font-smoothing:antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Enhanced Navbar */
.navbar{
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    padding: 0.5rem 0;
}

.navbar.scrolled{
    padding: 0.25rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-brand{
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.navbar-nav .nav-link{
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
    color: #333;
}

.navbar-nav .nav-link:hover{
    color: var(--color-primary) !important;
}

.navbar-nav .nav-link::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after{
    width: 80%;
}

/* Enhanced Dropdown */
.dropdown-menu{
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 280px;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-10px);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item{
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item:hover{
    background: var(--color-light);
    color: var(--color-primary);
    transform: translateX(5px);
}

.dropdown-item i{
    width: 20px;
    color: var(--color-primary);
}

/* CTA Buttons */
.btn-primary{
    background:var(--color-primary);
    border:0;
    font-weight: 600;
    padding: 0.725rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,97,140,0.3);
    color: white;
    background: var(--color-secondary);
}

.btn-outline-primary{
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-primary:hover{
    background: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,97,140,0.3);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Mobile Drawer Overlay */
.drawer-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
}

.drawer-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer */
.mobile-drawer{
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    max-width: 90vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: var(--transition);
    z-index: 9999;
    overflow-y: auto;
}

.mobile-drawer.active{
    right: 0;
}

.drawer-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.drawer-close{
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.drawer-close:hover{
    background: var(--color-light);
}

.drawer-close i{
    font-size: 1.5rem;
    color: #333;
}

.drawer-content{
    padding: 1.5rem;
}

.drawer-nav-item{
    margin-bottom: 0.5rem;
}

.drawer-nav-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.drawer-nav-link:hover{
    background: var(--color-light);
    color: var(--color-primary);
}

.drawer-submenu{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.drawer-submenu.active{
    max-height: 800px;
}

.drawer-submenu-item{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.drawer-submenu-item:hover{
    background: var(--color-light);
    color: var(--color-primary);
}

.drawer-submenu-item i{
    width: 18px;
    color: var(--color-primary);
}

.drawer-cta{
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.drawer-contact{
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 12px;
}

.drawer-contact h6{
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-item{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.contact-item i{
    color: var(--color-primary);
    width: 20px;
}

.contact-item a{
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover{
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        display: none;
    }
    .desktop-cta {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

.hero-slider {
    width: 100%;
    height: 100vh;
    margin-top: 70px;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} 

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 97, 140, 0.6) 0%, rgba(0, 127, 176, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-main {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 14, 14, 0.3);
}
.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: var(--color-secondary);
}

.outline-btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    background: transparent;
    color: white;
    border: 2px solid #fff;
}

.outline-btn:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-3px);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Community Impact Section */
.community-impact {
    background-color: var(--color-light);
    padding: 60px 0;
}

.impact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    min-height: 400px;
}

.impact-content {
    padding-left: 18px;
    padding-right: 18px;
}

.impact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.impact-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Offerings Section */
.offerings-section {
    padding: 60px 0;
    background: #fff;
}

.offering-card {
    background: var(--color-light);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,97,140,0.15);
    border-color: var(--color-primary);
}

.offering-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.offering-icon i {
    font-size: 17.5px;
    color: #fff;
}

.offering-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.offering-card p {
    color: #666;
    font-size: 1rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.offering-item {
    margin-bottom: 1.5rem;
}

.offering-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.offering-header h4 {
    margin: 0;
}

.offering-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0; /* remove previous spacing */
}

/* CTA Section */
/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: url(../images/hero-4.png) center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Overlay */
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.4)
    );
    z-index: 1;
}

/* Keep content above overlay */
.cta-section .container {
    position: relative;
    z-index: 2;
}


.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--color-yellow);
}

/* What Makes Us Different Section */
.different-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-light) 100%);
    position: relative;
    overflow: hidden;
}

.different-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    opacity: 0.03;
    border-radius: 50%;
}

.different-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    opacity: 0.03;
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Difference Cards */
.difference-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.difference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.difference-card:hover::before {
    transform: scaleX(1);
}

.difference-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(1, 52, 91, 0.15);
    border-color: var(--color-primary);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-light);
    line-height: 1;
    transition: var(--transition);
}

.difference-card:hover .card-number {
    color: rgba(1, 52, 91, 0.1);
    transform: scale(1.1);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--color-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.difference-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.card-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.card-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .different-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .difference-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .card-number {
        font-size: 2.5rem;
    }

    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .card-icon-wrapper i {
        font-size: 1.8rem;
    }

    .different-section {
        padding: 50px 0;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation delays */
.difference-card:nth-child(1) { animation-delay: 0.1s; }
.difference-card:nth-child(2) { animation-delay: 0.2s; }
.difference-card:nth-child(3) { animation-delay: 0.3s; }
.difference-card:nth-child(4) { animation-delay: 0.4s; }
.difference-card:nth-child(5) { animation-delay: 0.5s; }
.difference-card:nth-child(6) { animation-delay: 0.6s; }

/* Partner Section */
.partner-section {
    position: relative;
    padding: 5rem 0;
    background: url(../images/pro-20.jpg) center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.partner-section .container{
    position: relative;
    z-index: 2;
}

.partner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 2rem;
}

.partner-tag {
    background: var(--color-light);
    color: var(--color-secondary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--color-primary);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-yellow);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--color-yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}