@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

* {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    
}

body {
    background-color:white;
    
}
#progress {
    position: fixed;
    bottom: 30px;
    left: 8px;
    height: 45px;
    width: 45px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10000;
  }
  #progress-value {
    display: block;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    color: #001a2e;
  }

/*** Spinner ***/
#spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    display: flex;
    background-color: white;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 9999; /* To make sure it stays on top */
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
  }
  
  #spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
#spinner i{
    font-size: 4rem;
    color:#004aad;
  }


header {
    background-color:  white;
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.items {
    user-select: none;
    height: 65px;
    width: 500px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-shadow: 1px 1px 2px black;
    font-weight: 900;
    letter-spacing: 2px;
}

.items img {
    margin: 0 10px 0 5px;
    height: 76px;
    width: 80px;
    z-index: 1001;
}

.items .cap {
    position: absolute;
    top: -2.5px;         /* Adjust to position above "S" */
    margin-left:5.4rem;
    height: 1.5rem;
    width: 1.5rem;
    z-index: 999;       /* Place cap image behind the text */
}

.items .l1 {
    margin-left: 0.1rem;
    color: rgb(23, 23, 160);
    font-size: 42px;
    position: relative;
    top: -8px;  /* Adjust this value to control the downward shift */
}

.items .l2{
    font-weight: 0;
    position: absolute;
    font-size:75px;
    top:0.1rem;
    margin-left:6.8rem;
    color: #b48415;
}

.items .l5 {
    margin-left: 1.7rem;
    color: rgb(23, 23, 160);
    font-size: 42px;
    position: relative;
    top: -8px;  /* Adjust this value to control the downward shift */
}



.items .symbol {
    left:1.8rem;
    font-size: 35px;
    color: rgb(23, 23, 160);
    font-weight: 900;
    position: relative;
    top:-7px;  /* Adjust this value as needed */
}


.items .np {
    position: absolute;
    letter-spacing: 3.5px;
    top:3.1rem;
    margin-left:10rem;
    z-index: 1000;
    color: #b48415;
        font-size: 25px;
}

.items .wifi{
    color:black;
    top:-1px;
    margin-left:-7px;
    font-size:0.7rem;
    position: absolute;
    z-index: 999; 
}
nav ul {
    display: flex;
    list-style: none;
    margin-top: 2px;
    margin-right: 20px;
  }

.menu-toggle {
    display: none;
}
nav ul li {
    
    margin: auto;
}




nav ul li a {
    color: #004aad;
    padding: 10px;
    font-size: 19px;
    font-weight: 1000;
    text-decoration: none;
}

nav ul li a:hover {
    background-color:  #004aad;
    color:   white;
    text-decoration: none;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden; 
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    
}

.hero-content {
    width: 830px;
    border-radius: 20px;
    box-shadow: 2px 3px 4px rgba(255, 255, 255, 0.518);
    background-color: rgba(250, 250, 250, 0.057);
    backdrop-filter: blur(40px);
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    width: 100%;  /* Adjusts to the width of the .hero-content */
    max-width: 600px; /* Ensures a max width for readability */
    font-size: 20px;
    font-weight: 400;
    margin: 0 auto;  /* Centers the paragraph */
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.cta-button {
    margin: 20px 0;
    background-color: #004aad;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #002f66;
}

/*about us*/

.about{
    min-height:98vh;
    max-width: 100%;
    background:white;
}

.about-container {
    margin-top:20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    
}

.text {
    text-align:justify;
    width: 50%;
    padding-right: 20px;
    margin:30px;
}
.text h2{
    margin-top:20px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 38px;
    font-weight: 600;
}

.text p{
    margin-top:20px;
    font-size: 20px;
    line-height: 1.5;
}



.img {
    width: 50%;
    display: flex;
    justify-content: center;
}

.img img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Stats Section Styling */
.stats-section{
    background: white;
}
.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f7f7f7;
    
}

.stat-item {
    text-align: center;
    width: 30%;
}

.stat-item h3 {
    font-size: 36px;
    margin: 0;
    color: #333;
}

.stat-item p {
    font-weight:900;
    font-size: 18px;
    margin: 5px 0 0;
    color: #777;
}




/*team section*/


.team{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    width:100%;
    text-align: center;
    background-color: #a9a8a8;
    margin: 0; /* Remove any external margin */
    padding: 0; /* Remove any internal padding */
    
}

.team .heading{
    padding:2rem 0;
    font-size:3rem;
    color: #ffffff;
    margin-bottom: 2rem;
}


.team .heading::before, .team .heading::after{
    border-color: #3141f4;
}

.team .row {
    margin-top:5%;
    display:inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    cursor: pointer;
}

.team .row .card {
    border-radius:10%;
    z-index:900;
    height: 19rem;
    width: 15rem;
    background-color: #fff;
    text-align: center;
    margin: 1rem 1rem;
    position: relative;
    -webkit-box-reflect: below 5px linear-gradient(transparent 80%, #0004);
    transition: 0.5s;
    overflow: visible; /* Keep the content inside the card hidden */
}

.team .row .card:hover{
    transform: translateY(-10px);
    cursor: pointer;
}

.team .row .card .image {
    position: relative;
    
}
.team .row .card .sam  .iborder{
    transform: rotateX(105deg);
    margin-left:14%;
    margin-top:-1%;
    height: 11rem;
    width: 10rem;
    border-radius: 50%;
    display:inline block;
    z-index: -100;
    border: 5.5rem solid #1a345c;

}


.team .row .card .image img {
    z-index: 1000;
    margin-top: -6rem;
    height: 12rem;
    width: 9rem;
    object-fit: cover;
}
.team .row .card .info{
    margin-top:20%;
}
.team .row .card .info h3{
    font-size: 1.2rem;
    color: #333;
}

.team .row .card .info span{
    font-size: 0.8rem;
    color:#3141f4;;
}

.team .row .card .info .icons a{
    text-decoration: none;
    margin-top: 3.5rem;
    font-size: 1.5rem;
    color: #333;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.8rem;
}

.team .row .card .info .icons .fa-facebook-f:hover, .footer .icons .fa-facebook-f:hover{
    color: #4267B2;
    text-decoration: none;
}

.team .row .card .info .icons .fa-twitter:hover, .footer .icons .fa-twitter:hover{
    color: #1DA1F2;
    text-decoration: none;
}

.team .row .card .info .icons .fa-instagram:hover, .footer .icons .fa-instagram:hover{
    color: #C13584;
    text-decoration: none;
}

.team .row .card .info .icons .fa-linkedin:hover, .footer .icons .fa-linkedin:hover{
    color: #2867B2;
    text-decoration: none;
}



.team .row .card .sam {
    border-radius:10%;
    transition: 0.5s;
    z-index:-1;
    top:-98.3%;
    left:-20%;
    height: 19rem;
    width: 15rem;
    background-color:white;
    text-align: center;
    margin: 1rem 3rem;
    position: relative;
    overflow: hidden;
}


.team .row .card .sam::before, .team .row .card .sam::after{
    
    content: '';
    position: absolute;
    border-radius: 50%;
    height: 9.5rem;
    width: 9.5rem;
}

.team .row .card .sam::before{
    background:#3141f4;;
    top: -3rem;
    right: -4rem;
    z-index: -2;

}

.team .row .card .sam::after{
    background: #ccc;
    bottom: -3rem;
    left: -4rem;
}











/*testimonial section*/

/* Container for the entire section */
.testi-container {
    background: #004aad;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #f39c12 ;
}

.section-separator {
    display: block;
    width: 10%;
    height: 4px;
    background: #ffffff;
    margin: 10px auto;
}

/* Testimonials Carousel Wrapper */
.testimonials-carousel-wrap {
    
    background: #004aad;
    position: relative;
}

/* Navigation Buttons */
.listing-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

.listing-carousel-button-next {
    
    font-size: 50px;
    right: 0;
}

.listing-carousel-button-prev {
    
    font-size: 50px;
    left: 0;
}
.listing-carousel-button:hover {
    padding:2px 5px;
    background-color: #f39c12;
}

/* Swiper Container */
.swiper-container {
    cursor:grab;
    width:90%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    width:90%;
}

/* Individual Slide Styles */
.swiper-slide {
    display:flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
}

/* Testimonials Card */
.testimonials-card {
    width:100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
}
.testimonials-card p{
    height:120px;
    width:100%;
    font-size: 15px;
    text-align: justify;
}


/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 15px;
}

.testimonials-header img {
    height:80px;
    width: 80px; /* Adjust size as needed */
    border-radius: 50%;
    margin-bottom: 2px;
}

.testimonials-header h3 {
    color:#f39c12;
    font-size: 1.3rem;
}

.testimonials-header h4 {
    font-size: 10px;
    color: white;
    margin: 0;
}



/* Testimonials Text and Quote Icons */
.testimonials-text-before,
.testimonials-text-after {
    font-size: 1.5rem;
    color: #f39c12;
}
.testimonials-text-before{
    margin-top:-5px;
}
.testimonials-text-after {
    margin-bottom:-15px;
    margin-left:90%;
}

.listing-rating {
    text-align: center;
    margin: -15px 0 10px 0;
}

.listing-rating i {
    font-size:1.5em;
    color: #f39c12;
}
.tc-pagination {
    display: flex; 
    justify-content: center; 
    padding: 20px 0; 
}

/* Styling the individual pagination bullets */
.tc-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 3px; 
    transition: background-color 0.3s, transform 0.3s; 
}

