/* ===== NAVBAR LIGHT THEME ===== */

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
}

/* Header */
.nav-header{
  position:sticky;
  top:0;
  width:100%;
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  z-index:999;
}

/* Container */
.nav-container{
  max-width:1200px;
  margin:auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Logo */
.nav-logo img{
  height:45px;
}

/* Menu */
.nav-menu ul{
  display:flex;
  list-style:none;
  gap:30px;
  margin:0;
  padding:0;
}

.nav-menu a{
  text-decoration:none;
  color:#333;
  font-size:16px;
  font-weight:500;
  transition:0.3s;
}

.nav-menu a:hover{
  color:#007bff;
}

/* Hamburger */
.nav-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.nav-toggle span{
  width:25px;
  height:3px;
  background:#333;
  margin:4px 0;
  border-radius:3px;
}

/* ===== MOBILE ===== */
@media(max-width:900px){

  .nav-toggle{
    display:flex;
  }

  .nav-menu{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
  }

  .nav-menu ul{
    flex-direction:column;
    text-align:center;
    padding:20px 0;
  }

  .nav-menu.active{
    max-height:400px;
  }
}

/* ===== HERO SECTION ===== */

.tps-hero{
  background:#f8fbff;
  padding:80px 20px;
}

.tps-hero-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

/* Content */
.tps-hero-content{
  flex:1;
}

.tps-hero-content h1{
  font-size:48px;
  color:#1a1a1a;
  line-height:1.2;
  margin-bottom:20px;
}

.tps-hero-content p{
  font-size:18px;
  color:#555;
  margin-bottom:30px;
  max-width:520px;
}

/* Buttons */
.tps-hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.tps-btn-primary{
  background:#007bff;
  color:#fff;
  padding:14px 26px;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
  transition:0.3s;
}

.tps-btn-primary:hover{
  background:#0056d2;
}

.tps-btn-outline{
  border:2px solid #007bff;
  color:#007bff;
  padding:12px 24px;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
  transition:0.3s;
}

.tps-btn-outline:hover{
  background:#007bff;
  color:#fff;
}

/* Image */
.tps-hero-image{
  flex:1;
  text-align:center;
}

.tps-hero-image img{
  max-width:100%;
  height:auto;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

  .tps-hero-content h1{
    font-size:36px;
  }

  .tps-hero-container{
    flex-direction:column-reverse;
    text-align:center;
  }

  .tps-hero-content p{
    margin:auto auto 30px;
  }

  .tps-hero-buttons{
    justify-content:center;
  }
}

@media(max-width:576px){
  .tps-hero{
    padding:60px 15px;
  }

  .tps-hero-content h1{
    font-size:28px;
  }
}

/* ===== ABOUT SECTION ===== */

.tps-about{
  padding:90px 20px;
  background:#ffffff;
}

.tps-about-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}

/* Image */
.tps-about-image{
  flex:1;
  text-align:center;
}

.tps-about-image img{
  width:100%;
  max-width:520px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Content */
.tps-about-content{
  flex:1;
}

.tps-about-subtitle{
  color:#007bff;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
}

.tps-about-content h2{
  font-size:38px;
  margin:15px 0 20px;
  color:#1a1a1a;
}

.tps-about-content p{
  color:#555;
  line-height:1.7;
  margin-bottom:15px;
}

/* Features */
.tps-about-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
  margin:25px 0;
}

.tps-feature{
  display:flex;
  align-items:center;
  gap:12px;
  background:#f6f9ff;
  padding:12px 15px;
  border-radius:8px;
  font-weight:500;
}

.tps-feature i{
  color:#007bff;
  font-size:18px;
}

/* Button */
.tps-about-btn{
  display:inline-block;
  background:#007bff;
  color:#fff;
  padding:14px 26px;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
  transition:0.3s;
}

.tps-about-btn:hover{
  background:#0056d2;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){
  .tps-about-container{
    flex-direction:column;
    text-align:center;
  }

  .tps-about-features{
    grid-template-columns:1fr;
  }
}

@media(max-width:576px){
  .tps-about-content h2{
    font-size:28px;
  }
}

/* ===== SERVICES SECTION ===== */

.tps-services{
  padding:90px 20px;
  background:#f8fbff;
}

