body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #a7c9ec;
    text-align: center;
}



/*navbar css*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50;
    background-color: #1B0791;
    color: #dfe6f8;
}
.navbar a {
    color: #dfe6f8;
    text-decoration: none;
    margin: 0 15px;
}
.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center; 
}
.navbar ul li {
    position: relative; /
}
.navbar .dropdown {
    position: relative;
}
.navbar .dropbtn {
    color: #dfe6f8;
    text-decoration: none;
    margin: 0 15px;
    padding: 10px 0; 
    display: inline-block; 
    cursor: pointer;
}
.navbar .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1B0791;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.navbar .dropdown-content a {
    color: #dfe6f8;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.navbar .dropdown-content a:hover {
    background-color: #5c3d8c;
}
.navbar .dropdown:hover .dropdown-content {
    display: block;
}
.navbar ul li a:hover {
    background-color: #5c3d8c;
}



/*Home page css*/
.hero {
    background: #094989;
    /*background-image: url('homepic.jpeg');*/
    background-size: cover;  /* Makes sure the image covers the container */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents the image from repeating */
    color: white;
    padding: 60px 20px;
}
.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}
.service {
    padding: 20px;
    background:white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.discover {
    margin: 20px;
}
.discover button {
    background: #027bf4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
.discover button:hover {
    background: #1B0791;
}
.whyus {
    margin: 40px 20px;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 5px;
}
.whyus h2 {
    margin-bottom: 10px;
}
.whyus ul {
    list-style: none;
    padding: 0;
}
.whyus li {
    margin: 10px 0;
    font-size: 1em;
}

/* Custom Container for layout control (homeservcont) */
.homeservcont {
    margin: 40px 20px;         /* Same margin as .whyus */
    padding: 20px;             /* Same padding as .whyus */
    background: #f4f4f4;       /* Same background color as .whyus */
    border-radius: 5px;        /* Same border-radius as .whyus */
    width: 100%;               /* Full width of the container */
    max-width: 1200px;         /* Same max-width as .whyus */
    margin: 40px auto;         /* Center the container horizontally */
}

/* Remote Services Section Styling */
#remoteServicesInfo {
    text-align: center;
    padding: 20px 0;
}

#remoteServicesInfo h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333;
}

#remoteServicesInfo p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #555;
}

/* Simplified Service List (homservlist) */
.homservlist {
    padding: 0;
    margin: 20px 0;
}

.homservlist ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.homservlist li {
    font-size: 1em;  /* Smaller font size */
    margin-bottom: 12px; /* Space between items */
    color: #333;
}

.homservlist li strong {
    font-weight: bold;
}

/* Button Styling */
.homeservbutton {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 16px;
    background-color: #027bf4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.homeservbutton:hover {
    background-color:#1B0791;
}





/*About us page css*/
.about h1 {
    background-color: #094989; /* Color block for the header */
    color: white;
    text-align: center;
    padding: 50px ;
}
.about {
    padding: 10px;
    text-align: center;
}
.aboutsection {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #e1eaff, #f1f1f1);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}
.aboutitem {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px; 
    transition: transform 0.3s ease;
    position: relative;
}
.aboutitem h2 {
    font-size: 1.4em;
    color: #1B0791;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0px;
}
.aboutitem p {
    font-size: 1.1em;
    color: #555;
    text-align: justify;
    line-height: 1.6;
}
.about h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
}
.about p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}
.team {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.teammember {
    text-align: center;
}
.teammember img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}



/* Our services css
.servicessection {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.serviceitem {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; 
    color: inherit;
}
.serviceitem h2 {
    font-size: 1.8em;
    color: #1B0791;
    margin-bottom: 20px;
}
.serviceitem p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}
.servicelink {
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
    color: #1B0791;
}
.servicelink:hover {
    color: #5c3d8c;
}
.serviceitem:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
} */


/*Jurisdiction css*/
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.jurisdiction {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: block;
}

.jurisdiction:hover {
    transform: scale(1.05);
}

.jurisdiction::after {
    content: attr(data-name);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.85);
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.jurisdiction:hover::after {
    opacity: 1;
}

