/* General Reset */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Disable horizontal scrolling */
    width: 100%;
    height: 100%;
}

/* Added to ensure the body does not cause horizontal overflow */
body {
    overflow-x: hidden;
    max-width: 100%;
    overflow: hidden;
}

/* Header and Video */
#header {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.container {
    padding: 0;
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin: auto;
}


.navbar-brand {
    display: inline-block;
    text-decoration: none;
}

.brand-text {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}


.navbar-brand:hover .brand-text {
    transform: scale(1.1);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}



/* Navbar */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: #000e79;
}

.nav-link::after {
    content: '';
    width: 0;
    height: 3px;
    background: #000e79;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 90%;
}

.header {
    margin-top: 15%;
    font-size: 30px;
}

/* Navbar Button */
.btn-primary {
    color: #ffffff;
    background-color: #ff5700;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #000e79;
}

/* Sidebar styles for small screens */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        width: 250px;
        height: 100%;
        background: linear-gradient(to bottom, #85ABD9, #c1def3);
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        z-index: 1050;
    }

    .sidebar.show {
        left: 0;
    }

    .sidebar ul {
        padding: 20px 0;
        list-style: none;
    }

    .sidebar ul li {
        padding: 15px;
        border-bottom: 1px solid #ddd;
    }

    .sidebar ul li a {
        text-decoration: none;
        color: #000e79;
        font-size: 18px;
        display: flex;
        align-items: center;
    }

    .sidebar ul li a i {
        margin-right: 10px;
    }

    .close-btn {
        font-size: 24px;
        position: absolute;
        right: 15px;
        top: 15px;
        cursor: pointer;
    }
}

/* Responsive Navbar */
@media (max-width: 768px) {

    .nav {
        display: none;

    }

    .brand-text {
        font-size: 20px;
        /* Reduce font size for smaller screens */
        letter-spacing: 1.5px;
        /* Tighter spacing */
        text-shadow: none;
        /* Remove heavy shadow on small screens for clarity */
        transform: none;
        /* Disable scaling on smaller screens */
    }

    .navbar-brand:hover .brand-text {
        transform: none;
        /* Disable zoom effect on mobile */
        text-shadow: none;
    }
}

/* Quote Container */
.quote-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #ffffff;
    z-index: 2;
    pointer-events: none;
}

.quote-container h1,
.quote-container .subheading,
.quote-container button {
    pointer-events: auto;
}

.quote-container h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
}

/* Subheading Styling */
.quote-container .subheading {
    font-size: 1.8rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    opacity: 0.9;
}

.quote-container button {
    background-color: #ff5700;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.quote-container button:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }

    .brand-text {
        font-size: 20px;
        /* Reduce font size for smaller screens */
        letter-spacing: 1.5px;
        /* Tighter spacing */
        text-shadow: none;
        /* Remove heavy shadow on small screens for clarity */
        transform: none;
        /* Disable scaling on smaller screens */
    }

    .navbar-brand:hover .brand-text {
        transform: none;
        /* Disable zoom effect on mobile */
        text-shadow: none;
    }

    .quote-container h1 {
        font-size: 2rem;
    }

    .quote-container .subheading {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
    }

    .nav-link {
        font-size: 14px;
    }

    .btn-primary {
        padding: 8px 16px;
    }

    .quote-container h1 {
        font-size: 1.5rem;
    }

    .quote-container .subheading {
        font-size: 1rem;
    }
}


/*------------------------------------------------------ Cart -------------------------------------------------------*/
/* Info Section Container */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 50px auto;
    max-width: 1200px;
    gap: 40px;
    text-align: center;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1s ease-out, transform 1s ease-out;
    overflow-x: hidden;
}

/* Individual Info Card */
.info-card {
    flex: 1;
    background-color: #abbdcf;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateX(-100px);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    background-color: #000e79;
    color: white;
}

.info-card:hover .info-link {
    color: #fff;
}

.info-card:nth-child(2) {
    transition-delay: 0.2s;
}

.info-card:nth-child(3) {
    transition-delay: 0.4s;
}

.card-icon-container {
    width: 80px;
    height: 80px;
    background-color: #ff5700;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-card:hover .card-icon-container {
    background-color: #ff5700;
    transform: rotate(360deg);
}

.info-icon {
    font-size: 2.5rem;
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: inherit;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: inherit;
    margin-bottom: 20px;
}