/* Style for active pagination bullet */
.tc-pagination .swiper-pagination-bullet-active {
    background-color: #007bff; 
    transform: scale(1.3); 
}

/* Hover effect on pagination dots */
.tc-pagination .swiper-pagination-bullet:hover {
    background-color: #007bff;
    cursor: pointer; 
    transform: scale(1.2);
}



#review {
    display: inline-flex; /* Align icon and link on the same line */
    align-items: center; /* Vertically center align icon and text */
    margin-left: 20px;
    position: relative;
    top: -70px;
    font-weight: 500;
}

#review a {
    text-shadow: 2px 1px 4px white;
    margin-left: 10px; /* Adjust space between icon and text */
    font-size: 14px;
    color: #ffffff; /* Adjust the color if needed */
    text-decoration: none;
    animation: blinkBulb 1.5s infinite; /* 1.5s for a smooth blink */
}

#review i {
    color: #f39c12;
    font-size: 40px; /* Adjust the size of the icon */
    animation: boxiconpoint 1s ease-in-out infinite; /* Apply the up-and-down animation */
}


@keyframes boxiconpoint {
    0% {
        transform: translatex(0);
    }
    50% {
        transform: translatex(10px); /* Move down by 10px */
    }
    100% {
        transform: translatex(0); /* Return to the original position */
    }
}
@keyframes blinkBulb {
    0% {
        text-shadow: 0 0 5px #fff, 0 0 10px rgb(118, 126, 45), 0 0 20px rgb(118, 126, 45), 0 0 40px rgb(118, 126, 45);
        color: rgb(246, 227, 103);
    }
    50% {
        color: #efd006;
    }
    100% {
        text-shadow: 0 0 5px #fff, 0 0 10px rgb(118, 126, 45), 0 0 20px rgb(118, 126, 45), 0 0 40px rgb(118, 126, 45);
        color: rgb(142, 152, 36);
    }
}


