/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#fff;
    color:#111;
}

/* Container */
.container,
.container1{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */
header{
    width:100%;
    padding:8px 0;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#ab1e30;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#111;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#16A34A;
}

.btn{
    display:inline-block;
    background:#16A34A;
    color:#fff;
    padding:12px 25px;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
}

.btn:hover{
    background:#111;
}

.outline-btn{
    display:inline-block;
    border:2px solid #2563EB;
    color:#ab1e30;
    padding:10px 25px;
    border-radius:6px;
    text-decoration:none;
    margin-left:15px;
    transition:0.3s;
}

.outline-btn:hover{
    background:#ab1e30;
    color:#fff;
}


.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#111;
    border-radius:5px;
}


.mobile-menu{
    display:none;
    flex-direction:column;
    background:#fff;
    padding:20px;
    box-shadow:0 5px 10px rgba(0,0,0,0.05);
}

.mobile-menu a{
    text-decoration:none;
    color:#111;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.mobile-menu.active{
    display:flex;
}


.mobile-dropdown{
  width:100%;
}

.dropdown-btn{
  width:100%;
  background:none;
  border:none;
  color:black;
  font-size:16px;
  /* padding:14px 20px; */
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;

  padding:12px 0;
    border-bottom:1px solid #eee;

}

.dropdown-content{
  display:none;
  flex-direction:column;
  background;
}

.dropdown-content a{
  padding:12px 35px;
  font-size:15px;
  color:#111;

  border: 0.1px solid #000;
 
}


.btn-mobile{

display:inline-block;
    background:#ab1e30;
    color:#fff !important;
    padding:15px 25px;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
}


.dropdown-content a:hover{
  background:#16A34A;
  color:#fff;
}

.mobile-dropdown.active .dropdown-content{
  display:flex;
}



.desktop-dropdown{
  position:relative;
}

.dropdown-link{
  display:flex;
  align-items:center;
  gap:8px;
}

.desktop-dropdown-menu{
  position:absolute;
  top:120%;
  left:0;
  background:#fff;
  min-width:230px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:999;
  overflow:hidden;
}

.desktop-dropdown-menu a{
  display:block;
  padding:14px 20px;
  border-bottom:1px solid #eee;
}

.desktop-dropdown-menu a:last-child{
  border-bottom:none;
}

.desktop-dropdown-menu a:hover{
  background:#16A34A;
  color:#fff;
  padding-left:25px;
}

.desktop-dropdown:hover .desktop-dropdown-menu{
  opacity:1;
  visibility:visible;
  top:100%;
}


.desktop-dropdown{
  position:relative;
}

.dropdown-link{
  display:flex;
  align-items:center;
  gap:8px;
}


.mega-dropdown{
  position:absolute;
  top:10%;
  margin-top: 20px;
  left:-180px;
  width:600px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  padding:35px;
  display:flex;
  gap:25px;

  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:999;
}

.dropdown-column{
  width:50%;
  display:flex;
  flex-direction:column;
  
}

.dropdown-column a{
  padding:14px 18px;
  border-radius:10px;
  color:#222;
  text-decoration:none;
  transition:0.3s;
  margin-bottom:8px;
  border: 0.2px solid #16A34A;
}

.dropdown-column a:hover{
  background:#16A34A;
  color:#fff;
  padding-left:24px;
}

.desktop-dropdown:hover .mega-dropdown{
  opacity:1;
  visibility:visible;
  top:100%;
}



/* Hero */
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    min-height:90vh;
    
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text h1 span{
    color:#16A34A;
}

.hero-text p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;

    
}

.server-box{
    width:400px;
    height:400px;
    background:#16A34A;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(171,30,48,0.3);

    background-image: url('image/host-img.png');
}

/* Section */
section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
}

/* Services */
.services{
    background:#f8f8f8;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:15px;
    border-radius:20px;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform:translateY(-10px);
}