.tps-services-container{
  max-width:1200px;
  margin:auto;
}

/* Header */
.tps-services-header{
  text-align:center;
  margin-bottom:60px;
}

.tps-services-header span{
  color:#007bff;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
}

.tps-services-header h2{
  font-size:38px;
  margin:15px 0;
  color:#1a1a1a;
}

.tps-services-header p{
  color:#666;
  max-width:650px;
  margin:auto;
}

/* Grid */
.tps-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Card */
.tps-service-card{
  background:#ffffff;
  padding:35px 28px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.tps-service-card i{
  font-size:40px;
  color:#007bff;
  margin-bottom:20px;
}

.tps-service-card h3{
  margin-bottom:15px;
  font-size:22px;
  color:#1a1a1a;
}

.tps-service-card p{
  color:#555;
  line-height:1.6;
}

/* Hover Effect */
.tps-service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){
  .tps-services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .tps-services-header h2{
    font-size:28px;
  }

  .tps-services-grid{
    grid-template-columns:1fr;
  }
}

/* ===== STATS SECTION ===== */

.tps-stats{
  background:linear-gradient(135deg,#007bff,#0056d2);
  padding:80px 20px;
  color:#fff;
}

.tps-stats-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}

.tps-stat-box{
  background:rgba(255,255,255,0.08);
  padding:35px 20px;
  border-radius:12px;
  backdrop-filter:blur(6px);
  transition:0.3s;
}

.tps-stat-box:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.15);
}

.tps-stat-box i{
  font-size:40px;
  margin-bottom:15px;
}

.tps-stat-box h2{
  font-size:42px;
  margin:10px 0;
  font-weight:700;
}

.tps-stat-box p{
  font-size:16px;
  opacity:0.9;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){
  .tps-stats-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .tps-stats-container{
    grid-template-columns:1fr;
  }

  .tps-stat-box h2{
    font-size:34px;
  }
}

/* ===== WHY CHOOSE US GLASS UI ===== */

.tps-why{
  position:relative;
  padding:100px 20px;
  background:url("marketing-bg.jpg") center/cover no-repeat;
  color:#fff;
  overflow:hidden;
}

/* Overlay */
.tps-why-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(0,123,255,0.85),
    rgba(0,60,180,0.85)
  );
}

/* Container */
.tps-why-container{
  position:relative;
  max-width:1200px;
  margin:auto;
  z-index:2;
}

/* Header */
.tps-why-header{
  text-align:center;
  margin-bottom:60px;
}

.tps-why-header span{
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:600;
  opacity:.9;
}

.tps-why-header h2{
  font-size:40px;
  margin:15px 0;
}

.tps-why-header p{
  max-width:650px;
  margin:auto;
  opacity:.9;
}

/* Grid */
.tps-why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Glass Cards */
.tps-why-card{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:14px;
  padding:35px 25px;
  text-align:center;
  transition:0.4s ease;
}

.tps-why-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.2);
}

.tps-why-card i{
  font-size:40px;
  margin-bottom:18px;
}

.tps-why-card h3{
  margin-bottom:12px;
  font-size:22px;
}

.tps-why-card p{
  opacity:.9;
  line-height:1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){
  .tps-why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .tps-why-header h2{
    font-size:28px;
  }

  .tps-why-grid{
    grid-template-columns:1fr;
  }
}

/* ===== FAQ SECTION ===== */

.tps-faq{
  padding:90px 20px;
  background:#f8fbff;
}

.tps-faq-container{
  max-width:900px;
  margin:auto;
}

/* Header */
.tps-faq-header{
  text-align:center;
  margin-bottom:50px;
}

.tps-faq-header span{
  color:#007bff;
  font-weight:600;
  text-transform:uppercase;
}

.tps-faq-header h2{
  font-size:38px;
  margin:15px 0;
}

.tps-faq-header p{
  color:#666;
}

/* FAQ Item */
.tps-faq-item{
  background:#fff;
  margin-bottom:15px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  overflow:hidden;
}

/* Question */
.tps-faq-question{
  width:100%;
  padding:18px 22px;
  border:none;
  background:none;
  font-size:17px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.tps-faq-question span{
  font-size:22px;
  color:#007bff;
}

/* Answer */
.tps-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
  padding:0 22px;
}

