* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #000;
    color: #fff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.top-right a {
    background: #fff;
    color: #000;
    padding: 6px;
    border-radius: 50%;
    margin-left: 6px;
    transition: 0.3s;
}

.top-right a:hover {
    background: red;
    color: #fff;
}

/* ===== HEADER ===== */
header {
    background: #eee;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px;
}

/* ===== NAV ===== */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: red;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 22px;
    z-index: 2000;
    left: 0;
    background: #fff;
    min-width: 160px;
    padding: 14px 0px;
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    padding: 6px 16px;
}

/* Button */
.enquiry-btn a {
    background: red;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.enquiry-btn a:hover {
    background: #000;
}

/* Mobile */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-btn {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

    nav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #fff;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .menu-toggle {
        display: block;
    }

    .enquiry-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
        margin-top: 10px;
    }

    .enquiry-mobile {
        background: red;
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .top-right {
        margin-top: 8px;
    }
}




.hero{
    position:relative;
    background:#85a4ba;
    overflow:hidden;
    padding:30px 8%;
       z-index: -1;
}

.slide{
    display:none;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    animation:fade 1s ease;
}

.slide.active{
    display:flex;
}

@keyframes fade{
    from{opacity:0;}
    to{opacity:1;}
}

.content{
    flex:1;
}

.content h1{
    font-size:45px;
    line-height:1.1;
    margin-bottom:10px;
}

.content p{
    font-size:16px;
    margin-bottom:30px;
    color:#333;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    background:#e92822;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    transition:0.3s ease;
}

/* Button Hover */
.btn:hover{
    background:#000;
    transform:translateY(-4px);
}

.image{
    flex:1;
}

.image img{
    width:100%;
    max-width:600px;
}

/* Dots */
.dots{
    text-align:center;
    margin-top:40px;
}

.dot{
    height:14px;
    width:14px;
    margin:0 6px;
    background:#fff;
    border:2px solid #000;
    display:inline-block;
    border-radius:50%;
    cursor:pointer;
}

.dot.active{
    background:#000;
}

/* Floating Icons */
.floating-icons{
    position:fixed;
    top:200px;
    left:20px;
    display:flex;
    flex-direction:column;
    gap:20px;
    z-index:999;
}

.floating-icons a{
    background:#28c76f;
    color:#fff;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .slide{
        flex-direction:column;
        text-align:center;
    }

    .content h1{
        font-size:35px;
    }

    .image img{
        max-width:100%;
        margin-top:20px;
    }

    .floating-icons{
        display:none;
    }
}



/* ===== SECTION WRAPPER ===== */
.prx-services-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9ff, #eef1ff);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.prx-services-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #111;
    position: relative;
    display: inline-block;
}

.prx-services-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: #6c63ff;
    position: absolute;
    bottom: -10px;
    left: 20%;
    border-radius: 5px;
}

/* ===== GRID ===== */
.prx-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* ===== CARD ===== */
.prx-card-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
}

.prx-card-box:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ===== IMAGE ===== */
.prx-card-img {
    height: 180px;
    overflow: hidden;
}

.prx-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prx-card-box:hover .prx-card-img img {
    transform: scale(1.1);
}

/* ===== CONTENT ===== */
.prx-card-content {
    padding: 25px;
}

.prx-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.prx-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== HOVER OVERLAY ===== */
.prx-card-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(108,99,255,0.8), rgba(0,198,255,0.8));
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
}

.prx-card-box:hover::before {
    opacity: 0.08;
}

/* ===== ANIMATION ===== */
@keyframes prxFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prx-card-box {
    animation: prxFadeUp 0.8s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px){
    .prx-services-title {
        font-size: 30px;
    }
}


/* footer */

    .footer {
  background: black;
  color: #fff;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #00d4ff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00d4ff;
  padding-left: 6px;
}

.logo {
  width: 100px;
  margin-bottom: 15px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  font-size: 14px;
}

/* Floating Buttons */



/* Responsive */

@media (max-width: 600px) {
  .footer {
    text-align: center;
  }

  .socials {
    margin-top: 10px;
  }
}



/* Business Essentials */

/* Section Style */
.biz-essentials{
  padding:60px 20px;
  background:#f3f3f3;
  text-align:center;
  font-family: Georgia, serif;
}

.biz-title{
  font-size:36px;
  margin-bottom:40px;
}

/* Grid */
.biz-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  max-width:1200px;
  margin:auto;
}