/* 
.service-card{
    transition:0.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    background-color:#ab1e30;
    color:#fff;
}


.service-card:hover h3{
    color:#fff;
}


.service-card:hover p{
    color:#fff;
}


.service-card:hover a{
    color:#fff;
}


.service-card:hover i{
    color:#fff;
} */



/* =========================
   SERVICE CARD ANIMATION
========================= */

.service-card{
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    z-index:1;
}



.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:#16A34A;
    transition:0.5s ease;
    z-index:-1;
}



.service-card:hover::before{
    left:0;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}



.service-card:hover h3,
.service-card:hover p,
.service-card:hover a,
.service-card:hover i{
    color:#fff;
}



.service-card h3,
.service-card p,
.service-card a,
.service-card i{
    transition:0.4s ease;
}










.card-icon{
    width:70px;
    height:70px;
    background:#16A34A;
    color:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.service-card a{
    text-decoration:none;
    color:#16A34A;
    font-weight:600;
}













.why-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:50px;
    align-items:center;
}

.tag{
    display:inline-block;
    background:#ffe8eb;
    color:#16A34A;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:600;
}

.why-content h2{
    font-size:45px;
    margin-bottom:20px;
}

.why-content p{
    color:#666;
    line-height:1.8;
}

.why-features{
    margin-top:40px;
}

.why-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.why-icon{
    width:60px;
    height:60px;
    background:#ab1e30;
    color:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.why-btn{
    display:inline-block;
    margin-top:20px;
    background:#ab1e30;
    color:#fff;
    padding:14px 28px;
    border-radius:6px;
    text-decoration:none;
}

.image-box{
    position:relative;
}

.image-box img{
    width:100%;
    border-radius:30px;
}

.circle-shape{
    width:180px;
    height:180px;
    background:#16A34A;
    border-radius:50%;
    position:absolute;
    top:-30px;
    right:-30px;
    z-index:-1;
}

/* Partners */
.partners-section{
    background:#f8f8f8;
}

.partners-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:30px;
}

.partner-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.partner-card img{
    width:120px;
}

/* Testimonials */
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.quote-icon{
    font-size:40px;
    color:#16A34A;
    margin-bottom:20px;
}