.tps-faq-answer p{
  color:#555;
  padding-bottom:18px;
  line-height:1.6;
}

/* Active */
.tps-faq-item.active .tps-faq-answer{
  max-height:200px;
}

.tps-faq-item.active .tps-faq-question span{
  transform:rotate(45deg);
}

/* Responsive */
@media(max-width:600px){
  .tps-faq-header h2{
    font-size:28px;
  }
}

/* ===== CTA LEAD BANNER ===== */

.tps-cta{
  padding:80px 20px;
  background:linear-gradient(135deg,#007bff,#0056d2);
  position:relative;
  overflow:hidden;
}

/* Container */
.tps-cta-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
  color:#fff;
}

/* Heading */
.tps-cta-content h2{
  font-size:42px;
  margin-bottom:20px;
  font-weight:700;
}

/* Text */
.tps-cta-content p{
  font-size:18px;
  max-width:700px;
  margin:auto;
  margin-bottom:35px;
  opacity:.95;
  line-height:1.6;
}

/* Buttons */
.tps-cta-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.tps-cta-primary{
  background:#ffffff;
  color:#007bff;
  padding:15px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.tps-cta-primary:hover{
  background:#f1f1f1;
}

.tps-cta-secondary{
  border:2px solid #fff;
  color:#fff;
  padding:13px 26px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.tps-cta-secondary:hover{
  background:#fff;
  color:#007bff;
}

/* Decorative Glow Effect */
.tps-cta::before{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(255,255,255,0.15);
  border-radius:50%;
  top:-120px;
  left:-120px;
  filter:blur(80px);
}

.tps-cta::after{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  bottom:-120px;
  right:-120px;
  filter:blur(80px);
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){
  .tps-cta-content h2{
    font-size:30px;
  }

  .tps-cta-content p{
    font-size:16px;
  }
}

/* ===== FOOTER DISCLAIMER ===== */

.tps-footer-disclaimer{
  background:#f4f7ff;
  text-align:center;
  padding:15px;
  font-size:14px;
  color:#555;
}

/* ===== FOOTER ===== */

.tps-footer{
  background:#0b132b;
  color:#fff;
  padding-top:70px;
}

.tps-footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  padding:0 20px 50px;
}

/* Columns */
.tps-footer-col h3,
.tps-footer-col h4{
  margin-bottom:18px;
}

.tps-footer-col p{
  color:#cbd5e1;
  line-height:1.6;
}

/* Links */
.tps-footer-col ul{
  list-style:none;
  padding:0;
}

.tps-footer-col ul li{
  margin-bottom:10px;
}

.tps-footer-col ul li a{
  color:#cbd5e1;
  text-decoration:none;
  transition:0.3s;
}

.tps-footer-col ul li a:hover{
  color:#ffffff;
  padding-left:5px;
}

/* Social Icons */
.tps-social-icons{
  margin-top:15px;
}

.tps-social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  background:#1c2541;
  border-radius:50%;
  margin-right:10px;
  color:#fff;
  transition:0.3s;
}

.tps-social-icons a:hover{
  background:#007bff;
}

/* Contact Info */
.tps-contact-info li{
  display:flex;
  align-items:center;
  gap:10px;
  color:#cbd5e1;
}

/* Bottom */
.tps-footer-bottom{
  text-align:center;
  padding:18px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:14px;
  color:#cbd5e1;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){
  .tps-footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .tps-footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .tps-contact-info li{
    justify-content:center;
  }
}

