:root {
    --primary-color: #008B9B;
    --secondary-color: #333;
    --text-color: #666;
    --white: #fff;
    --primary-dark: #015670;
    --primary-light: #0081A7;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Utility Classes */
.bg-primary-dark { background-color: var(--primary-dark); }
.bg-primary-light { background-color: var(--primary-light); }
.text-primary-dark { color: var(--primary-dark); }
.text-primary-light { color: var(--primary-light); }





/* Navbar Styles */


/* .navbar {
    padding: 10px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 55px;
}

.navbar-nav .nav-link {
    color: #000000 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.9rem; /* Decreased font size
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-light) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-light);
}

.navbar-nav .nav-link.contact-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 25px !important;
    border-radius: 40px;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.navbar-nav .dropdown-item {
    color: #000000;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--white);
} */


 

/* navbar.css */

.navbar {


    padding: 15px ;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 72px;
}

.navbar-nav .nav-link {
    color: #000000 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
    font-size: 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-light) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-light);
}

.navbar-nav .nav-link.contact-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 25px !important;
    border-radius: 40px;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.navbar-nav .dropdown-item {
    color: #000000;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.blinking-text {
    color: #d10000;
    font-weight: bold;
    animation: blink-text 1s step-start infinite;
}

@keyframes blink-text {
    50% {
        visibility: hidden;
    }
}













/* Banner Section */
.banner-button {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}













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

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}

.service-card {
    padding: 30px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: var(--white);
    font-size: 24px;
}

/* MD Section */
.md-section {
    background-color: #008B9B;
    background-image: url('path_to_network_pattern.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.md-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 139, 155, 0.9);
    z-index: 1;
}

.md-content {
    position: relative;
    z-index: 2;
}

.md-image {
    width: 280px;
    height: 280px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.md-name {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.md-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.md-logo {
    width: 150px;
    margin-top: 1rem;
}

.vision-title, .mission-title {
    color: #FFD700;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.highlight {
    color: #FFD700;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
    
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }

    .navbar-nav .nav-link.active::after {
        width: 50px;
    }

    .display-5 {
        font-size: 2rem;
    }

    .service-images {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .banner-button {
        top: 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .md-section {
        padding: 2rem 0;
    }

    .md-image {
        width: 200px;
        height: 200px;
    }

    .vision-title, .mission-title {
        font-size: 1.5rem;
    }
}



