body {
    margin: 0;
    font-family: "Tomato Grotesk",Arial, sans-serif;
    background: white;
    height: 100%;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #023c80, #035aa6);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    height: 50px;
    right: 0;
    }
.sticky-header{
    position: sticky;
    top: 0; /* Stick to the top of the page */
    z-index: 1000; 

}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}
.nav {
    list-style: none;
    display: flex;
    gap:2px;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
    padding: 0 !important;
}
.nav li {
    position: relative;
    list-style: none;
    padding:2px;
    overflow: visible;
}
.nav a {
    text-decoration: none;
    color: white;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;

}
.nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 140px;
    background: linear-gradient(to right, #023c80, #035aa6);
}
.dropdown a {
    display: block;
    color: white;
    padding: 5px;
}
.nav li:hover .dropdown {
    display: block;
}
.header-image{
width:100%;
height:auto;
}
.social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    color: white;
}
.social-icons img {
    width: 18px;
    height: 18px;
    transition: 0.3s;
}
.social-icons a:hover img {
    opacity: 0.7;
}
.contact-info {
    margin-top: 10px;
}
ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: #eee;
    margin: 0;
}
ul.breadcrumb li {
     display: inline;
    font-size: 18px;
}
ul.breadcrumb li+li:before {
    padding: 0;
    color: black;
    content: "/\00a0";
}
ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}
footer{
    display: flex;
    justify-content: space-between;
}
.banner{
    display:flex;width:89%;position: sticky;
    top: 0; /* Stick to the top of the page */
    z-index: 500; /* Keep it below the navbar */
}
.index-img{
    width:500px;
    height: 350px;
    margin:0;
    padding-top:25px;
    padding-right:50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slogan{
    font-size: 22px;
    margin: 5px;
    color: navy;
    font-weight: normal !important;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri Light, 'Trebuchet MS';
    text-align: center;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
.blinking-header{
        font-size: 20px;
        font-weight: bold;
        color: navy;
        animation: blink 1s infinite; /* Makes the text blink continuously */
        padding:0;
    }
.container{
    display: flex;
}
.all-img{
    width:850px;
    height: auto;
    margin:0;
    margin-top:10px;
    margin-bottom:10px;
    padding:0;
     display: block;
     margin-left: auto;
     margin-right: auto;
}
.welcomeimg{
    width:60%;
    height:25%;
    margin-top:10px;
    padding-bottom:50px;
    padding-left:150px;
}
.approach-img{
    width:700px;
    height: 390px;
    margin:0;
    padding:0; 
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.qr-img{
    width:250px;
    height:290px;
    margin:0;
    padding:0;
     display: block;
     margin-left: auto;
     margin-right: auto;
}
.social-icons {
    list-style: none;
    padding: 0;
}

.social-icons li {
    display: inline-block;
    margin: 0 15px;
}

.social-icons a {
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.social-icons img {
    font-size: 14px;
    margin-right: 5px;
}

.social-icons a[href*="facebook"] {
    background-color: #1877F2;
    color: white;
    border-color: #1877F2;
}

.social-icons a[href*="x"] {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.social-icons a[href*="instagram"] {
    background-color: #E4405F;
    color: white;
    border-color: #E4405F;
}

.social-icons a[href*="linkedin"] {
    background-color: #0077B5;
    color: white;
    border-color: #0077B5;
}

.social-icons a[href*="web"] {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.social-icons a:hover {
    opacity: 0.8;
}
@media only screen and (max-width: 600px) {
    .footer, .header {
        padding: 10px;
        font-size: 15px;
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    .social-icons img {
        width: 25px;
        height: 25px;
    }
.nav {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }
    .nav a {
        padding: 10px;
        width: 100%;
        text-align: center;
}
    .all-img{
        width: 100% !important;
        height: 50% !important;
        margin: 0;
    }
    .carousel,.sub2{
        width: 100% !important;
        height: 50% !important;
    }
    .container1 p{
        margin: 0 !important;
        width: inherit;
     }
     .container1,.sub-container{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
     }
    .sub2{
        flex-wrap:wrap;
    }    
    
    .banner{
        display:flex;
        width:100%;
        height: 40px;
    }
    .index-img{
        width: 300px;
        height: 250px;
        padding-left: 50px;
    }
    .sub-container1{
        height: 100%;
    }
    .container{
        flex-wrap: wrap;
    }
    .emaill-list,.phoneno-list{
        padding:0!important;
    }
    .sub3 img{
        padding: 0 !important;
    }
    
.sub1{
    width: 100% !important;
}
.welcomeimg{
    margin-left: 100px;
    margin-bottom: 25px;
    padding: 0 !important;
}
    .carousel-caption {
        font-size: 5px; /* Reduce caption text size */
        padding: 5px;
        background: rgba(0, 0, 0, 0.6); /* Add semi-transparent background */
    }
    .carousel-control-prev, .carousel-control-next {
        width: 30px; /* Reduce width */
        height: 30px;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 3px;
    }
    .slider-image{
        width: 350px !important;
        height: 300px !important;
    }
    main{
        flex-direction: column;
    }
}
@media only screen and (min-width:601px) and (max-width: 900px) {
    .footer, .header {
        padding: 5px;
        font-size: 10px;
        height: auto;
        width: 100%;
    }
    .social-icons img {
        width: 10px;
        height: 10px;
    }
/*.nav {
        flex-direction: column;
        align-items: center;
    }*/
    .nav{
        justify-content: flex-end;
    }
    .nav a {
        padding: 5px;
        width: 100%;
        text-align: center;
}


.carousel,.sub2{
    width: 100% !important;
    height: 50% !important;
}
.container1 p{
    margin: 0 !important;
    width: inherit;
 }
 
 .container1,.sub-container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
 }
 .sub2{
    flex-wrap:wrap;
}

.banner{
    display:flex;width:82%;
}
.index-img{
    width: 600px;
    height: 600px;
}    
.sub-container1{
    height: 100%;
}
.container{
    flex-wrap: wrap;
}

.sub1{
    width: 100% !important;
    flex-direction: column;
    flex-wrap: wrap;
}

.slider-image{
    width: 350px !important;
    height: 300px !important;
}

.phoneno-list,.emaill-list{
    padding: 0 !important;
}
.contact-img{
    padding-left: 100px !important;
}
#emailone,#emailtwo,#phoneone,#phonetwo{
    padding-left: 150px !important;
}
main{
    flex-direction: column;
}
}