body{
  margin:0;
  font-family:Arial, sans-serif;
  color:#333;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* HERO */
.about-hero{
  background:linear-gradient(135deg,#007bff,#0056d2);
  color:#fff;
  padding:100px 20px;
  text-align:center;
}

.about-hero h1{
  font-size:48px;
  margin-bottom:10px;
}

/* INTRO */
.about-intro{
  padding:80px 0;
}

.about-grid{
  display:flex;
  gap:60px;
  align-items:center;
  flex-wrap:wrap;
}

.about-image img{
  width:100%;
  border-radius:12px;
}

.about-text{
  flex:1;
}

.about-text h2{
  font-size:36px;
  margin-bottom:15px;
}

.about-features div{
  margin-top:10px;
  font-weight:600;
}

.about-features i{
  color:#007bff;
  margin-right:8px;
}

/* MISSION */
.mission-section{
  background:#f8fbff;
  padding:80px 20px;
}

.mission-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.mission-card{
  background:#fff;
  padding:35px;
  text-align:center;
  border-radius:10px;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.mission-card i{
  font-size:40px;
  color:#007bff;
  margin-bottom:15px;
}

/* WHY */
.about-why{
  padding:80px 20px;
  text-align:center;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:40px;
}

.why-box{
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 6px 20px rgba(0,0,0,.05);
}

.why-box i{
  font-size:32px;
  color:#007bff;
}

/* CTA */
.about-cta{
  background:#007bff;
  color:#fff;
  text-align:center;
  padding:70px 20px;
}

.about-cta a{
  display:inline-block;
  margin-top:20px;
  background:#fff;
  color:#007bff;
  padding:14px 28px;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
}

/* RESPONSIVE */
@media(max-width:992px){
  .mission-grid{
    grid-template-columns:1fr 1fr;
  }

  .why-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .about-hero h1{
    font-size:30px;
  }

  .mission-grid,
  .why-grid{
    grid-template-columns:1fr;
  }
}

/* HERO SECTION */
.ms-contact-hero{
    height:50vh;
    background:url('https://images.unsplash.com/photo-1556761175-4b46a572b786') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.ms-contact-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.ms-contact-hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.ms-contact-hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.ms-contact-hero p{
    font-size:18px;
    opacity:.9;
}


/* CONTACT SECTION */
.ms-contact-section{
    padding:80px 8%;
    background:#f8fafc;
}

.ms-contact-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
}


/* CONTACT INFO */
.ms-contact-info h2{
    margin-bottom:15px;
}

.ms-contact-info p{
    margin-bottom:25px;
    color:#666;
}

.ms-contact-card{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.ms-contact-card i{
    font-size:22px;
    color:#1a64cb;
}


/* FORM */
.ms-contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.ms-contact-form-box h2{
    margin-bottom:25px;
}

.ms-form-row{
    display:flex;
    gap:15px;
    margin-bottom:15px;
}

.ms-contact-form-box input,
.ms-contact-form-box textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:15px;
}

.ms-contact-form-box input:focus,
.ms-contact-form-box textarea:focus{
    border-color:#1a64cb;
}

.ms-contact-form-box button{
    margin-top:10px;
    background:#1a64cb;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.ms-contact-form-box button:hover{
    background:#3730a3;
}


/* MAP */
.ms-contact-map iframe{
    width:100%;
    height:400px;
    border:0;
}


/* RESPONSIVE */
@media(max-width:900px){

.ms-contact-container{
    grid-template-columns:1fr;
}

.ms-form-row{
    flex-direction:column;
}

.ms-contact-hero h1{
    font-size:32px;
}

}

/* TERMS PAGE */

.ms-terms-section{
    padding:80px 8%;
    background:#f9fafb;
}

.ms-terms-container{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

.ms-terms-container h1{
    font-size:38px;
    margin-bottom:20px;
    text-align:center;
}

.ms-terms-container h2{
    margin-top:30px;
    margin-bottom:10px;
    font-size:22px;
    color:#111827;
}

.ms-terms-container p{
    color:#555;
    line-height:1.7;
    margin-bottom:12px;
}

.ms-terms-container ul{
    padding-left:20px;
}

.ms-terms-container li{
    margin-bottom:8px;
    color:#555;
}

.ms-terms-update{
    margin-top:30px;
    font-weight:600;
    color:#111;
}


/* RESPONSIVE */
@media(max-width:768px){

.ms-terms-container{
    padding:30px 20px;
}

.ms-terms-container h1{
    font-size:28px;
}

}

/* SERVICE HERO */

.tps-service-hero{
background:linear-gradient(rgba(0,0,0,89%),rgba(0,0,0,.6)),
url('https://d2yn3p1o2oplij.cloudfront.net/2022/01/Web-Development-Space-1.png');
background-size:cover;
background-position:center;
color:#fff;
padding:120px 8%;
text-align:center;
}

.tps-service-hero h1{
font-size:48px;
margin-bottom:20px;
}

.tps-service-btn{
background:#007bff;
color:#fff;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
display:inline-block;
margin-top:15px;
}


/* ABOUT SERVICE */

.tps-service-about{
padding:80px 8%;
background:#f9fafb;
}

.tps-service-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.tps-service-image img{
width:100%;
border-radius:12px;
}

.tps-service-text ul{
margin-top:15px;
padding-left:18px;
}


/* FEATURES */

.tps-service-features{
padding:80px 8%;
text-align:center;
}

.tps-feature-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.tps-feature-card{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.07);
}

.tps-feature-card img{
width:60px;
margin-bottom:15px;
}


/* PROCESS */

.tps-service-process{
background:#f4f7ff;
padding:80px 8%;
text-align:center;
}

.tps-process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.tps-process{
background:#fff;
padding:25px;
border-radius:10px;
}


/* CTA */

.tps-service-cta{
background:#007bff;
color:#fff;
text-align:center;
padding:80px 20px;
}


/* RESPONSIVE */

@media(max-width:992px){

.tps-service-grid{
grid-template-columns:1fr;
}

.tps-feature-grid{
grid-template-columns:repeat(2,1fr);
}

.tps-process-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.tps-feature-grid,
.tps-process-grid{
grid-template-columns:1fr;
}

.tps-service-hero h1{
font-size:32px;
}

}

/* ===== MODERN WEB ABOUT SECTION ===== */

.ps-web-about{
padding:100px 8%;
background:#f7f9fc;
}

.ps-web-about-wrapper{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* IMAGE */

.ps-web-about-img{
position:relative;
overflow:hidden;
border-radius:18px;
}

.ps-web-about-img img{
width:100%;
display:block;
border-radius:18px;
transition:0.6s ease;
}

.ps-web-about-img:hover img{
transform:scale(1.06);
}

/* CONTENT */

.ps-web-tag{
display:inline-block;
background:#eaf2ff;
color:#0066ff;
padding:6px 14px;
border-radius:30px;
font-size:14px;
margin-bottom:15px;
font-weight:600;
}

.ps-web-about-content h2{
font-size:40px;
margin-bottom:20px;
color:#111;
}

.ps-web-about-content p{
color:#555;
line-height:1.7;
margin-bottom:25px;
}

/* FEATURES GRID */

.ps-web-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin-bottom:30px;
}

.ps-web-feature{
background:#fff;
padding:14px 18px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
font-weight:500;
}

/* BUTTON */

.ps-web-btn{
background:#0066ff;
color:#fff;
padding:14px 26px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.ps-web-btn:hover{
background:#004ecc;
}

/* RESPONSIVE */

@media(max-width:992px){

.ps-web-about-wrapper{
grid-template-columns:1fr;
}

.ps-web-about-content h2{
font-size:32px;
}

.ps-web-features{
grid-template-columns:1fr;
}

}

/* ===== PREMIUM CTA SECTION ===== */

.ps-cta-section{
padding:100px 20px;
background:linear-gradient(135deg,#0066ff,#0046b8);
position:relative;
overflow:hidden;
}

/* Glow Effects */

.ps-cta-section::before{
content:"";
position:absolute;
width:400px;
height:400px;
background:rgba(255,255,255,.15);
border-radius:50%;
top:-120px;
left:-120px;
filter:blur(80px);
}

.ps-cta-section::after{
content:"";
position:absolute;
width:350px;
height:350px;
background:rgba(255,255,255,.1);
border-radius:50%;
bottom:-120px;
right:-120px;
filter:blur(80px);
}

/* Wrapper */

.ps-cta-wrapper{
max-width:900px;
margin:auto;
text-align:center;
color:#fff;
position:relative;
z-index:2;
}

/* Tag */

.ps-cta-tag{
background:rgba(255,255,255,.15);
padding:6px 16px;
border-radius:30px;
font-size:14px;
display:inline-block;
margin-bottom:18px;
}

/* Heading */

.ps-cta-content h2{
font-size:42px;
margin-bottom:18px;
font-weight:700;
}

/* Text */

.ps-cta-content p{
max-width:650px;
margin:auto;
line-height:1.7;
opacity:.95;
margin-bottom:35px;
}

/* Buttons */

.ps-cta-buttons{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

.ps-cta-primary{
background:#fff;
color:#0066ff;
padding:15px 28px;
border-radius:6px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.ps-cta-primary:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.ps-cta-secondary{
border:2px solid #fff;
color:#fff;
padding:13px 26px;
border-radius:6px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.ps-cta-secondary:hover{
background:#fff;
color:#0066ff;
}

/* RESPONSIVE */

@media(max-width:768px){

.ps-cta-content h2{
font-size:30px;
}

.ps-cta-content p{
font-size:15px;
}

}

/* ===== RESULTS SECTION ===== */

.ps-results-section{
padding:100px 8%;
background:#f9fbff;
}

.ps-results-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* LEFT CONTENT */

.ps-results-tag{
background:#eaf2ff;
color:#0066ff;
padding:6px 14px;
border-radius:30px;
font-size:14px;
display:inline-block;
margin-bottom:15px;
}

.ps-results-left h2{
font-size:38px;
margin-bottom:20px;
}

.ps-results-left p{
color:#555;
line-height:1.7;
margin-bottom:25px;
}

.ps-results-list{
display:flex;
flex-direction:column;
gap:18px;
}

.ps-result-item{
background:#fff;
padding:18px;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

/* RIGHT SIDE */

.ps-results-right{
position:relative;
}

.ps-results-right img{
width:100%;
border-radius:16px;
}

.ps-results-stats{
position:absolute;
bottom:-30px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:15px;
}

.ps-stat-box{
background:#fff;
padding:18px 22px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
text-align:center;
}

.ps-stat-box h3{
color:#0066ff;
margin-bottom:5px;
}

/* RESPONSIVE */

@media(max-width:992px){

.ps-results-container{
grid-template-columns:1fr;
}

.ps-results-stats{
position:static;
transform:none;
margin-top:20px;
justify-content:center;
flex-wrap:wrap;
}

}

/* HERO SECTION */

.ps-hero{
background: linear-gradient(135deg,#f7faff,#ffffff);
padding:100px 8%;
overflow:hidden;
}

.ps-hero-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

/* LEFT */

.ps-hero-content{
flex:1;
min-width:320px;
}

.ps-hero-badge{
background:#eef4ff;
color:#2563eb;
padding:8px 18px;
border-radius:50px;
font-size:14px;
font-weight:600;
display:inline-block;
margin-bottom:20px;
}

.ps-hero-content h1{
font-size:52px;
line-height:1.2;
margin-bottom:20px;
color:#111;
font-weight:700;
}

.ps-hero-content h1 span{
color:#2563eb;
}

.ps-hero-content p{
font-size:18px;
color:#555;
margin-bottom:30px;
max-width:520px;
}

/* BUTTONS */

.ps-hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-bottom:35px;
}

.ps-btn-primary{
background:#2563eb;
color:#fff;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.ps-btn-primary:hover{
background:#1d4ed8;
transform:translateY(-2px);
}

.ps-btn-secondary{
border:2px solid #2563eb;
color:#2563eb;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.ps-btn-secondary:hover{
background:#2563eb;
color:#fff;
}

/* TRUST STATS */

.ps-hero-trust{
display:flex;
gap:40px;
flex-wrap:wrap;
}

.ps-trust-item h3{
color:#2563eb;
font-size:28px;
margin-bottom:5px;
}

.ps-trust-item p{
font-size:14px;
color:#666;
}

/* RIGHT IMAGE */

.ps-hero-image{
flex:1;
position:relative;
text-align:center;
min-width:320px;
}

.ps-hero-image img{
width:100%;
max-width:520px;
position:relative;
z-index:2;
}

/* GLOW EFFECT */

.ps-image-glow{
position:absolute;
width:350px;
height:350px;
background:#2563eb33;
filter:blur(120px);
border-radius:50%;
top:50%;
left:50%;
transform:translate(-50%,-50%);
z-index:1;
}

/* RESPONSIVE */

@media(max-width:992px){

.ps-hero-wrapper{
flex-direction:column;
text-align:center;
}

.ps-hero-content h1{
font-size:38px;
}

.ps-hero-trust{
justify-content:center;
}

}