/*end*/
@keyframes phone-ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
  }
#whatsapp-link i {
    position: fixed;
    animation: phone-ring 2s infinite;
    right: 15px;
    bottom: 20px;
    height:47px;
    width:48px;
    text-align:center;
    border-radius:50%;
    background: #25D366;
    color: white;
    font-size: 48px;
    z-index: 999;
    text-decoration: none;
  }
  
  
  #whatsapp-link i:hover {
    background-color: #20b455;
  }
  
footer{
    
    bottom: 0;
    width: 100%;
    height: 50px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
footer p{
    color: #004aad;
   font-size: larger;
   font-weight: bolder;

}










@media (max-width: 1100px) {
.about{
    overflow-x: hidden;
    min-height:60vh;
}
.about-container {
    display:block;
    margin-top:30px;
    width:100%;
    padding: 20px;
    
}

.text {
    width: 50%;
    width:100%;
}
.text h2{
    margin-top:10px;
    margin-bottom:35px;
    font-size: 38px;
    font-weight: 600;
}

.text p{
    padding:auto;
    font-size:23px;
    line-height: 1.5;
    margin-bottom: 15px;
    margin-right: 40px;
}


.img {
    height:350px;
    width: 100%;
}

.img img {
    margin-top:-20px;
    max-width: 100%;
}

/* Stats Section Styling */
.stats-section{
    height: 180px;
}
.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f7f7f7;
    
}

.stat-item {
    text-align: center;
    width: 20%;
    
}

.stat-item h3 {
    font-size: 38px;
}

.stat-item p {
    font-size: 25px;
}
.section-title h2 {
    font-size: 2.5rem;
}

.team{
    min-height:40vh;
}
.team .heading{
    margin-bottom: 0;
}

.team .row .card,.team .row .card .sam {
    width:15.3rem;
    height:18rem;
    margin: 1.5rem 0.8rem;
}
.team .row .card .sam {
    left:-5%;
    top:-99%;
}
.team .row .card .sam .iborder{
    margin-left:13%;
}

.team .row .card .info .icons a{
    margin-top: 2rem;
}
.testimonials-card p{
    font-size: 14px;
    height:130px;
}
.testimonials-header h3 {
    font-size: 1.2rem;
}

.testimonials-header h4 {
    font-size: 10px;
}
.testimonials-text-before,
.testimonials-text-after {
    font-size: 1rem;
}
.listing-rating i {
    font-size:1em;
}

#whatsapp-link i {
    height:42px;
    width:40px;
    font-size: 43px;
  }

}


