/*==============================
  GOOGLE FONT & RESET
==============================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*==============================
TOP BAR
==============================*/

.top-bar{
    background:#0b63ce;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

/*==============================
HEADER
==============================*/
;
font-family:Arial,Helvetica,sans-serif;
}

body{
background:#f5f5f5;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/*================ HEADER ================*/

header{
width:100%;
background:#fff;
position:sticky;
top:0;
left:0;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.navbar{
height:75px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
font-size:28px;
font-weight:700;
color:#0056d6;
display:flex;
align-items:center;
gap:10px;
}

.logo i{
color:#ff6600;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
align-items:center;
}

nav ul li a{
text-decoration:none;
color:#333;
font-size:16px;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#0056d6;
}

.call-btn{
background:#ff6600;
color:#fff;
padding:12px 28px;
border-radius:50px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.call-btn:hover{
background:#0056d6;
}

.menu-btn{
display:none;
font-size:30px;
cursor:pointer;
color:#0056d6;
}

.mobile-call{
display:none;
}

/*================ MOBILE ================*/

@media(max-width:991px){

.menu-btn{
display:block;
}

.desktop-call{
display:none;
}

nav{
position:absolute;
top:75px;
left:-100%;
width:100%;
background:#fff;
transition:.4s;
box-shadow:0 10px 20px rgba(0,0,0,.08);
}

nav.active{
left:0;
}

nav ul{
flex-direction:column;
gap:0;
}

nav ul li{
width:100%;
border-bottom:1px solid #eee;
}

nav ul li a{
display:block;
padding:18px 20px;
}

.mobile-call{
display:block;
padding:20px;
text-align:center;
}

.logo{
font-size:22px;
}

}

/*==============================
HERO
==============================*/

.hero{
    padding:90px 0;
    background:linear-gradient(135deg,#0b63ce,#0e8fff);
    color:#fff;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-block;
    background:#ffffff22;
    padding:10px 20px;
    border-radius:40px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.hero h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    font-size:18px;
    margin-bottom:35px;
    opacity:.95;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.btn{
    background:#ff6b00;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#fff;
    color:#0b63ce;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#0b63ce;
}

.features{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.features div{
    font-size:15px;
}

.features i{
    color:#ffd700;
    margin-right:6px;
}

.hero-image img{
    width:100%;
    animation:float 4s ease-in-out infinite;
}

/*==============================
SECTION TITLE
==============================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:38px;
    color:#222;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

/*==============================
SERVICES
==============================*/

.services{
    padding:90px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.card i{
    font-size:55px;
    color:#0b63ce;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    color:#666;
}

/*==============================
WHY US
==============================*/

.why{
    background:#fff;
    padding:90px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.why-grid div{
    background:#f7f9fd;
    padding:35px;
    text-align:center;
    border-radius:18px;
    transition:.3s;
}

.why-grid div:hover{
    background:#0b63ce;
    color:#fff;
}

.why-grid i{
    font-size:45px;
    margin-bottom:20px;
    color:#ff6b00;
}

.why-grid div:hover i{
    color:#fff;
}

/*==============================
CTA
==============================*/

.cta{
    background:#f8fbff;
    color:#000;
    padding:70px 20px;
    text-align:center;
}

.cta h2{
    font-size:40px;
    margin-bottom:25px;
}

.cta a{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    padding:15px 40px;
    border-radius:50px;
    font-weight:700;
}

/*==============================
FOOTER
==============================*/

footer{
    background: linear-gradient(135deg, #0d6efd, #1b9cff);
    color:#fff;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    padding-bottom:50px;
}

.footer-grid h3,
.footer-grid h4{
    margin-bottom:20px;
}

.footer-grid li{
    margin-bottom:12px;
}

.footer-grid p,
.footer-grid li{
    color:#cfd5df;
}

.copyright{
    text-align:center;
    padding:20px;
    background:#08111f;
    color:#bbb;
}

/*==============================
ANIMATION
==============================*/

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0);
}

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-buttons{
justify-content:center;
}

.features{
justify-content:center;
}

nav{
display:none;
}

.call-btn{
display:none;
}

.hero h1{
font-size:40px;
}

}

@media(max-width:768px){

.top-bar .container{
flex-direction:column;
}

.hero{
padding:60px 0;
}

.hero h1{
font-size:32px;
}

.section-title h2{
font-size:30px;
}

.cta h2{
font-size:28px;
}

.card{
padding:30px 20px;
}

}

/*==========================
WHY CHOOSE US
==========================*/

.why-choose{
    padding:90px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0d6efd;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.icon-box{
    width:80px;
    height:80px;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    border-radius:50%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.icon-box i{
    color:#fff;
    font-size:32px;
}

.feature-card h3{
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
}

/*==========================
CONTACT
==========================*/

.contact-section{
    padding:100px 0;
    background:linear-gradient(135deg,#0d6efd,#1b9cff);
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contact-info{
    color:#fff;
}

.contact-info span{
    text-transform:uppercase;
    font-weight:600;
}

.contact-info h2{
    font-size:42px;
    margin:15px 0 25px;
}

.contact-info p{
    margin-bottom:30px;
    opacity:.95;
}

.info-box{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}

.info-box i{
    width:60px;
    height:60px;
    background:#fff;
    color:#0d6efd;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:20px;
    font-size:22px;
}

.contact-form{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    padding:40px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,.25);
}

.input-group{
    margin-bottom:20px;
}

.input-group input,
.input-group select,
.input-group textarea{

    width:100%;
    padding:16px 18px;
    border:none;
    outline:none;
    border-radius:12px;
    font-size:15px;
    background:#fff;
}

.contact-form button{

    width:100%;
    padding:18px;
    border:none;
    background:#ff6b00;
    color:#fff;
    border-radius:12px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{

    background:#222;
}

.contact-form button i{

    margin-right:8px;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-info{

text-align:center;

}

.info-box{

justify-content:center;

}

}

@media(max-width:768px){

.section-title h2{

font-size:32px;

}

.contact-info h2{

font-size:32px;

}

.contact-form{

padding:25px;

}

}
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 85px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.btn-whatsapp-pulse {
    background: #e63839;
    color: white;
    position: fixed;
    bottom: 85px;
    right: 20px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 28px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 999;
   
}

.btn-whatsapp-pulse i.fa.fa-phone {
    transform: rotate(0deg);
}

  
.call-button .call-flex {
    position: fixed;
    background: #ff6b00;
    color: #000000;
    width: 100%;
    padding: 10px 0;
    right: 0;
    bottom: 0;
    transition: background 0.5s;
    z-index: 9;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.call-button .call-flex p {
    margin: 0;
    margin-right: 15px;
}

.call-flex p, .call-flex a {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    transition: 0.3s;
}

.call-flex p:hover,  .call-flex a:hover {
    color: #fff;
    letter-spacing: 2px;
}




.bluestar-about{
padding:90px 0;
background:#f8fbff;
}

.about-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
margin-bottom:80px;
}

.reverse .about-image{
order:2;
}

.reverse .about-content{
order:1;
}

.about-image img{
width:100%;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
transition:.5s;
}

.about-image img:hover{
transform:scale(1.04);
}

.about-content h3{
font-size:36px;
margin-bottom:20px;
color:#0056d6;
line-height: 40px;
}

.about-content p{
font-size:17px;
line-height:1.9;
color:#555;
margin-bottom:20px;
}

.about-content ul{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin:25px 0;
list-style:none;
padding:0;
}

.about-content ul li{
background:#fff;
padding:12px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.service-btn{
display:inline-block;
padding:15px 35px;
background:#0056d6;
color:#fff;
border-radius:50px;
font-weight:600;
transition:.3s;
text-decoration:none;
}

.service-btn:hover{
background:#ff6600;
}

@media(max-width:991px){

.about-row{
grid-template-columns:1fr;
}

.reverse .about-image,
.reverse .about-content{
order:unset;
}

.about-content ul{
grid-template-columns:1fr;
}

.about-content h3{
font-size:30px;
}

}
.resp{
	margin-bottom: 20px;
}
.resp img{
	width: 250px;
	border: 1px solid #ddd;
	text-align:center;
	margin: 0 auto;
	
}

.resp1{
	margin-bottom: 20px;
}
.resp1 img{
 
	text-align:center;
	margin: 0 auto;
	
}

.bluestar-about{
padding:40px 0;
background:#f8fbff;
}

.about-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
margin-bottom:80px;
}

.reverse .about-image{
order:2;
}

.reverse .about-content{
order:1;
}

.about-image img{
width:100%;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
transition:.5s;
}

.about-image img:hover{
transform:scale(1.04);
}

.about-content h3{
font-size:36px;
margin-bottom:20px;
color:#0056d6;
}

.about-content p{
font-size:17px;
line-height:1.9;
color:#555;
margin-bottom:20px;
}

.about-content ul{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin:25px 0;
list-style:none;
padding:0;
}

.about-content ul li{
background:#fff;
padding:12px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.service-btn{
display:inline-block;
padding:15px 35px;
background:#0056d6;
color:#fff;
border-radius:50px;
font-weight:600;
transition:.3s;
text-decoration:none;
}

.service-btn:hover{
background:#ff6600;
}

@media(max-width:991px){

.about-row{
grid-template-columns:1fr;
}

.reverse .about-image,
.reverse .about-content{
order:unset;
}

.about-content ul{
grid-template-columns:1fr;
}

.about-content h3{
font-size:23px;
line-height: 40px;
}
    .section-title h2 {
       line-height: 40px;
    }
}



@media(max-width:480px){
   .top-bar {
    background: #0b63ce;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    display: none;
} 
}

.logo img{
    width:150px;
}