.testimonial-text{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-info img{
    width:60px;
    height:60px;
    border-radius:50%;
}

/* Footer */
.footer{
    background:#111;
    padding:70px 0 20px;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-logo{
    color:#16A34A;
    font-size:32px;
    margin-bottom:20px;
}

.footer-box h3{
    margin-bottom:20px;
}

.footer-box p{
    color:#ccc;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    text-decoration:none;
    color:#ccc;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#16A34A;
    padding-left:5px;
}

.social-icons{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.social-icons a{
    background:#16A34A;
    color:#fff;
    padding:10px 14px;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:#fff;
    color:#111;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:20px;
}

.footer-bottom p{
    color:#aaa;
}

/* Responsive */
@media(max-width:991px){

    .nav-links,
    .desktop-btn{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding-top:50px;
    }

    .hero-text h1{
        font-size:45px;
    }

    .server-box{
        width:320px;
        height:320px;
    }
}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .section-title h2,
    .why-content h2{
        font-size:34px;
    }

    .hero-text h1{
        font-size:38px;
    }

    .footer{
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }
}



.why-choose-us h2{
text-align: center;


}


.why-choose-us p{
text-align: center;



}





/* Blog Section */

.blog-section{
    background:#f8f8f8;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.blog-content{
    padding:30px;
}

.blog-date{
    display:inline-block;
    color:#16A34A;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.blog-content h3{
    font-size:24px;
    margin-bottom:15px;
    line-height:1.4;
}

.blog-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.blog-content a{
    text-decoration:none;
    color:#16A34A;
    font-weight:600;
    transition:0.3s;
}

.blog-content a:hover{
    letter-spacing:1px;
}





/* CONTACT SECTION */

.contact-section{
  padding:100px 0;
  background:#fff7f9;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:60px;
  align-items:center;
}

.contact-content h2{
  font-size:48px;
  line-height:1.3;
  margin-bottom:20px;
  color:#111827;
}

.contact-content p{
  color:#6b7280;
  line-height:1.9;
  margin-bottom:35px;
  font-size:17px;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.info-box{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:#ffffff;
  padding:20px;
  border-radius:20px;
  transition:0.3s;
  box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

.info-box:hover{
  transform:translateY(-5px);
}

.info-icon{
  width:60px;
  height:60px;
  background:#16A34A;
  color:#ffffff;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.info-box h4{
  font-size:22px;
  margin-bottom:5px;
  color:#111827;
}

.info-box p{
  margin:0;
  font-size:15px;
}

/* FORM */

.contact-form-box{
  background:#ffffff;
  padding:45px;
  border-radius:30px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.input-box{
  margin-bottom:20px;
}

.input-box input,
.input-box textarea{
  width:100%;
  border:none;
  outline:none;
  background:#f3f4f6;
  padding:18px 20px;
  border-radius:15px;
  font-size:16px;
  color:#111827;
}

.input-box textarea{
  height:150px;
  resize:none;
}

.contact-btn{
  width:100%;
  border:none;
  background:#16A34A;
  color:#ffffff;
  padding:18px;
  border-radius:15px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.contact-btn:hover{
  background:#16A34A;
}

/* RESPONSIVE */

@media(max-width:768px){

  .contact-content h2{
    font-size:36px;
  }

  .contact-form-box{
    padding:30px 20px;
  }

}
.mission-section{
    padding:60px 0;
}

.mission-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
    align-items:center;
}

.mission-image img{
    width:100%;
    border-radius:20px;
    animation:hpFloat 4s ease-in-out infinite;
}

.mission-content h2{
    font-size:40px;
    margin:2px 0;
}

.mission-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:2px;
}

.mission-content ul{
    list-style:none;
}

.mission-content ul li{
    margin-bottom:10px;
    font-weight:500;
}


.about-hero-bg{
    position:relative;
    width:100%;
    min-height:60vh;
    background-image:url('image/about-img.png');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
}

.service-d-hero-bg{
 position:relative;
    width:100%;
    min-height:60vh;
    background-image:url('image/dedicated-servers-img2.png');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;


}



.contact-hero-bg{

   position:relative;
    width:100%;
    min-height:60vh;
    background-image:url('image/contact-img\ \(1\).png');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
    
}
.blog-hero-bg{

 position:relative;
    width:100%;
    min-height:60vh;
    background-image:url('image/blog-img\ \(1\).png');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;

}


.service-hero-bg{

   position:relative;
    width:100%;
    min-height:60vh;
    background-image:url('image/service-img.png');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;


}


.anchor a{

text-decoration: none;
    color:white;
}







.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.about-hero-content{
    position:relative;
    max-width:700px;
}

.about-hero-content h1{
    font-size:55px;
    margin:20px 0;
    line-height:1.2;
}

.about-hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#ddd;
    margin-bottom:5px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* Optional tag style */



.vision-section{
    padding:40px 0;
    background:#f8f8f8;
}

.vision-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:50px;
    align-items:center;
}

.vision-image img{
    width:100%;
    border-radius:20px;
}

.vision-content h2{
    font-size:40px;
    margin:10px 0;
}

.vision-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.vision-content ul{
    list-style:none;
}

.vision-content ul li{
    margin-bottom:10px;
    font-weight:500;
}





.team-section{
  padding:100px 0;
  background:#fff7f9;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:60px;
}

.team-card{
  background:#ffffff;
  padding:35px;
  border-radius:25px;
  text-align:center;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.team-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(171,30,48,0.12);
}

.team-img img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:20px;
  border:4px solid #ab1e30;
}

.team-card h3{
  font-size:22px;
  color:#111827;
  margin-bottom:5px;
}

.team-card span{
  color:#ab1e30;
  font-weight:600;
  display:block;
  margin-bottom:15px;
}

.team-social{
  display:flex;
  justify-content:center;
  gap:12px;
}

.team-social a{
  width:40px;
  height:40px;
  background:#16A34A;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.team-social a:hover{
  background:#111827;
}



/* WHY CHOOSE US */

.why-section{
  padding:100px 0;
  background:#ffffff;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:60px;
}

.why-card{
  background:#fff7f9;
  padding:35px;
  border-radius:25px;
  text-align:center;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(171,30,48,0.12);
}

.why-icon{
  width:70px;
  height:70px;
  background:#16A34A;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  font-size:26px;
  margin:0 auto 20px;
}

.why-card h3{
  font-size:22px;
  margin-bottom:10px;
  color:#111827;
}

.why-card p{
  color:#6b7280;
  line-height:1.8;
}



/* BLOG SECTION */

.blog-section{
  padding:100px 0;
  background:#fff7f9;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:60px;
}

.blog-card{
  background:#ffffff;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.blog-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(171,30,48,0.12);
}

.blog-img img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.blog-content{
  padding:25px;
}

.blog-tag{
  display:inline-block;
  background:#16A34A;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:12px;
}

.blog-content h3{
  font-size:20px;
  margin-bottom:10px;
  color:#111827;
}

.blog-content p{
  color:#6b7280;
  line-height:1.7;
  margin-bottom:15px;
}

.blog-content a{
  color:#16A34A;
  font-weight:600;
  transition:0.3s;
}

.blog-content a:hover{
  letter-spacing:1px;
}


/* IMAGE */
.service-img{
  width:100%;
  height:180px;
  overflow:hidden;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
  border-radius: 10px;
  padding: 5px;
}

.service-card:hover .service-img img{
  transform:scale(1.1);
}




#nwew{
margin-top: 3PX;
 text-decoration:none;
    color:#16A34A;
    font-weight:600;

    
}




/* =========================
        GOOGLE MAP SECTION
========================= */

.hp-map-section{

    padding:0px 20px;
    background:#f7f9fc;
}

.hp-map-container{
    width: 100%;
    max-width:;
    margin:auto;
}

.hp-map-heading{
    text-align:center;
    margin-bottom:40px;
}

.hp-map-heading span{
    display:inline-block;
    background:#16A34A;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.hp-map-heading h2{
    font-size:42px;
    color:#111;
    margin-bottom:15px;
    font-weight:700;
}

.hp-map-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.hp-map-wrapper{
    width:100%;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.hp-map-wrapper iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}

/* =========================
        MOBILE
========================= */

@media(max-width:768px){

    .hp-map-section{
        padding:60px 15px;
    }

    .hp-map-heading h2{
        font-size:30px;
    }

    .hp-map-wrapper iframe{
        height:350px;
    }

}




/* =========================
        WHAT WE DO SECTION
========================= */

.hp-what-section{
    width:100%;
    padding:90px 20px;
    background:#ffffff;
}

.hp-what-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* =========================
        IMAGE
========================= */

.hp-what-image{
    flex:1;
}

.hp-what-image img{
    width:100%;
    max-width:540px;
    display:block;
    margin:auto;
    animation:hpFloat 4s ease-in-out infinite;
    border-radius: 10px;
}

/* =========================
        CONTENT
========================= */

.hp-what-content{
    flex:1;
}

.hp-what-tag{
    display:inline-block;
    background:#16A34A;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hp-what-content h2{
    font-size:44px;
    line-height:1.3;
    color:#111;
    margin-bottom:20px;
    font-weight:700;
}

.hp-what-content p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}