@media (max-width: 900px) {
    
    nav {
        color:   #004aad;
        width: 300px;
        height: 100%;
        background-color: #002f66;
        position: fixed;
        top: 56px;
        right: -430px; /* Hide the menu off the screen */
        transition: right 0.4s ease;
        z-index: 1100; /* Ensure it floats above other elements */
        margin-top: 20px;
    }
    
    nav ul {
        width:100%;
        display: flex;
        flex-direction: column;
    }
    
    nav ul li {
       padding:40px 20px 5px 5px;
       margin: 0;

    }
   
    
    nav ul li a {

        width:100%;
        margin:50px 10px 50px 10px;
        padding: 0;
        color:white;
        font-size: 25px;
    }
    
    
    
    nav ul li a:hover{
        margin-left:-2px;
        padding:20px 270px 20px 10px;
        color:   #004aad;
        background-color:  white;
    }
    

    
    /* Hamburger icon */
    .menu-toggle {
        display: flex;
        font-weight: 800;
        color: #002f66;
        font-size: 35px;
        cursor: pointer;
        position: fixed;
        top: 7px;
        right: 8px;
        z-index: 1001; 
    }
    
    /* Class to show the nav */
    nav.active {
        right: 0; 
    }
   
    

    .hero-content {
        width: 600px;
        height:200px;
        box-shadow: 1px 2px 3px rgba(255, 255, 255, 0.518);
        top: 80%; 
        
    }
    
    .hero-content h1 {
        font-size: 30px;
        margin: 14px 0;
        text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.7);
    }
    
    .hero-content p {
        width: 400px;
        font-size: 18px;
        font-weight: 400;
        margin: auto;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }
    
    .cta-button {
        margin-top: 15px;
        font-size: 20px;
        padding: auto;
    }
    .about{
        overflow-x: hidden;
    }
    
    .about-container {
        display:block;
        margin-top:30px;
        width:100%;
        padding: 20px;
        
    }
    
    .text {
        width: 50%;
        width:100%;
    }
    .text h2{
        margin-top:10px;
        margin-bottom:35px;
        font-size: 38px;
        font-weight: 600;
    }
    
    .text p{
        padding:auto;
        font-size:23px;
        line-height: 1.5;
        margin-bottom: 15px;
        margin-right: 40px;
    }
    
    
    .img {
        height:350px;
        width: 100%;
    }
    
    .img img {
        margin-top:-20px;
        max-width: 100%;
    }
    
    /* Stats Section Styling */
    .stats-section{
        height: 180px;
    }
    .stats {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #f7f7f7;
        
    }
    
    .stat-item {
        text-align: center;
        width: 20%;
        
    }
    
    .stat-item h3 {
        font-size: 38px;
    }
    
    .stat-item p {
        font-size: 25px;
    }
    
   .team .row{
    margin-top:10%;
    margin-bottom: 1.5rem;
   }
  .team .row .card,.team .row .card .sam {
    width:15rem;
    height:18rem;
    margin:2.3rem 1rem 2rem 1rem ;
}
    .team .row .card .sam {
        left:-6.8%;
        top:-103%;
    }
    .team .row .card .sam .iborder{
        margin-left:14%;
    }
    
    .team .row .card .info .icons a{
        margin-top: 2rem;
    }

}