.info-link {
    font-size: 1rem;
    font-weight: bold;
    color: #ff5700;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-section {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .info-card {
        padding: 40px;
    }

    .info-card h3 {
        font-size: 1.6rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .info-card {
        padding: 30px;
    }

    .info-card h3 {
        font-size: 1.4rem;
    }

    .info-card p {
        font-size: 0.85rem;
    }

    .info-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .info-section {
        gap: 15px;
        padding: 0 10px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .info-card p {
        font-size: 0.8rem;
    }

    .info-link {
        font-size: 0.85rem;
    }
}

/*------------------------------------------------------------- About us--------------------------------------------------*/
/* Original CSS */
#about {
    padding: 40px 0;
    background: linear-gradient(to bottom, #85ABD9, #EAF2F8);
    overflow-x: hidden;
}

.about-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #f1efef;
    margin-bottom: 10px !important;
    position: relative;
}

.about-text h1 .highlight {
    color: #ff5700;
    font-style: italic;
}

.about-text p {
    font-size: 1.0rem;
    color: #000000;
    margin-bottom: 13px !important;
    /* Adjusted line-height to avoid overlapping */
    line-height: 1.5;
    text-align: justify;
}

.carousel-inner img {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    margin-left: 30px;
    width: 95% !important;
    height: 390px;
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
    display: none !important;
}

.animated-text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    color: #35393d;
}

.animated-text.active {
    opacity: 1;
    transform: translateY(0);
}

.list {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.list.active {
    opacity: 1;
    transform: translateY(0);
}

/* New CSS for extra content row and inner toggle text animation */
.more-content {
    max-height: 0;
    overflow: hidden;
    /* Original transition for max-height */
    transition: max-height 0.5s ease;

    /* For bottom-to-top animation of the entire container */
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    /* Combine transitions so both max-height and fade/slide happen smoothly */
    transition: max-height 0.5s ease, opacity 0.8s ease, transform 0.8s ease;
}

.more-content.active {
    max-height: 2000px;
    /* Sufficiently high to display all extra content */

    /* Bottom-to-top fade-in for container */
    opacity: 1;
    transform: translateY(0);
}

.toggle-text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.toggle-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* Matching text style for extra content to normal about-text p */
.more-content p {
    font-size: 1.2rem;
    color: #35393d;
    margin-bottom: 13px !important;
    /* Adjusted line-height to avoid overlapping */
    line-height: 1.6;
    text-align: justify;
}

/* New UI for toggle button to indicate clickability */
.toggle-button {
    text-align: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: #ff5700;
    border: 2px solid #ff5700;
    padding: 10px 20px;
    border-radius: 15px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.toggle-button:hover {
    background-color: #ff5700;
    color: #ffffff;
}

/* Override animated-text effect on toggle-button so it remains static */
.toggle-button.animated-text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-text h1 {
        font-size: 2.5rem;
    }

    .about-text p,
    .more-content p {
        font-size: 1.1rem;
    }

    .carousel-inner img {
        width: 100% !important;
        height: auto;
        margin-left: 0;
    }

    #about {
        padding: 20px 0;
    }

    .toggle-button {
        margin-top: 2 0px;
    }
}

@media (max-width: 480px) {
    .about-text h1 {
        font-size: 2rem;
    }

    .about-text p,
    .more-content p {
        font-size: 1rem;
    }

    .carousel-inner img {
        height: 250px;
    }

    .toggle-button {
        margin-top: 10px;
    }
}

/*------------------------------------------------------------- OUR services--------------------------------------------------*/

/* ===========================
   Services Section Styles
   =========================== */
.services-section {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #ffffff, #f0f4f9);
}

.services-section h2 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #000e79;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    height: 300px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Makes the card clickable */
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #f7f9fc;
}

.service-icon {
    font-size: 2rem;
    color: #ffffff;
    background: linear-gradient(to bottom, #ff7a00, #ff5700);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000e79;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* All Services Button */
.all-services {
    text-align: center;
    margin-top: 30px;
}

.all-services-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* Space between text and arrow */
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #000e79;
    /* Dark blue */
    transition: color 0.3s ease;
}

.all-services-text {
    text-transform: none;
    letter-spacing: 1px;
}

.all-services-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #000e79;
    /* Dark blue background */
    color: #ffffff;
    /* White arrow */
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Effects for All Services Button */
.all-services-link:hover {
    color: #ff5700;
}

.all-services-link:hover .all-services-icon {
    transform: translateX(50px);
    /* Moves the arrow slightly to the right */
    background-color: #ff5700;
}

/* Responsive Services Section Styles */
@media (max-width: 1024px) {
    .services-section h2 {
        font-size: 2.4rem;
    }

    .service-card {
        padding: 25px 15px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 30px 15px;
    }

    .services-section h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 20px;
        height: 260px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-icon {
        font-size: 1.5rem;
        width: 60px;
        height: 60px;
    }

    .all-services-link {
        font-size: 1.3rem;
    }

    .all-services-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 20px 10px;
    }

    .services-section h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 15px;
        height: 240px;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .all-services-link {
        font-size: 1.2rem;
    }
}