.hp-what-features{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:35px;
}

.hp-what-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:5px;
    background:#f7f9fc;
    border-radius:10px;
    transition:0.3s ease;
}

.hp-what-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.hp-what-icon{
    width:30px;
    height:30px;
    min-width:40px;
    border-radius:50%;
    background:#16A34A;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hp-what-icon i{
    color:#fff;
    font-size:12px;
}

.hp-what-text h4{
    font-size:16px;
    color:#111;
    margin-bottom:8px;
}

.hp-what-text p{
    margin:0;
    font-size:15px;
    color:#666;
    line-height:1.7;
}



.hp-what-btn{
    display:inline-block;
    padding:15px 32px;
    background:#16A34A;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s ease;
}

.hp-what-btn:hover{
    background:#16A34A;
}



@keyframes hpFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:992px){

    .hp-what-container{
        flex-direction:column;
    }

    .hp-what-content h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .hp-what-section{
        padding:70px 15px;
    }

    .hp-what-content h2{
        font-size:28px;
    }

    .hp-what-box{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

}




/* =========================
    SERVICE DETAILS SECTION
========================= */

.hp-service-details{
    width:100%;
    padding:90px 20px;
    background:#f7f9fc;
}

.hp-service-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* =========================
        IMAGE
========================= */

.hp-service-image{
    flex:1;
}

.hp-service-image img{
    width:100%;
    max-width:520px;
    display:block;
    margin:auto;
}



.hp-service-content{
    flex:1;
}

.hp-service-tag{
    display:inline-block;
    background:#e9f1ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hp-service-content h2{
    font-size:42px;
    color:#111;
    line-height:1.3;
    margin-bottom:20px;
    font-weight:700;
}

.hp-service-content p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}



