
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        } 

        :root {
            --primary-color: #2A4365;
            --secondary-color: #F6AD55;
            --accent-color: #4FD1C5;
        }

        /* Navigation */
        /* .navbar {
            position: fixed;
            width: 100%;
            padding: 1rem 5%;
            background: rgba(255,255,255,0.95);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        } */

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                        url('https://picsum.photos/1920/1080') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 5%;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }

        /* Services Section */
        .services {
            padding: 5rem 5%;
            background: #f8fafc;
            margin-left: 60px;
        }
        .services h1{
       font-size: 40px;
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .service-card {
            display: flex;
            flex-direction: column; /* Stack icon, heading, and paragraph vertically */
            align-items: center; /* Center align content */
            text-align: center; /* Ensure text stays centered */
            gap: 10px; /* Space between elements */
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            width: 300px; /* Adjust as needed */
        }
        
        .service-card i {
            font-size: 40px; /* Increase icon size */
            color: #333; /* Adjust icon color */
        }
        
        .service-card h3 {
            margin: 0;
            font-size: 22px;
        }
        
        .service-card p {
            margin-top: 10px;
            font-size: 16px;
            line-height: 1.5;
            width: 100%;
        }
        

        .service-card:hover {
            transform: translateY(-10px);
        }


        
        /* Why Choose Us */
        /* .why-choose {
            padding: 5rem 5%;
            background: var(--primary-color);
            color: white;
        } */

        /* Animations */
         @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        } 

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
            }
        }

        /*  */


        .why-choose-us {
  padding: 40px;
  text-align: center;
}

.why-choose-us h2 {
  margin-bottom: 30px;
}

.reasons {
  display: flex;
  flex-wrap: wrap; /* Allows reasons to wrap on smaller screens */
  justify-content: center; /* Center the reasons horizontally */
  gap: 20px; /* Adds spacing between the reason blocks */
}

.reason {
  width: 28%; /* Adjust width for responsiveness */
  padding: 20px;
  border: 1px solid #ddd; /* Light gray border */
  border-radius: 8px; /* Rounded corners */
  text-align: center;
  background-color: white; /* White background for reason blocks */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transition for hover effect */
}

.reason img {
    width: 250px; /* Default width */
    height: 300px; /* Default height */
    margin-bottom: 15px; /* More spacing */
    border: 3px solid #333; /* Thicker border for clarity */
    border-radius: 8px; /* Slightly more rounded corners */
    object-fit: cover; /* Ensures the image covers the entire area */
    background-color: white; /* Adds contrast */
    padding: 8px; /* Adds more spacing around the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Stronger shadow for depth */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .reason img {
        width: 220px;
        height: 270px;
    }
}

@media (max-width: 768px) {
    .reason img {
        width: 200px;
        height: 250px;
    }
}

@media (max-width: 600px) {
    .reason img {
        width: 180px;
        height: 220px;
    }
}

@media (max-width: 400px) {
    .reason img {
        width: 160px;
        height: 200px;
    }
}



.reason:hover {
  transform: translateY(-5px); /* Move up slightly on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* More pronounced shadow on hover */
}

.reason h3 {
  margin-bottom: 10px;
}

.cta {
  background-color: #f0f0f0; /* Light gray background for CTA */
  padding: 60px;
  text-align: center;
}

.cta h2 {
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reason {
      width: 45%; /* Two reasons per row on medium screens */
  }
}

@media (max-width: 500px) {
  .reason {
      width: 90%; /* One reason per row on small screens */
  }
 
}
button {
  background-color: #0056b3; /* Darker blue button */
  color: white;
  padding: 15px 30px; /* Increased button padding */
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  margin-top: 30px;
}

button:hover {
  background-color: #003f80; /* Even darker blue on hover */
}


*{
    /* margin: 0; */
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html,body{
    height: 100%;
    width: 100%;
   
}

nav {
    position: fixed; /* Keeps the navbar fixed at the top */
    top: 0; 
    left: 0;
    right: 0;
    height: 70px;
    z-index: 100; /* Ensures the navbar appears above other elements */
    background: #004274;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow for better visibility */
    
}

nav ul{
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li{
    list-style-type: none;
}

nav ul li a{
    text-decoration: none;
    color: #fff;
    padding-right: 40px;
    font-size: 23px;
}

.menu-icon{
    display: none;
   
}


.menu-icon i{
    color: #fff;
    font-size: 30px;
}
a:hover{
    color: rgb(236, 234, 234);
}

@media (max-width:600px) {
    nav ul{
        position: absolute;
        top: 60px;
        left: 10;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: #004274;
        gap: 0;
        overflow: hidden;
        width: 100%;
        padding-left: 9%;
    }
    nav ul li{
        padding: 20px;
        padding-top: 0;
    }
    .menu-icon{
        display: block;
    }
    #menuList{
        transition: all 0.5s;
        position: absolute;
       z-index: 100;
      
       
       

        
    }
}

.logo-container {
    text-align: left;
    text-decoration: none;
}

.logo {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
   
}

.slogan {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    color: #dcdcdc; /* Light gray */
    
   
}

.navbar a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.logo-container a {
    text-decoration: none; /* Removes the underline */
}

.logo, .slogan {
    text-decoration: none; /* Ensures no underline on text */
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-image {
    width: 150px; /* Default size */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Add hover animation */
     /* margin-top: 10px;  */
}

.logo-image:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}




.card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.card {
    background: #004274;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease-in-out;
}
.card:hover {
    transform: scale(1.05);
}
.icon {
    font-size: 40px;
    margin-bottom: 10px;
}
.btn {
    background: white;
    color: #004274;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}
.btn:hover {
    background: #ddd;
}

.card-head{
    color: black;
    margin-top: 50px;
    margin-bottom: 40px;
    margin-left: 100px;
    
}

@media (max-width:768px) {
    .card-head{
   margin-right: 25px;
}
}

.fast-track {
    text-align: center;
    /* margin-top: 50px; */
    padding: 20px;
    background: linear-gradient(90deg, #004274, #004274);
    /* border-radius: 10px; */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.fast-track span {
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    color: white;
}
.fast-track a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s, transform 0.2s;
}
.fast-track a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}
@media (max-width: 1024px) {
   
    .fast-track {
        padding: 15px;
        flex-direction: column;
        align-items: center;
    }
    .fast-track a {
        display: block;
        width: 80%;
        text-align: center;
    }
}