/* ===========================
   Modal Styles
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    min-height: 400px;
    position: relative;
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer !important;
}

.modal-icon {
    font-size: 2.5rem;
    color: #ffffff;
    background: linear-gradient(to bottom, #ff7a00, #ff5700);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.modal-title {
    font-size: 1.8rem;
    color: #000e79;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.modal-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* New class for larger modal description text */
.modal-text-large {
    font-size: 1.1rem;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        padding: 15px;
        width: 95%;
        min-height: 350px;
    }

    .close {
        top: 5px;
        right: 15px;
        font-size: 1.3rem;
    }

    .modal-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .modal-description {
        font-size: 0.9rem;
    }

    .modal-text-large {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 10px;
        width: 95%;
        min-height: 300px;
    }

    .close {
        top: 5px;
        right: 10px;
        font-size: 1.2rem;
    }

    .modal-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-description {
        font-size: 0.85rem;
    }

    .modal-text-large {
        font-size: 0.95rem;
    }
}

/*------------------------------------------------------------- Vision--------------------------------------------------*/
#about {
    padding: 40px 0;
    background: linear-gradient(to bottom, #85ABD9, #EAF2F8);
    overflow-x: hidden;
}

.about-text h1 {
    font-size: 3.5rem;
    margin-top: 30px;
    font-weight: bold;
    color: #f1efef;
    margin-bottom: 0px;
    position: relative;
}

.about-text h1 .highlight {
    color: #ff5700;
    font-style: italic;
}

.about-text p {
    font-size: 1.2rem;
    color: #35393d;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
    margin-right: 10px;
}

.about-text ul li {
    font-size: 1.3rem;
    color: #35393d;
    margin-bottom: 10px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li i {
    font-size: 1.3rem;
    color: #ff5700;
    margin-right: 10px;
}

.carousel-inner img {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    margin-left: 30px;
    width: 95% !important;
    margin-top: 80px;
    height: 390px;
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
    display: none !important;
}

.animated-text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated-text.active {
    opacity: 1;
    transform: translateY(0);
}

.list {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.list.active {
    opacity: 1;
    transform: translateY(0);
}

/* Vision Section */
#vision {
    background: linear-gradient(to bottom, #85ABD9, #EAF2F8);
}

.left-section {
    background: transparent;
    margin-top: 50px;
    margin-bottom: 50px;
}

.left-section ul {
    list-style: none;
    padding: 0;
}

.left-section ul li {
    font-size: 50px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: color 0.3s, font-weight 0.3s;
}

.left-section ul li:hover,
.left-section ul li.active {
    color: #000e79;
    font-weight: bold;
}

.right-section {
    text-align: start;
    padding: 5px;
    background: transparent;
    margin-left: 150px;
}

.right-section h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.right-section p {
    font-size: 22px;
    line-height: 1.5;
    text-align: center;
}

.right-section ul {
    font-size: 20px;
    margin-left: 80px;
    line-height: 1.6;
}

/* Transition effects for sections */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-text h1 {
        font-size: 2.5rem;
    }

    .about-text p,
    .about-text ul li {
        font-size: 1.1rem;
    }

    .carousel-inner img {
        width: 100% !important;
        height: auto;
        margin-left: 0;
    }

    #about {
        padding: 20px 0;
    }

    .right-section {
        margin-left: 0;
        text-align: center;
    }

    .left-section ul li {
        font-size: 40px;
    }

    .right-section h3 {
        font-size: 28px;
    }

    .right-section p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .about-text h1 {
        font-size: 2rem;
    }

    .about-text p,
    .about-text ul li {
        font-size: 1rem;
    }

    .carousel-inner img {
        height: 250px;
    }

    .left-section ul li {
        font-size: 30px;
    }

    .right-section h3 {
        font-size: 24px;
    }

    .right-section p {
        font-size: 18px;
    }
}

/*--------------------------------------------------- Network Section ----------------------------------------------------------*/
.network-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #85ABD9, #EAF2F8);
    position: relative;
}

.network-section h2 {
    font-size: 3rem;
    color: #f1efef;
    font-weight: bold;
    margin-bottom: 20px !important;
}

.network-section p {
    font-size: 1.3rem;
    color: #35393d;
    width: 850px;
    margin: 0 auto 13px !important;
    line-height: 1.5;
    display: block;
}

.network-info {
    text-align: left;
}

.network-info p {
    width: 100%;
    margin: 0 0 20px;
    margin-bottom: 35px !important;
}

.network-bullet-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.network-bullet-points li {
    font-size: 1.1rem;
    line-height: 1.5;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.network-bullet-points li:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 4px;
}

.network-diagram {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.network-line {
    stroke: #aaa;
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    animation: dash 2s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 20;
    }
}