/* Remove underline from all links */
a {
    text-decoration: none;
}


/*All services solo page*/
.solocontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color:#a7c9ec; /*#ffffff*/
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}
.solocontainer p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}
.soloitem {
    background-color:#ffffff;/*#ffffff*/
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    transition: background-color 0.3s, transform 0.3s;
}
.soloitem:hover {
    background-color: #e2e2f2;
    transform: translateY(-5px);
}
.soloitem h2 {
    font-size: 1.8em;
    color: #1B0791;
    margin-bottom: 10px;
}
.soloitem p {
    font-size: 1.1em;
    color: #666;
}
.solocontainer {
    margin-top: 30px;
}
.bookmeetingbtn {
    padding: 15px 30px;
    background-color: #1B0791;
    color: #fff;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.bookmeetingbtn:hover {
    background-color: #5c3d8c;
}



/* COUNTRY CSS */
/*Country Info Section*/
.country-info {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    position: relative; 
}

.country-info h1 {
    color: #333;
    margin-left: 120px; 
    margin-right: 120px; 
    text-align: center; 
}

.country-info p {
    color: #666;
    margin-left: 120px; 
    margin-right: 120px; 
    text-align: center; 
}

.country-flag {
    width: 80px;               
    height: 80px;               
    background-size: cover;       
    background-position: center; 
    border-radius: 50%;         
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); 
    transition: transform 0.3s ease; 
    position: absolute;          
    top: 50%;                     
    transform: translateY(-50%);  
}

.country-flag-left {
    left: 20px;                   
}

.country-flag-right {
    right: 20px;                  
}

.country-flag:hover {
    transform: scale(1.05) translateY(-50%);
}




/* COUNTRY SERVICES Section */
.countryservices {
    background-color: #fff;
    padding: 40px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.countryservices h2 {
    color: #333;
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Country Services Container */
.countryservices-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

/* Country Service Cards */
.countryservice-card {
    background-color: #f9f9f9;
    padding: 25px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display:flex;
    flex-direction:column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 300px;
}

.countryservice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.countryservice-card .countryservice-list {
    max-height: 150px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}

.countryservice-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.countryservice-card:hover .countryservice-icon {
    transform: scale(1.1);
}

.countryservice-card h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 10px;
}

.countryservice-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}




/* Country Contact Section */
.country-contact {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
}

.country-contact h2 {
    color: #333;
}

.country-contact p {
    color: #666;
}

.country-contact form {
    display: flex;
    flex-direction: column;
}

.country-contact label {
    margin-bottom: 5px;
}

.country-contact input,
.country-contact textarea {
    margin-bottom: 10px;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.country-contact button {
    background-color: #5cb85c;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.country-contact button:hover {
    background-color: #4cae4c;
}

select#country {
    width: 100%;  
    padding: 10px; 
    font-size: 16px;
    border: 1px solid #ccc;  
    border-radius: 5px;  
    background-color: #fff; 
    appearance: none;  
    -webkit-appearance: none;
    -moz-appearance: none;

    margin-bottom: 20px;  
}
select#country option {
    padding: 10px; 
    font-size: 16px;  
}
.spacer {
    height: 20px;  
}

select#country {
    position: relative;
    padding-right: 30px; 
}

select#country::after {
    content: '^';  
    font-size: 20px;  
    position: absolute;
    top: 50%;  
    right: 10px;  
    transform: translateY(-50%);  
    color: #333; 
}







 /* Notification Bar Style */
 #maintenanceNotification {
    display: none; /* Hidden by default */
    color: white;
    text-align: center;
    font-size: 18px;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    animation: colorFlash 1.5s infinite alternate;
}

/* Flashing color animation */
@keyframes colorFlash {
    0% { background-color: #f39c12; }
    50% { background-color: #e74c3c; }
    100% { background-color: #f39c12; }
}

/* Close button */
.close-btn {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 15px;
}

/*footer css*/
.footer {
    background: #1B0791;
    color: #dfe6f8;
    padding: 5px;
    margin-top: 20px;
}
.footer a {
    color: #85a5fd;
    text-decoration: none;
    margin: 0 10px;
}
