@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --primery:#749d22; */
    --primery: #006ea6;
    /* --primery-transparent:#749d2282; */
    --secondery: #3e4360;
    --thired: #f8c641;
    --thiredlight: #f8c641;
    --lightsecondery: #2b2d42;
    --white: #FBF8EF;
    --darkyellow: #fff500;
    --lightyellow: #fffb9a;
    --text-black: #000001;
}

a {
    text-decoration: none;
}

/* whatsapp button */
#whatsapp-button {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #0fef63;
    padding: 10px;
    border-radius: 100%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

#whatsapp-button i {
    color: white
}

/* navbar */
/* Topbar Brand Line */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: var(--lightsecondery);
    color: var(--white);
    display: flex;
    align-items: center;
    z-index: 1040;
    font-size: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
}

.topbar-box {
    margin-left: 10%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-logo {
    font-size: 38px;
    color: var(--thired);
    animation: pulse 1.5s infinite;
}

.topbar-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-size: 1.5rem;
    color: white;
}

/* Icon Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Adjust navbar below topbar */
.navbar {
    position: fixed;
    top: 60px; /* matches topbar height */
    width: 100%;
    z-index: 1030;
    background: var(--primery);
    transition: background 0.3s ease-in-out;
}

.navbar.scrolled {
    background: var(--primery);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar .nav-link {
    color: var(--white);
    font-size: 18px;
    padding: 0px 15px !important;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link:hover {
    color: var(--thired);
}

/* CTA Button */
.navbar .nav-item-button {
    background: var(--thired);
    color: white;
    padding: 10px 27px !important;
    border-radius: 60px;
    margin-left: 10px;
    font-size: 18px;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
    transition: 0.3s ease;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.08);
    opacity: 0.96;
}

/* Responsive: Tablet and Mobile */
@media (max-width: 992px) {
    .topbar-box {
        margin-left: 2%;
    }

    .topbar-text {
        font-size: 1.2rem;
    }

    .navbar .navbar-brand {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .topbar {
        font-size: 14px;
        padding: 0 1rem;
    }

    .topbar-box {
        margin-left: 0%;
        justify-content: center;
        gap: 0.5rem;
    }

    .topbar-logo {
        font-size: 28px;
    }

    .topbar-text {
        font-size: 1rem;
    }

    .navbar {
        top: 60px;
    }

    .navbar-toggler {
        background-color: var(--thired) !important;
        border-radius: 50% !important;
        height: 45px !important;
        width: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-toggler i {
        color: var(--white) !important;
        font-size: 1.2rem;
    }

    .navbar-collapse {
        background-color: var(--white);
        margin-top: 0.5rem;
        padding: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .nav-link {
        color: var(--text-black);
        font-size: 1rem;
        padding: 0.5rem 0 !important;
    }

    .navbar .nav-item-button {
        background: var(--thired);
        color: white;
        font-size: 1rem;
        padding: 10px 25px !important;
        border-radius: 60px;
        margin: 1rem 0;
        text-transform: uppercase;
    }
}

/*tablate*/
@media (max-width: 992px){
     .navbar-toggler {
        background-color: var(--thired) !important;
        border-radius: 50% !important;
        height: 45px !important;
        width: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
     .navbar-toggler i {
        color: var(--white) !important;
        font-size: 1.2rem;
    }
}
/* hero */
.hero {
    margin-top: 5%;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('/img/desktopview.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    animation: blinkBackground 6s infinite;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgb(0 0 0 / 0%));
    z-index: 1;
}

@keyframes blinkBackground {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.hero-content {
    z-index: 2;
    color: var(--primery);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin-left: 8%;
    text-align: left;
    width: 100%;
    max-width: 58.333%;
}

.hero-content h3 {
    color: var(--primery);
}

.hero-content h2 {
    color: var(--text-black);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: sans-serif;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: bold;
    color: var(--lightsecondery);
    margin-bottom: 1.5rem;
}
.hero-content h4{
    margin-top:50px;
}
.hero-content-s-btn {
    background-color: var(--primery);
    border: none;
    padding: 10px 30px;
    color: var(--white);
    border-radius: 60px;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.08);
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
}

.hero-content-span {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.hero-content-span .icon {
    flex-shrink: 0;
    height: 70px;
    width: 70px;
    background-color: var(--primery);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-span i {
    color: var(--white);
    font-size: 2rem;
}

/* 🔁 Sliding styles */
.slider {
    position: relative;
    min-height: 220px;
    height: 220px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none; /* Keep this if you want clicks only on the active one */
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
    display: flex; /* Or block, depending on your layout */
}

/* 📱 Tablet: max-width 992px */
@media (max-width: 992px) {
    
    .hero-content {
        margin-left: 5%;
        margin-top:10% !important;
        max-width: 90%;
        padding: 1.2rem;
    }

    .hero-content h2 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-content-span .icon {
        height: 60px;
        width: 60px;
    }

    .hero-content-span i {
        font-size: 1.5rem;
    }
}

/* 📱 Mobile: max-width 768px */
@media (max-width: 768px) {
    .hero {
        background-image: url('/img/mobileview.jpg');
        padding: 1rem 0;
    }

    .hero-content {
        margin-left: 5%;
        margin-top:18%;
        width: 90%;
        padding: 1rem;
    
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
.hero-content h4{
    margin-top:170px;
}
    .hero-content-span {
        flex-direction: row;
        gap: 0.8rem;
    }

    .hero-content-span .icon {
        height: 50px;
        width: 50px;
    }

    .hero-content-span i {
        font-size: 1.2rem;
    }

    .hero-content-s-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}



/* about section */
/* services */
.service {
    margin-top: 6rem;
}

.service h3 {
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--primery);
}

.service .service-heading {
    text-align: center;
    color: var(--secondery);
    font-family: "Roboto", Sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    margin-top: 1rem;
     text-decoration: underline;

}

.service .service-paragraph {
    color: var(--text-black);
    font-size: 18px;
    font-family: "Poppins", Sans-serif;
    line-height: 1.7em;

}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 equal columns */
    gap: 20px;
    padding: 20px;
    max-width: 100%;
    margin: auto;
}


.cards .service-card {
    background:var(--lightsecondery);
    color:var(--white);
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 32px;
    /*border-top-left-radius: 50px;*/
    /*border-bottom-right-radius: 50px;*/
}

/*.cards .service-card:hover {*/
/*    background:var(--thired);*/
/*    color:var(--white);*/
/*}*/

.cards .service-card i {
    text-align: center;
    font-size: 40px;
    color: var(--white);
    transition: 0.2s;
    margin: 1rem ;
}

/*.cards .service-card:hover i {*/
/*    color:var(--primery);*/
/*}*/

.cards .cards-heading {
    margin: 0.3rem 0 ;
}

.cards-heading a {
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--thired);
    font-weight: 600;
    transition: 0.3s;
    /* padding-top: 5px; */
}

/*.service-card:hover a {*/
/*    color: var(--secondery);*/
/*}*/



@media (max-width: 768px) {
    .cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .cards .service-card i{
        text-align: center;
    }
    .cards .cards-heading{
        text-align: center;
    }
    .cards p{
        text-align: center;
    }
}

/* choose us  */

.choose-us{
    background-color: var(--secondery);
    padding:60px 5px !important;
    color:var(--white)
}
.choose-us .heading{
    /*text-transform:uppercase;*/
    color:var(--white);
    font-size: 20px;
}
.choose-us h3{
    font-size: 46px;
    color:var(--thired);
    font-weight: bold;
}
.choose-us ul{
    padding-left: 0;
}
.choose-us ul li{
    color:var(--white);
    list-style: none;
    position: relative;
    padding-left: 30px;
    /* margin-left:-30px */
}
.choose-us ul li i{
  position: absolute;
  left: 0;
  top: 2px; /* Adjust vertically as needed */
  color:var(--white);
  font-size: 18px;
}
/* .form{
    width: 350px;
    border: 3px solid white;
    padding: 30px;
    margin: auto;
} */
.form-demo{
        background-color: var(--primery);
         color:var(--white);
         border-radius: 10px;
         padding:15px 3px
}
.form-container {
    max-width: 800px;
    margin: auto;
    padding:0px 20px
  }
  .form-container h2{
    text-transform: capitalize;
    text-align: center;
    /* margin: auto; */
    margin-top: 1.5rem;
    font-weight: 500;
}
.form-container p{
    text-align: center;
    margin: 20px;
}
.form-container p span{
    color:var(--thired)
}
  
  .box {
    background:transparent;
    color:var(--white);
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    /*font-weight: bold;*/
  }

  .form-container .box input, .form-container .box select{
    color:var(--white);
    width: 100%;
    height: 40px;
    border-radius: 90px;
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 0 0 5px 20px;
    
    }
    .form-container .box input::placeholder, .form-container .box textarea::placeholder{
        color:var(--white);
    }
    .form-container .box select option{
        color:var(--secondery)
    }
    .form-container .box input:focus , .form-container .box select:focus , .form-container .box textarea:focus {
  outline: none;
  /* border: none; */
}
    .form-container .box textarea{
        width: 100%;
        height:80px;
        border-radius: 20px;
        color:var(--white);
        border: 2px solid var(--white);
        background: transparent;
        padding:5px 10px;
    }
    .bottom-section .box p{
        text-align: left;
        margin: 0px;
    }
    .bottom-section .box p input {
        width: 5%;
        height: 15px;
        border-radius: 90px;
        background-color: transparent;
        border: 2px solid var(--white);
    
    }
    
    .bottom-section .box p span{
    color:var(--thired);
    }
    .bottom-section .form-btn{
        padding: 10px 40px;
        display: flex;
        align-items: center;
        justify-content: center;;
        border:2px solid var(--thiredlight);
        border-radius: 90px;
        background: var(--thired);
        margin:auto;
        margin-top:10px;
        margin-bottom: 20px;
        cursor: pointer;
    }
    .form-btn{
        margin: 0;
        color:var(--white);
        font-weight: 500;
        text-transform: uppercase;
    }
    .form-btn p i{
        color:var(--thired);
    }
    /*bopup box*/
   
    /* Responsive styles */
@media (max-width: 768px) {
    .top-section {
      flex-direction: column;
    }
  
    .column {
      width: 100%;
    }
  }

/* footer */

footer{
    background-color: var(--lightsecondery);
    color:var(--white);
    padding-top: 20px 20px;
}

footer .footer-left .footer-contact p a {
    margin-top: 20px;
    margin-bottom: 20px ;
    display: block;
    font-size: 18px;
    line-height: 26px;
    color:var(--white)
}

.footer-left .footer-contact a span{
    color:var(--thired);
}

footer .footer-right{
    text-align:start;
    padding-right: 10px;

}
footer .footer-right h3{
    text-align: start;
}
.footer-right .footer-right-link ul{
    color: var(--white);
    padding-top: 10px;

}
.footer-right .footer-right-link ul li{
    list-style: none;
    font-size: 18px;
    padding-left: 10px;
    color: var(--white);
}

.footer-right .footer-right-link ul li a{
    font-weight: 500 !important;
    color: var(--white) !important;
}
.footer-right .footer-right-contact p{
    width: 100%;
    font-size: 18px;
    line-height: 1.5;
    color:var(--white);
    margin-top: 7px !important;
    margin-bottom: 20px;
    ;
}
.footer-right-contact a{
    background: var(--thired) !important;
    color:var(--white);
    text-transform: uppercase;
    text-decoration: none;
    padding: 7px 25px;
    border-radius: 30px;
    
}
footer .footer-line{
    width:100% ;
    height:0.2rem;
    background-color: var(--thired);
    margin-bottom: 20px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    footer .footer-right{
        text-align:start;
        /* padding-right: 10px; */
    }

    .footer-right .footer-right-link ul li:not(:last-child):after{
        content: '' !important;
        margin: 0 0px;
    }
    .footer-right .footer-right-link ul{
        color: var(--white);
        display: flex;
        justify-content: start;
        padding-top: 20px;
        flex-direction: column;
    }
    .footer-right .footer-right-link ul li{
        list-style: none;
        font-size: 18px;
        padding-left: 10px;
        color: var(--white);
    }
}