/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.services-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.service-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

h2 {
    color: #2980b9;
    font-size: 1.4em;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-size: 1em;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.6em;
    }
}





/* Top Bar Styling */
.top-bar {
    background-color: #1A2166; /* Dark Blue Background */
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar img {
    width: 18px; /* Adjust the size of the icons */
    height: 18px;
    vertical-align: middle;
}
/* Navigation Styles */
.main-nav {
    background: #333;
    padding: 15px 0;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    font-weight: 500;

}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font: bold;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #B8860B;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 8px 15px;
}

.dropdown-menu a {
    color: #333;
    display: block;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    color: #B0B4B7;
    background: #f9f9f9;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E6F2FF;
    padding: 15px 88px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #323B4B;
    font-weight: 600;
    font-size: 18px;
}


.btn {
    background: linear-gradient(45deg, #1A2166, #2DAF74);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .btn:active {
    transform: translateY(1px);
  }
  
  /* Optional: Add a shine effect on hover */
  .btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.3s ease;
  }
  
  .btn:hover::after {
    left: 100%;
  }
  


/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Fixing top bar alignment */
    .top-bar {
        text-align: center;
        display: flex;
        justify-content: center;
        width: 110%;
        top: 0;
        left: 0;
        z-index: 1000;
        
    }


    .top-bar span {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        justify-content: center;
    }


    nav {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        width: 90%;

    }
}