@media (max-width: 768px) {


        
      
    
    .video-container {
        height: 100vh; 
    }
    
    
    .hero-content {
        width: 500px;
        height:200px;
        box-shadow: 1px 2px 3px rgba(255, 255, 255, 0.518);
        top: 80%; 
        
    }
    
    .hero-content h1 {
        font-size: 30px;
        margin: 14px 0;
        text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.7);
    }
    
    .hero-content p {
        width: 400px;
        font-size: 18px;
        font-weight: 400;
        margin: auto;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }
    
    .cta-button {
        margin-top: 15px;
        font-size: 20px;
        padding: auto;
    }
    
   
    /*about us*/
    
    .about{
        overflow-x: hidden;
    }
    
    .about-container {
        display:block;
        margin-top:30px;
        width:100%;
        padding: 20px;
        
    }
    
    .text {
        width: 50%;
        width:100%;
    }
    .text h2{
        margin-top:10px;
        margin-bottom:35px;
        font-size: 38px;
        font-weight: 600;
    }
    
    .text p{
        padding:auto;
        font-size:23px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    
    .img {
        height:350px;
        width: 100%;
    }
    
    .img img {
        margin-top:-20px;
        max-width: 100%;
    }
    
    /* Stats Section Styling */
    .stats-section{
        height: 180px;
    }
    .stats {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #f7f7f7;
        
    }
    
    .stat-item {
        text-align: center;
        width: 20%;
        
    }
    
    .stat-item h3 {
        font-size: 38px;
    }
    
    .stat-item p {
        font-size: 25px;
    }
    
    .team .row{
        margin-top:10%;
        margin-bottom: 1.8rem;
       }
   


    /*end*/
    #whatsapp-link i {
        height:39px;
        width:38px;
        font-size: 40px;
    }
        
    footer{
        height: 50px;
        padding: 1px 0;

    }
    footer p{
        color: #004aad;
        font-size: 20px;
        font-weight: bolder;

    }
    
}



@media  (max-width: 640px) {
    
nav {
    width: 250px;
}


.menu-toggle {
    top: 13px;
    font-size: 30px;
}  

#progress {
    height: 40px;
    width: 40px;
  }
  #progress-value {
    font-size:25px
  }
.hero-content {
    width: 390px;
    height:190px;
    
}

.hero-content h1 {
    font-size: 25px;
    margin: 17px 0;
}
.hero-content p {
    width: 350px;
    font-size: 16px;
}

.cta-button {
    margin-top: 15px;
    font-size: 13px;
    padding: auto;
}


.about{
    overflow-x: hidden;
    overflow-y: hidden;
    min-height:95vh;
}
.text h2{
    margin-top:5px;
    margin-bottom:30px;
    font-size: 35px;
}

.text p{
    margin-left:-5px;
    font-size:18px;
    line-height:1.4;
}




/* Stats Section Styling */
.stats-section{
    margin-top:-30px;
    margin-bottom: 30px;
    height: 120px;
}


.stat-item h3 {
    font-size: 35px;
}

.stat-item p {
    font-size: 20px;
}
       

.testimonials-card p {
    height:120px;
    font-size: 12px;
}