/* Card */
.biz-card{
  position:relative;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
  transition:transform .4s ease;
}

.biz-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

/* Hover Lift */
.biz-card:hover{
  transform:translateY(-10px);
}

/* Overlay */
.biz-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  transition:opacity .4s ease;
}

.biz-card:hover .biz-overlay{
  opacity:1;
}

/* Button */
.biz-btn{
  padding:12px 28px;
  background:#fff;
  color:#000;
  text-decoration:none;
  font-weight:bold;
  border-radius:30px;
  transform:translateY(20px);
  transition:.3s ease;
}

.biz-card:hover .biz-btn{
  transform:translateY(0);
}

/* Text */
.biz-card p{
  padding:15px;
  font-size:18px;
  font-weight:600;
}

/* Responsive */
@media (max-width:768px){
  .biz-title{
    font-size:28px;
  }
  .biz-card img{
    height:180px;
  }
}

@media (max-width:480px){
  .biz-card img{
    height:160px;
  }
}


/* PRINTING SHOP IN DElhi */

/* Section Background */
.psg-section{
  padding:70px 20px;
  background:linear-gradient(135deg,#fbc2eb,#a6c1ee);
  font-family: 'Poppins', sans-serif;
}

/* Container */
.psg-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

/* Image */
.psg-image{
  flex:1 1 450px;
  overflow:hidden;
  border-radius:20px;
  animation:slideInLeft 1s ease;
}

.psg-image img{
  width:100%;
  display:block;
  border-radius:20px;
  transition:transform .6s ease;
}

.psg-image:hover img{
  transform:scale(1.05);
}

/* Content */
.psg-content{
  flex:1 1 450px;
  animation:slideInRight 1s ease;
}

.psg-content h2{
  font-size:42px;
  margin-bottom:20px;
  font-weight:700;
}

.psg-content h2 span{
  color:#e63946;
}

.psg-content p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:15px;
  color:#333;
}

/* Button */
.psg-btn{
  display:inline-block;
  margin-top:15px;
  padding:14px 34px;
  background:#e63946;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:40px;
  transition:.3s ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.2);
}

.psg-btn:hover{
  background:#000;
  transform:translateY(-3px);
}

/* Animations */
@keyframes slideInLeft{
  from{opacity:0; transform:translateX(-60px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes slideInRight{
  from{opacity:0; transform:translateX(60px);}
  to{opacity:1; transform:translateX(0);}
}

/* Responsive */
@media(max-width:992px){
  .psg-content h2{
    font-size:32px;
  }
}

@media(max-width:768px){
  .psg-container{
    flex-direction:column;
    text-align:center;
  }

  .psg-content h2{
    font-size:28px;
  }
}

/* bar progress */

.telecom-sec{
  padding:70px 20px;
  background:#f4f4f4;
  font-family: 'Poppins', sans-serif;
}

.telecom-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

/* TEXT */
.telecom-content{
  flex:1 1 500px;
  animation:fadeLeft 1s ease;
}

.telecom-content h2{
  font-size:34px;
  margin-bottom:20px;
}

.telecom-content p{
  color:#555;
  margin-bottom:25px;
  line-height:1.6;
}

/* IMAGE */
.telecom-image{
  flex:1 1 450px;
  animation:fadeRight 1s ease;
}

.telecom-image img{
  width:100%;
  border-radius:10px;
  transition:transform .5s ease;
}

.telecom-image img:hover{
  transform:scale(1.05);
}

/* PROGRESS */
.telecom-skill{
  margin-bottom:20px;
}

.telecom-skill span{
  font-weight:600;
  display:block;
  margin-bottom:6px;
}

.telecom-bar{
  height:10px;
  background:#ddd;
  border-radius:20px;
  overflow:hidden;
}

.telecom-fill{
  height:100%;
  width:0;
  background:linear-gradient(90deg,#007bff,#00d4ff);
  border-radius:20px;
  transition:width 0.8s ease;
}

/* Hover Fill Effect */
.telecom-skill:hover .telecom-fill{
  width:var(--fill);
}

/* Animation */
@keyframes fadeLeft{
  from{opacity:0; transform:translateX(-40px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes fadeRight{
  from{opacity:0; transform:translateX(40px);}
  to{opacity:1; transform:translateX(0);}
}

/* Responsive */
@media(max-width:768px){
  .telecom-container{
    flex-direction:column-reverse;
    text-align:center;
  }

  .telecom-content h2{
    font-size:26px;
  }
}