.hp-service-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.hp-service-item{
    background:#fff;
    padding:16px 18px;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    color:#222;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.hp-service-item:hover{
    transform:translateY(-5px);
}

.hp-service-item i{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#16A34A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}



.hp-service-btn{
    display:inline-block;
    padding:15px 34px;
    background:#16A34A;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s ease;
}

.hp-service-btn:hover{
    background:#16A34A;
}



@media(max-width:992px){

    .hp-service-container{
        flex-direction:column;
    }

    .hp-service-content h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .hp-service-details{
        padding:70px 15px;
    }

    .hp-service-list{
        grid-template-columns:1fr;
    }

    .hp-service-content h2{
        font-size:28px;
    }

}




/* =========================
   DEDICATED SERVER SECTION
========================= */

.hp-dedicated-section{
    width:100%;
    padding:90px 20px;
    background:#f7f9fc;
}

.hp-dedicated-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* =========================
        CONTENT
========================= */

.hp-dedicated-content{
    flex:1;
}

.hp-dedicated-tag{
    display:inline-block;
    background:#ffe9ec;
    color:#16A34A;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hp-dedicated-content h2{
    font-size:42px;
    color:#111;
    line-height:1.3;
    margin-bottom:20px;
    font-weight:700;
}

.hp-dedicated-content p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

/* =========================
        FEATURE GRID
========================= */

.hp-dedicated-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.hp-dedicated-box{
    background:#fff;
    padding:18px;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.hp-dedicated-box:hover{
    transform:translateY(-5px);
}

.hp-dedicated-box i{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#16A34A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.hp-dedicated-box span{
    font-size:15px;
    font-weight:600;
    color:#222;
}

/* =========================
        BUTTON
========================= */

.hp-dedicated-btn{
    display:inline-block;
    padding:15px 34px;
    background:#16A34A;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s ease;
}

.hp-dedicated-btn:hover{
    background:#16A34A;
}

/* =========================
        IMAGE
========================= */

.hp-dedicated-image{
    flex:1;
    text-align:center;
}

.hp-dedicated-image img{
    width:100%;
    max-width:520px;
    animation:hpDedicatedFloat 4s ease-in-out infinite;
}

/* =========================
        ANIMATION
========================= */

@keyframes hpDedicatedFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}



@media(max-width:992px){

    .hp-dedicated-container{
        flex-direction:column;
    }

    .hp-dedicated-content h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .hp-dedicated-section{
        padding:70px 15px;
    }

    .hp-dedicated-grid{
        grid-template-columns:1fr;
    }

    .hp-dedicated-content h2{
        font-size:28px;
    }

}





.hp-cta-section{
    width:100%;
    padding:50px 20px;
    position:relative;
    background:url('image/cta-bg.jpg') center/cover no-repeat;
    overflow:hidden;
}

.hp-cta-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(8,20,45,0.82);
}