.team .row{
    margin-top:10%;
    margin-bottom: 2.5rem;
   }


footer{
    height: 35px;

}
footer p{
    font-size: 18px;

}    
}


@media  (max-width: 475px) {

    header {
        height:54px;
    }

    .items img {
        margin: 0 10px 0 5px;
        height: 50px;
        width: 55px;
    }
    
    .items .cap {
        top: -2.5px;         /* Adjust to position above "S" */
        margin-left:3.8rem;
        height: 1.3rem;
        width: 1.3rem;
    }
    
    .items .l1 {
        margin-left: 0.1rem;
        font-size: 32px;
        top: -5px;  /* Adjust this value to control the downward shift */
    }
    
    .items .l2{
        font-weight: 0;
        position: absolute;
        font-size:56px;
        top:-0.1rem;
        margin-left:5.1rem;
    }
    
    .items .l5 {
        margin-left: 1.3rem;
        font-size: 32px;
        top: -5px;  /* Adjust this value to control the downward shift */
    }
    
    
    
    .items .symbol {
        left:1.3rem;
        font-size: 26px;
        top:-5px;  /* Adjust this value as needed */
    }
    
    
    .items .np {
        letter-spacing: 3.5px;
        top:2.16rem;
        margin-left:7.6rem;
        font-size: 18px;
    }
    
    .items .wifi{
        top:0;
        margin-left:-7px;
        font-size:0.3rem;
        
    }
    
    
nav {
    top:34px;
    width: 180px;
}
nav ul li {
    padding:20px 10px 5px 5px;
    margin: 0;

}

    
nav ul li a {

    width:100%;
    margin:50px 10px 50px 10px;
    padding: 0;
    color:white;
    font-size: 20px;
}



nav ul li a:hover{
    margin-left:-2px;
    padding:12px 150px 12px 10px;
    color:   #004aad;
    background-color:  white;
}
.menu-toggle{
    top:12px;
    font-size: 25px;
}

.hero-content {
    width: 330px;
    height:200px;
    
}

.hero-content h1 {
    font-size: 23px;
    margin: 20px 0;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    width: 270px;
    font-size: 14px;
    font-weight: 400;
    margin: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.cta-button {
    margin: 10px 0;
    font-size: 13px;
    padding: 15px;
}


.about-container {
    display:block;
    margin-top:1px;
}
.text h2{
    margin-top:5px;
    margin-bottom:30px;
    font-size: 32px;
}

.text p{
    margin-left:-5px;
    font-size:16px;
}
.img {
    height:300px;
    width: 100%;
}

 /* Stats Section Styling */
 .stats-section{
    height: 130px;
}


.stat-item h3 {
    font-size: 34px;
}

.stat-item p {
    font-size: 19px;
}


.team .heading{
    font-size: 2rem;
}
.team .row{
    margin-bottom: 0;
}
.team .row .card{
    margin:3.5rem 0 5rem 0 ;
}

.team .row .card:hover{
    transform: none;
    cursor: default;
    
}
.section-title h2{
    font-size: 28px;
 }

 .section-separator {
    width: 12%;
 }

.testimonials-header img {
    height: 70px;
    width: 70px; 
}
.testimonials-text-before,
.testimonials-text-after {
    font-size: 1.8rem;
}
.listing-rating i {
    font-size:1.7em;
}
/* Styling the individual pagination bullets */
.tc-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
}
#review {
    top: -50px;
}

#review a {
    font-size: 10px;
}

#review i {
    font-size: 15px; 
}
#whatsapp-link i {
    height:36px;
    width:37px;
    font-size: 37px;
  }
footer{
    height: 35px;
    padding: 1px 0;

}
footer p{
    color: #004aad;
    font-size: 15px;
    font-weight: bolder;

}
    
}



