@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Base */
.custom-navbar {
    background-color: #005085;
    min-height: 80px;
    position: relative;
    padding: 0px;
}

/* Logo Section with Angle */
.logo-wrapper {
    background: #ffffff;
    padding: 15px 200px;
    clip-path: polygon(0 0, 100% 0, 71% 100%, 0% 100%);
}

.logo {
    max-height: 100px;
}

/* Nav Links */
.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1.1rem;
}

.nav-link:hover {
    color: #35AAD8 !important;
}

.nav-link.active {
    font-weight: 600;
    color: #35AAD8 !important;
}

/* Contact Button */
.btn-contact {
    background: #ffffff;
    color: #0b4a78;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
}

.btn-contact:hover {
    background: #1067a5;
    color: #fff;
}

@media (max-width: 1200px) {
    .logo-wrapper {
        padding: 15px 80px;
        clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    }

    .nav-link {
        font-size: 1rem;
    }

    .btn-contact {
        padding: 8px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 1100px) {
    .navbar-nav {
        gap: 10px !important;
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .logo-wrapper {
        clip-path: none;
        padding: 12px 20px;
    }

    .navbar-nav {
        padding: 15px;
    }

    .btn-contact {
        margin: 10px;
        width: fit-content;
    }
}





/* carousel */
/* Carousel Wrapper */
.carousel-wrapper {
    padding-bottom: 80px;
}

.hero-section {
    position: relative;
    height: 65vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-item {
    height: 65vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    line-height: 1.2;
}

.reach-us-btn {
    background: linear-gradient(135deg, #3bb4e5 0%, #2a9ed4 100%);
    color: white;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 180, 229, 0.4);
    text-decoration: none;
    display: inline-block;
}

.reach-us-btn:hover {
    background: linear-gradient(135deg, #2a9ed4 0%, #1e88c4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 180, 229, 0.6);
    color: white;
}

.reach-us-btn:active {
    transform: translateY(0);
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(59, 180, 229, 0.7) !important;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 15;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1 !important;
    background: rgba(59, 180, 229, 0.95) !important;
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    opacity: 1 !important;
    background: rgba(59, 180, 229, 0.95) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

/* Service Cards Overlay */
.service-cards-container {
    position: relative;
    margin-top: -140px;
    /* pulls cards upward */
    z-index: 20;
}


.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.service-icon {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3bb4e5 0%, #2a9ed4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 5;
    box-shadow: 0 5px 20px rgba(59, 180, 229, 0.4);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 180, 229, 0.6);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding: 60px 20px 25px;
    text-align: center;
    line-height: 1.4;
}

.user-icon {
    width: 50px;
    height: 50px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .service-card-image {
        height: 160px;
    }

    .service-icon {
        top: 120px;
        width: 70px;
        height: 70px;
    }

    .service-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .carousel-wrapper {
        margin-bottom: 200px;
    }

    .service-cards-container {
        bottom: -140px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .reach-us-btn {
        padding: 12px 40px;
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }



    .service-card-image {
        height: 140px;
    }

    .service-icon {
        top: 100px;
    }

    .service-title {
        font-size: 1rem;
        padding: 50px 15px 20px;
    }

    .service-cards-container {
        margin-top: -100px;
    }

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .reach-us-btn {
        padding: 10px 35px;
        font-size: 0.95rem;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }


    .service-cards-container {
        margin-top: -60px;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .service-card-image {
        height: 120px;
    }

    .service-icon {
        top: 80px;
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 35px;
        height: 35px;
    }

    .service-title {
        font-size: 0.95rem;
        padding: 45px 15px 18px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeInUp 0.8s ease-out;
}

.reach-us-btn {
    animation: fadeInUp 1s ease-out;
}

.service-card {
    animation: fadeInUp 0.8s ease-out;
}



/* About Section */
.about-section {
    position: relative;
    padding: 100px 0;
    overflow: visible;
    background: #f5f5f5;
    z-index: 5;
    margin-bottom: 100px;

}

/* Wave Background */
.wave-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 52%;
    height: 100%;
    background: linear-gradient(135deg, #3bb4e5 0%, #2a9ed4 100%);
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    z-index: 1;
}

.about-section .container-fluid {
    position: relative;
    z-index: 2;
}

/* Images Wrapper */
.about-images-wrapper {
    position: relative;
    min-height: 500px;
}

/* Main Image */
.about-image-main {
    position: relative;
    width: 500px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 12px solid white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 3;
    margin-left: 40px;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Secondary Image */
.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: 103px;
    width: 321px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 12px solid white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 4;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decorative Dots */
.decorative-dots {
    position: absolute;
    top: 8px;
    right: 140px;
    width: 193px;
    height: 110px;
    background-image: radial-gradient(circle, #ffffff73 2.5px, transparent 2.5px);
    background-size: 15px 15px;
    opacity: 0.9;
    z-index: 2;
}

/* Decorative Plane - Rotating IN PLACE at bottom left */
.decorative-plane {
    position: absolute;
    bottom: -200px;
    left: -115px;
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    animation: rotatePlaneInPlace 6s linear infinite;
}

.decorative-plane img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Rotate the plane in place - NO translation */
@keyframes rotatePlaneInPlace {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* About Content */
.about-content {
    padding: 40px 60px 40px 80px;
}

.about-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #0066a1;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-subheading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
}

.about-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

.know-more-btn {
    background: linear-gradient(135deg, #3bb4e5 0%, #2a9ed4 100%);
    color: white;
    padding: 16px 50px;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(59, 180, 229, 0.4);
    text-decoration: none;
    display: inline-block;
}

.know-more-btn:hover {
    background: linear-gradient(135deg, #106f9b 0%, #095079 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 180, 229, 0.6);
    color: white;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .about-image-main {
        width: 450px;
    }

    .about-image-secondary {
        width: 300px;
        right: 80px;
    }

    .about-content {
        padding: 40px 40px 40px 60px;
    }
}

@media (max-width: 1200px) {
    .about-image-main {
        width: 400px;
        margin-left: 20px;
    }

    .about-image-secondary {
        width: 280px;
        right: 60px;
        bottom: -30px;
    }

    .about-heading {
        font-size: 2.5rem;
    }

    .about-content {
        padding: 30px 30px 30px 50px;
    }

    .decorative-plane {
        bottom: -60px;
        left: -76px;
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .wave-background {
        width: 100%;
        height: 50%;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    }

    .about-section {
        padding: 80px 0 100px 0;
    }

    .about-images-wrapper {
        margin-bottom: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 500px;
        padding-bottom: 80px;
    }

    .about-image-main {
        margin-left: 0;
        width: 380px;
    }

    .about-image-secondary {
        right: 40px;
        bottom: 20px;
        width: 280px;
    }

    .about-content {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        margin: 0 20px;
    }

    .decorative-plane {
        bottom: 20px;
        left: 20px;
    }

    .decorative-dots {
        right: 100px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0 80px 0;
    }

    .about-heading {
        font-size: 2.2rem;
    }

    .about-subheading {
        font-size: 1.3rem;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-images-wrapper {
        min-height: 450px;
        padding: 40px 30px 80px 30px;
    }

    .about-image-main {
        width: 340px;
        border: 10px solid white;
    }

    .about-image-secondary {
        width: 260px;
        bottom: 20px;
        right: 30px;
        border: 10px solid white;
    }

    .decorative-dots {
        width: 100px;
        height: 100px;
        right: 80px;
        top: 60px;
    }

    .decorative-plane {
        width: 300px;
        height: 300px;
        bottom: 30px;
        left: 30px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0 70px 0;
    }

    .about-heading {
        font-size: 2rem;
    }

    .about-subheading {
        font-size: 1.15rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .know-more-btn {
        padding: 14px 40px;
        font-size: 1.05rem;
    }

    .about-images-wrapper {
        padding: 30px 20px 70px 20px;
        min-height: 400px;
    }

    .about-image-main {
        width: 280px;
        border: 8px solid white;
    }

    .about-image-secondary {
        width: 220px;
        border: 8px solid white;
        bottom: 30px;
        right: 20px;
    }

    .decorative-dots {
        width: 70px;
        height: 70px;
        right: 60px;
        top: 50px;
    }

    .decorative-plane {
        width: 200px;
        height: 200px;
        bottom: 20px;
        left: 20px;
    }

    .about-content {
        padding: 30px 25px;
        margin: 0 15px;
    }
}

@media (max-width: 400px) {
    .about-images-wrapper {
        padding: 20px 15px 60px 15px;
        min-height: 380px;
    }

    .about-image-main {
        width: 240px;
    }

    .about-image-secondary {
        width: 190px;
        bottom: 25px;
        right: 15px;
    }

    .decorative-plane {
        width: 40px;
        height: 40px;
        bottom: 15px;
        left: 15px;
    }

    .decorative-dots {
        width: 60px;
        height: 60px;
        right: 50px;
    }
}

/* Fade In Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-images-wrapper {
    animation: fadeInLeft 1s ease-out;
}

.about-content {
    animation: fadeInRight 1s ease-out;
}



/* Achievements Section */
.achievements-section {
    position: relative;
    padding: 0px;
    background-image:
        linear-gradient(135deg, rgba(11, 75, 120, 0.308) 0%, rgba(163, 215, 252, 0.281) 100%),
        url('./assets/achivbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Optional: Creates parallax effect */
    overflow: hidden;
}

/* Left Content */
.achievements-content {
    padding: 20px 40px;
    color: white;
}

.achievements-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.achievements-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

/* Right Side Cards */
.achievements-cards-wrapper {
    padding: 20px;
}

.achievement-card {
    position: relative;
    width: 100%;
    transition: transform 0.4s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
}

.achievement-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio for perfect circle */
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-image {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.achievement-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.achievement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background: #ffffff1f;
}
.achievement-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    transition: all 0.3s ease;
}

/* More specific selector to override .achievement-image img */
.achievement-overlay .achievement-icon img {
    position: relative !important;
    /* Override position absolute */
    top: auto !important;
    left: auto !important;
    width: 85px !important;
    height: 65px !important;
    object-fit: contain;
}

.achievement-card:hover .achievement-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}

.achievement-number .counter {
    display: inline-block;
}

.achievement-number .plus {
    display: inline-block;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-transform: capitalize;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .achievements-heading {
        font-size: 2.5rem;
    }

    .achievement-number {
        font-size: 3rem;
    }

    .achievement-icon {
        width: 60px;
        height: 60px;
    }

    .achievement-icon svg {
        width: 40px;
        height: 40px;
    }

    .achievement-overlay .achievement-icon img {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 992px) {
    .achievements-section {
        padding: 60px 0;
    }

    .achievements-content {
        text-align: center;
        margin-bottom: 40px;
        padding: 20px;
    }

    .achievements-heading {
        font-size: 2.2rem;
    }

    .achievements-text {
        font-size: 1rem;
    }

    .achievement-overlay .achievement-icon img {
        width: 42px !important;
        height: 42px !important;
    }
}

@media (max-width: 768px) {
    .achievements-heading {
        font-size: 2rem;
    }

    .achievements-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .achievement-label {
        font-size: 1rem;
    }

    .achievement-icon {
        width: 55px;
        height: 55px;
    }

    .achievement-icon svg {
        width: 35px;
        height: 35px;
    }

    .achievement-overlay .achievement-icon img {
        width: 38px !important;
        height: 38px !important;
    }
}

@media (max-width: 576px) {
    .achievements-section {
        padding: 50px 0;
    }

    .achievements-heading {
        font-size: 1.8rem;
    }

    .achievements-text {
        font-size: 0.9rem;
    }

    .achievement-number {
        font-size: 2.2rem;
    }

    .achievement-label {
        font-size: 0.9rem;
    }

    .achievement-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .achievement-icon svg {
        width: 30px;
        height: 30px;
    }

    .achievements-cards-wrapper {
        padding: 10px;
    }

    .achievement-overlay .achievement-icon img {
        width: 32px !important;
        height: 32px !important;
    }
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    animation: countUp 0.6s ease-out;
}

@media (max-width: 400px) {
    .achievement-overlay .achievement-icon img {
        width: 28px !important;
        height: 28px !important;
    }
}




/* News & Events Section */
.news-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3bb4e5;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.news-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

/* News Card */
.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* News Image */
.news-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

/* Media Badge */
.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0b4a78;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

/* News Content */
.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.9rem;
    color: #3bb4e5;
    margin-bottom: 12px;
    font-weight: 500;
}

.news-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Arrow Link */
.news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3bb4e5 0%, #2a9ed4 100%);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-link:hover {
    background: linear-gradient(135deg, #2a9ed4 0%, #1e88c4 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(59, 180, 229, 0.4);
}

.news-link svg {
    width: 20px;
    height: 20px;
}

/* View More Button */
.view-more-btn {
    background: linear-gradient(135deg, #3bb4e5 0%, #2a9ed4 100%);
    color: white;
    padding: 16px 60px;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #2a9ed4 0%, #1e88c4 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 180, 229, 0.6);
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .news-title {
        font-size: 2.5rem;
    }

    .news-heading {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .news-section {
        padding: 60px 0;
    }

    .news-title {
        font-size: 2.2rem;
    }

    .news-subtitle {
        font-size: 1.2rem;
    }

    .news-header {
        margin-bottom: 40px;
    }

    .news-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 50px 0;
    }

    .news-title {
        font-size: 2rem;
    }

    .news-subtitle {
        font-size: 1.1rem;
    }

    .news-image {
        height: 200px;
    }

    .news-badge {
        padding: 6px 16px;
        font-size: 0.85rem;
        top: 15px;
        left: 15px;
    }

    .news-content {
        padding: 20px;
    }

    .news-heading {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }

    .news-link {
        width: 40px;
        height: 40px;
    }

    .news-link svg {
        width: 18px;
        height: 18px;
    }

    .view-more-btn {
        padding: 14px 50px;
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .news-section {
        padding: 40px 0;
    }

    .news-title {
        font-size: 1.8rem;
    }

    .news-subtitle {
        font-size: 1rem;
    }

    .news-header {
        margin-bottom: 30px;
    }

    .news-card {
        margin-bottom: 20px;
    }

    .news-image {
        height: 180px;
    }

    .news-badge {
        padding: 5px 14px;
        font-size: 0.8rem;
        top: 12px;
        left: 12px;
    }

    .news-content {
        padding: 18px;
    }

    .news-date {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .news-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .news-link {
        width: 38px;
        height: 38px;
    }

    .news-link svg {
        width: 16px;
        height: 16px;
    }

    .view-more-btn {
        padding: 12px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .news-title {
        font-size: 1.6rem;
    }

    .news-image {
        height: 160px;
    }

    .news-content {
        padding: 15px;
    }

    .view-more-btn {
        padding: 12px 35px;
        font-size: 0.95rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card {
    animation: fadeInUp 0.6s ease-out;
}

.news-card:nth-child(1) {
    animation-delay: 0.1s;
}

.news-card:nth-child(2) {
    animation-delay: 0.2s;
}

.news-card:nth-child(3) {
    animation-delay: 0.3s;
}



/* Contact CTA Section */
.contact-cta-section {
    position: relative;
    padding: 100px 0;
    background-image: linear-gradient(135deg, rgb(11 74 120 / 27%) 0%, rgb(7 105 175 / 23%) 100%), url(./assets/lorem.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* CTA Content */
.cta-content {
    padding-right: 40px;
}

.cta-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: white;
    margin: 0;
}

/* CTA Card */
.cta-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-phone {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.cta-phone:hover {
    color: #3bb4e5;
}

.cta-button {
    background: linear-gradient(135deg, #3bb4e5 0%, #2a9ed4 100%);
    color: white;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2a9ed4 0%, #1e88c4 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 180, 229, 0.6);
    color: white;
}

/* Decorative Dots */
.cta-dots {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 1;
}

.cta-dots-1 {
    top: 80px;
    right: 15%;
}

.cta-dots-2 {
    bottom: 80px;
    left: 10%;
}

/* Footer Section */
.footer-section {
    background: #0b3a5c;
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3bb4e5;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #3bb4e5;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #3bb4e5;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #3bb4e5;
    padding-left: 5px;
}

/* Footer Logo Section */
.footer-logo-section {
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.footer-bar {
    background: #34a9d8;
    color: white;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bar a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-divider {
    color: white;
    opacity: 0.8;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-bar {
        font-size: 13px;
        padding: 12px 0;
    }

    .footer-divider {
        margin: 0 5px;
    }
}

@media (max-width: 768px) {
    .footer-bar {
        text-align: center;
        font-size: 12px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
        margin-bottom: 8px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-center {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .footer-bar {
        font-size: 11px;
        padding: 10px 0;
    }

    .footer-divider {
        margin: 0 3px;
    }
}

.company {
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cta-heading {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .contact-cta-section {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .cta-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .cta-heading {
        font-size: 2.5rem;
    }

    .cta-text {
        font-size: 1.05rem;
    }

    .footer-logo-section {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-cta-section {
        padding: 60px 0;
    }

    .cta-heading {
        font-size: 2.2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-card {
        padding: 40px 30px;
    }

    .cta-card-title {
        font-size: 1.8rem;
    }

    .cta-phone {
        font-size: 1.3rem;
    }

    .footer-section {
        padding: 50px 0 20px;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-bottom-links,
    .developer-credit,
    .copyright {
        text-align: center;
    }

    .footer-bottom-links {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .contact-cta-section {
        padding: 50px 0;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .cta-card {
        padding: 35px 25px;
    }

    .cta-card-title {
        font-size: 1.6rem;
    }

    .cta-phone {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 1.05rem;
    }

    .footer-section {
        padding: 40px 0 15px;
    }

    .footer-list li {
        font-size: 0.9rem;
    }

    .footer-links li a {
        font-size: 0.9rem;
    }

    .footer-logo {
        max-width: 180px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .copyright,
    .footer-bottom-links a,
    .developer-credit {
        font-size: 0.85rem;
    }

    .cta-dots {
        width: 60px;
        height: 60px;
    }
}