.hp-cta-container{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
}



.hp-cta-tag{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    backdrop-filter:blur(5px);
}



.hp-cta-container h2{
    font-size:35px;
    line-height:1.3;
    color:#fff;
    margin-bottom:20px;
    font-weight:700;
}



.hp-cta-container p{
    font-size:17px;
    line-height:1.8;
    color:#d8d8d8;
    max-width:750px;
    margin:auto auto 35px;
}

/* =========================
            BUTTONS
========================= */

.hp-cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.hp-cta-btn-primary{
    display:inline-block;
    padding:16px 38px;
    background:#16A34A;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
}

.hp-cta-btn-primary:hover{
    background:#16A34A;
    transform:translateY(-3px);
}

.hp-cta-btn-secondary{
    display:inline-block;
    padding:16px 38px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
}

.hp-cta-btn-secondary:hover{
    background:#fff;
    color:#111;
    transform:translateY(-3px);
}

/* =========================
            MOBILE
========================= */

@media(max-width:768px){

    .hp-cta-section{
        padding:80px 15px;
    }

    .hp-cta-container h2{
        font-size:34px;
    }

    .hp-cta-container p{
        font-size:15px;
    }

}





/* =========================
      CLOUD SERVICE CARDS
========================= */

.hp-cloud-services{
    width:100%;
    padding:90px 20px;
    background:#f7f9fc;
}

.hp-cloud-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}



.hp-cloud-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.hp-cloud-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:#16A34A;
    transition:0.5s ease;
    z-index:0;
}

.hp-cloud-card:hover::before{
    left:0;
}

.hp-cloud-card:hover{
    transform:translateY(-10px);
}



.hp-cloud-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#ffe9ec;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    position:relative;
    z-index:2;
    transition:0.4s ease;
}

.hp-cloud-icon i{
    font-size:28px;
    color:#16A34A;
    transition:0.4s ease;
}



.hp-cloud-card h3{
    font-size:22px;
    color:#111;
    margin-bottom:15px;
    line-height:1.4;
    position:relative;
    z-index:2;
    transition:0.4s ease;
}

.hp-cloud-card p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    position:relative;
    z-index:2;
    transition:0.4s ease;
}

.hp-cloud-card:hover h3,
.hp-cloud-card:hover p{
    color:#fff;
}

.hp-cloud-card:hover .hp-cloud-icon{
    background:#fff;
}

.hp-cloud-card:hover .hp-cloud-icon i{
    color:#16A34A;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:768px){

    .hp-cloud-services{
        padding:70px 15px;
    }

    .hp-cloud-card{
        padding:30px 25px;
    }

    .hp-cloud-card h3{
        font-size:20px;
    }

}