@media (max-width: 368px){
    
    header {
        height:51px;
    }

    .items img {
        margin: 1px 10px 0 5px;
        height: 50px;
        width: 55px;
    }
    
    .items .cap {
        top: -2.5px;         /* Adjust to position above "S" */
        margin-left:3.8rem;
        height: 1.18rem;
        width: 1.18rem;
    }
    
    .items .l1 {
        margin-left: 0.1rem;
        font-size: 30px;
        top: -6px;  /* Adjust this value to control the downward shift */
    }
    
    .items .l2{
        font-weight: 0;
        position: absolute;
        font-size:53px;
        top:-0.1rem;
        margin-left:5.3rem;
    }
    
    .items .l5 {
        margin-left: 1.3rem;
        font-size: 30px;
        top: -6px;  /* Adjust this value to control the downward shift */
    }
    
    
    
    .items .symbol {
        left:1.4rem;
        font-size: 23px;
        top:-6px;  /* Adjust this value as needed */
    }
    
    
    .items .np {
        letter-spacing: 3.5px;
        top:2.15rem;
        margin-left:7.7rem;
        font-size: 15px;
    }
    
    .items .wifi{
        top:0;
        margin-left:-7px;
        font-size:0.4rem;
        
    }
    
   
   nav {
    top:31px;
    width: 150px;
    }
    nav ul li a {
        font-size:18px;
    }

    .menu-toggle{
        right:15px;
        top:10px;
        font-size: 25px;
        font-weight:1000;
    }

    #progress {
        height: 30px;
        width: 30px;
      }
      #progress-value {
        font-size:20px
      }
    .hero-content {
        width: 280px;
        height:180px;
        
    }
    
    .hero-content h1 {
        font-size: 18px;
    }
    
    .hero-content p {
        width: 250px;
        font-size: 13px;
        font-weight: 400;
    }
    
    .cta-button {
        font-size: 15px;
        font-weight:1000;
        padding: 15px;
    }
    
    .about-container {
        display:block;
        margin-top:1px;
    }
    .text{
        margin: 0;
        padding:0;
    }
    .text h2{
        box-sizing: border-box;
        margin-top:5px;
        margin-bottom:30px;
        font-size: 25px;
        text-align: center;
    }
    
    .text p{
        margin:15px;
        font-size:13px;
    }
    .stats-section{
        height: 100px;
    }
    .stats{
        padding:30px 0;

    }
    
    .stat-item h3 {
        font-size: 25px;
    }
    
    .stat-item p {
        font-size: 15px;
    }
     .section-title h2{
        font-size: 27px;
     }

     .section-separator {
        width: 15%;
     }
     .testi-container{
        padding-bottom: 50px;
     }
     .testimonials-carousel-wrap{
        margin-top:-20px;
     }
    .testimonials-header img {
        height: 50px;
        width: 50px; 
    }

    .testimonials-card p{
        height:110px;
        width:100%;
        font-size: 11px;
        text-align: justify;
        line-height:1.4;
        margin-top:0.2rem;
    }
    
    .testimonials-text-before {
        margin-top: -15px;
        margin-left:-5px;
    }
    
    .testimonials-text-after {
        margin-bottom: -20px;
        margin-left: 95%;
    }
    
    .listing-carousel-button-next {
        
        font-size: 30px;
        right: -10px;
    }
    
    .listing-carousel-button-prev {
        
        font-size: 30px;
        left: -10px;
    }


    .testimonials-text-before,
    .testimonials-text-after {
        font-size: 1rem;
    }
    .listing-rating i {
        font-size:1rem;
    }
    .tc-pagination{
        display:none;
    }

    footer{
        height: 50px;
    
    }
    footer p{
        color: #004aad;
        font-size: 10px;
        font-weight: bolder;
    }
    #review {
        margin-left: 70px;
        top: -45px;
    }

    #review a {
        text-shadow: 2px 1px 4px white;
        margin-left: 10px; /* Adjust space between icon and text */
        font-size: 12px;
        color: #ffffff; /* Adjust the color if needed */
        text-decoration: none;
        animation: blinkBulb 1.5s infinite; /* 1.5s for a smooth blink */
    }

    #review i {
        color: #f39c12;
        font-size: 30px; /* Adjust the size of the icon */
        animation: boxiconpoint 1s ease-in-out infinite; /* Apply the up-and-down animation */
    }
    
    #whatsapp-link i {
        height:34px;
        width:35px;
        font-size: 35px;
      }
    
    
}