.network-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.network-node {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 3;
    transition: transform 0.3s ease;
}

.network-node:hover {
    transform: scale(1.1);
}

.node-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #007bff;
}

.node-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.node-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 2px solid #fff;
    text-align: center;
}

.region-title {
    font-weight: bold;
    line-height: 1.2;
}

.region-countries {
    font-size: 0.7rem;
    color: #ffcc00;
    line-height: 1.2;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .network-diagram {
        width: 300px;
        height: 300px;
    }

    .network-center {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .network-node {
        width: 70px;
        height: 70px;
    }

    .node-label {
        font-size: 0.6rem;
        bottom: -15px;
    }
}

/* Additional Responsive Overrides to Center & Scale the Diagram */
@media (max-width: 767px) {
    .network-diagram {
        /* Scale the entire diagram to 60% of its original size and center it */
        transform: scale(0.6) !important;
        transform-origin: top center !important;
        margin: 0 auto !important;
        margin-right: 160px !important;
    }

    .network-center {
        left: 72% !important;
        top: 72% !important;
    }
}

/* Additional responsive typography adjustments */
@media (max-width: 767px) {
    .network-section p {
        width: 100% !important;
        font-size: 1.1rem;
    }

    .network-section h2 {
        font-size: 2rem !important;
    }

    .network-bullet-points li {
        font-size: 1.1rem;

    }

}

/*--------------------------------------------------- Why Choose Us Section ----------------------------------------------------------*/
.why-choose-us-section {
    padding: 80px 0;
    background: #f6f6f6;
}

.why-choose-us-section h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.why-choose-us-section p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.why-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-benefits li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
}

.why-benefits li i {
    position: absolute;
    left: 0;
    top: 0;
    color: #007bff;
    font-size: 1.5rem;
    line-height: 1;
}

/* Image styling */
.why-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .why-choose-us-section {
        padding: 40px 20px;
    }

    .why-choose-us-section h2 {
        margin-top: 20px;
        font-size: 2rem;
        text-align: center;
    }

    .why-choose-us-section p {
        text-align: center;
        font-size: 1.1rem;


    }

    .why-benefits {
        font-size: 1.1rem;

    }
}


/*------------------------------------------------------------- Footer--------------------------------------------------*/


.footer {
    background-color: #111;
    color: #fff;
    padding: 50px 20px;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact h4 {
    color: #a4c2ff;
    margin-top: -7px;
    font-size: 30px;
}

.footer-contact p {
    margin-left: 5px;
    color: #fff;
}

.footer-logo {
    flex: 1;
    margin-right: 100px;
    align-items: center;
    gap: 0;
}

.footer-logo img {
    max-width: 250px;
    margin: 0;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px !important;
    margin: 0;
}

.footer-logo span {
    font-size: 13px;
    color: #999;
}

.footer-links {
    flex: 1;
    margin: 0 20px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* Updated Social Icons Styles with outline border and border-radius */
.social-icons a {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
    border: 1px solid #ffffff;
    border-radius: 50%;
    padding: 8px;
}

.social-icons a:hover {
    color: #f60;
    border-color: #f60;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-newsletter,
    .footer-contact {
        flex: 1 1 100%;
        margin: 20px 0;
    }

    .footer-logo img {
        max-width: 180px;
    }

    .footer-logo p,
    .footer-logo span,
    .footer-links ul li a {
        font-size: 12px;
    }

    .footer-contact h4 {
        font-size: 24px;
    }

    .footer-contact p {
        font-size: 14px;
        margin-left: 0;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 10px;
    }

    .footer-logo img {
        max-width: 140px;
    }

    .footer-logo p,
    .footer-logo span,
    .footer-links ul li a {
        font-size: 11px;
    }

    .footer-contact h4 {
        font-size: 20px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .social-icons a {
        font-size: 16px;
    }
}

/* --- Additional Enhancements --- */

/* Add a subtle gradient overlay and shadow to the footer */
.footer {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
}

/* Smooth transition for all links in footer-links */
.footer-links ul li a {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links ul li a:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* Add a hover scale effect to the footer logo image */
.footer-logo img {
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.1);
}

/* Enhance footer headings with a text shadow */
.footer-contact h4,
.footer-links h4 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#scrollToTop {
    display: none;
    /* Initially hidden */
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9999;
    font-size: 24px;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px !important;
    background-image: linear-gradient(45deg, rgb(41, 106, 210), rgb(55, 46, 235));
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    width: 45px;
    height: 45px;
    padding: 0;
    line-height: 45px;
    text-align: center;
}

#scrollToTop:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 480px) {
    #scrollToTop {
        bottom: 80px;
        right: 16px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 20px;
    }
}