/* Top Bar */
.top-bar{
    background: #0f172a;
    color: #fff;
    padding: 10px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

/* Left Side */
.top-left{
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-left a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-left a i{
    margin-right: 8px;
    color: #16A34A;
}

.top-left a:hover{
    color: #16A34A;
}

/* Right Side */
.top-right{
    display: flex;
    gap: 15px;
}

.top-right a{
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-right a:hover{
    background: #16A34A;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media(max-width:768px){

    .top-bar{
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-left{
        flex-direction: column;
        gap: 10px;
    }

}















.logo img{
    width: 192px;   /* Logo width */
    height: 90px  !important;
    display: block;
}

   .blog-banner{
      background:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1400&auto=format&fit=crop');
      background-size:cover;
      background-position:center;
      padding:120px 10%;
      color:#fff;
      text-align:center;
    }

    .blog-banner h1{
      font-size:52px;
      margin-bottom:15px;
      font-weight:700;
    }

    .blog-banner p{
      font-size:18px;
      opacity:0.9;
    }

    .blog-wrapper{
      width:90%;
      max-width:1400px;
      margin:0px auto;
      display:grid;
      grid-template-columns:2fr 1fr;
      gap:40px;
    }

    .blog-content{
      background:#fff;
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 10px 35px rgba(0,0,0,0.08);
    }

    .blog-image img{
      width:100%;
      display:block;
      height:450px;
      object-fit:cover;
    }

    .blog-details{
      padding:40px;
    }

    .blog-meta{
      display:flex;
      gap:25px;
      flex-wrap:wrap;
      margin-bottom:25px;
      color:#666;
      font-size:15px;
    }

    .blog-meta i{
      color:#16A34A;
      margin-right:8px;
    }

    .blog-details h2{
      font-size:34px;
      margin-bottom:20px;
      color:#111;
    }

    .blog-details p{
      margin-bottom:22px;
      color:#555;
      font-size:16px;
    }

    .quote-box{
      background:#f0f5ff;
      border-left:5px solid #ab1e30;
      padding:25px;
      border-radius:12px;
      margin:35px 0;
      font-size:18px;
      font-weight:600;
      color:#222;
    }

    .blog-tags{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:35px;
    }

    .blog-tags a{
      background:#eef3ff;
      color:#16A34A;
      padding:10px 18px;
      border-radius:30px;
      font-size:14px;
      transition:0.3s;
    }

    .blog-tags a:hover{
      background:#16A34A;
      color:#fff;
    }

    .sidebar{
      display:flex;
      flex-direction:column;
      gap:30px;
    }

    .sidebar-box{
      background:#fff;
      padding:30px;
      border-radius:18px;
      box-shadow:0 10px 35px rgba(0,0,0,0.08);
    }

    .sidebar-box h3{
      font-size:24px;
      margin-bottom:20px;
      position:relative;
      padding-bottom:12px;
    }

    .sidebar-box h3::after{
      content:'';
      width:60px;
      height:3px;
      background:#16A34A;
      position:absolute;
      left:0;
      bottom:0;
    }

    .search-box{
      display:flex;
      overflow:hidden;
      border-radius:12px;
      border:1px solid #ddd;
    }

    .search-box input{
      width:100%;
      padding:14px;
      border:none;
      outline:none;
    }

    .search-box button{
      border:none;
      background:#16A34A;
      color:#fff;
      width:60px;
      cursor:pointer;
      font-size:18px;
    }

    .category-list{
      list-style:none;
    }

    .category-list li{
      margin-bottom:16px;
    }

    .category-list a{
      color:#444;
      display:flex;
      justify-content:space-between;
      transition:0.3s;
    }

    .category-list a:hover{
      color:#16A34A;
      padding-left:5px;
    }

    .recent-post{
      display:flex;
      gap:15px;
      margin-bottom:20px;
      align-items:center;
    }

    .recent-post img{
      width:90px;
      height:90px;
      border-radius:12px;
      object-fit:cover;
    }

    .recent-post h4{
      font-size:16px;
      margin-bottom:5px;
      color:#222;
    }

    .recent-post span{
      font-size:14px;
      color:#777;
    }

    .share-icons{
      display:flex;
      gap:15px;
      margin-top:25px;
    }

    .share-icons a{
      width:42px;
      height:42px;
      background:#16A34A;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      transition:0.3s;
    }

    .share-icons a:hover{
      transform:translateY(-5px);
    }

    @media(max-width:991px){
      .blog-wrapper{
        grid-template-columns:1fr;
      }

      .blog-banner h1{
        font-size:40px;
      }
    }

    @media(max-width:600px){
      .blog-banner{
        padding:90px 20px;
      }

      .blog-banner h1{
        font-size:32px;
      }

      .blog-details{
        padding:25px;
      }

      .blog-details h2{
        font-size:26px;
      }

      .blog-image img{
        height:280px;
      }
    }


   a{
      text-decoration:none;
    }


.btn desktop-btn{



}


.floating-contact{
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}


.float-btn{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}


.whatsapp{
    background: #25D366;
}


.phone{
    background: #007bff;
}


.float-btn:hover{
    transform: translateY(-5px) scale(1.08);
}







