/* Global Font Control */
/* GLOBAL */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap');


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

/* TOP BAR */

.top-bar{
    background:#ff7a00;
    overflow:hidden;
    white-space:nowrap;
    padding:10px 0;
}

.top-bar-content{
    display:inline-block;
    color:#000;
    font-size:15px;
    font-weight:600;
    animation:scrollText 18s linear infinite;
}

@keyframes scrollText{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}




/* ===== VISION & MISSION SECTION ===== */

.vision-mission-section {
    padding: 40px 0;
    background: #ffffff;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 16px;
}

.vm-wrapper {
    display: flex;
    gap: 40px;
}

.vm-card {
    flex: 1;
    background: #f8f9fc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border-left: 5px solid #0d6efd;  /* Accent frame */
    transition: 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    border-left: 5px solid #084298;
}

.vm-icon {
    font-size: 48px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.vm-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vm-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vm-card ul {
    padding-left: 18px;
}

.vm-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}



.about-section{
    width:100%;
    padding:100px 5%;

    position:relative;
    overflow:hidden;

    background:linear-gradient(
        135deg,
        #ffffff,
        #fff7ef,
        #ffffff
    );
}

/* ANIMATED BLOBS */

.bg-shape1,
.bg-shape2,
.bg-shape3{
    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    z-index:0;

    animation-timing-function:ease-in-out;
    animation-iteration-count:infinite;
}

/* SHAPE 1 */

.bg-shape1{
    width:320px;
    height:320px;

    background:rgba(255,122,0,0.35);

    top:-80px;
    left:-80px;

    animation:blobMove1 8s infinite;
}

/* SHAPE 2 */

.bg-shape2{
    width:280px;
    height:280px;

    background:rgba(255,180,70,0.30);

    top:40%;
    right:-100px;

    animation:blobMove2 10s infinite;
}

/* SHAPE 3 */

.bg-shape3{
    width:250px;
    height:250px;

    background:rgba(255,140,0,0.25);

    bottom:-80px;
    left:40%;

    animation:blobMove3 9s infinite;
}

/* ANIMATION 1 */

@keyframes blobMove1{

    0%{
        transform:translate(0,0) scale(1);
    }

    50%{
        transform:translate(80px,60px) scale(1.2);
    }

    100%{
        transform:translate(0,0) scale(1);
    }

}

/* ANIMATION 2 */

@keyframes blobMove2{

    0%{
        transform:translate(0,0) scale(1);
    }

    50%{
        transform:translate(-90px,-50px) scale(1.15);
    }

    100%{
        transform:translate(0,0) scale(1);
    }

}

/* ANIMATION 3 */

@keyframes blobMove3{

    0%{
        transform:translate(0,0) scale(1);
    }

    50%{
        transform:translate(-60px,-70px) scale(1.18);
    }

    100%{
        transform:translate(0,0) scale(1);
    }

}



/* ===== ABOUT SEO SECTION ===== */

.about-seo {
    padding: 40px 0;
    background: white;
  
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}


.primary-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #2563eb, #f97316);
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
}




/* Step Number */
.step-number {
    font-size: 40px;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    position: absolute;
    top: 15px;
    right: 20px;
}

/* Title */
.workflow-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Description */
.workflow-card p {
    font-size: 15px;
    color: #cbd5f5;
    line-height: 1.6;
}

/* Hover Accent Border */
.workflow-card:hover {
    border-color: #38bdf8;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-header h2 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .workflow-section {
        padding: 60px 15px;
    }

    .workflow-header h2 {
        font-size: 24px;
    }

    .workflow-card {
        padding: 25px 20px;
    }
}


/* ===== WHY CORPORATE SECTION ===== */

.why-corporate {
    padding: 60px 0;
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

/* Header */
.why-corporate-section-header {
    max-width: 700px;
    margin-bottom: 60px;
    text-align: left;
}


/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.why-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

/* Icon Box */
.icon-box {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
}

/* Color Variations */
.icon-box.blue {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.icon-box.green {
    background: linear-gradient(135deg, #10b981, #22c55e);
}

/* Title */
.why-card h4 {
     margin-bottom: 12px;
   
}

/* Text */
.why-card p {
    line-height: 1.6;
}

.why-card:nth-child(1) { background: linear-gradient(135deg, #ffffff, #eff6ff); }
.why-card:nth-child(2) { background: linear-gradient(135deg, #ffffff, #ecfdf5); }
.why-card:nth-child(3) { background: linear-gradient(135deg, #ffffff, #f5f3ff); }
.why-card:nth-child(4) { background: linear-gradient(135deg, #ffffff, #fef9c3); }
.why-card:nth-child(5) { background: linear-gradient(135deg, #ffffff, #fce7f3); }
.why-card:nth-child(6) { background: linear-gradient(135deg, #ffffff, #e0f2fe); }


/* ===============================
   COMPANY STATISTICS SECTION
================================= */

.company-stats {
    padding: 60px 0;
    background: #f4f8ff;
    text-align: center;
}

.company-stats .section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0a2c5a;
    margin-bottom: 10px;
}

.company-stats .section-title p {
    color: #555;
    font-size: 16px;
    margin-bottom: 60px;
}

/* Wrapper */
.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* Individual Stat Box */
.stat-box {
    width: 280px;
    padding: 45px 25px;
    border-radius: 14px;
    background: #ffffff;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;

    /* Gradient Border Frame */
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff),
                      linear-gradient(135deg, #0d6efd, #00c6ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Hover Effect */
.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

/* Icon */
.stat-icon {
    font-size: 38px;
    color: #0d6efd;
    margin-bottom: 20px;
}

/* Counter Number */
.stat-box h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0a2c5a;
    margin-bottom: 10px;
}

/* Text */
.stat-box p {
    font-size: 15px;
    color: #666;
    letter-spacing: 0.5px;
}

/* Subtle animation when visible */
.stat-box {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= PORTFOLIO HERO ================= */

.portfolio-hero {
  padding: 90px 0;
  background-color: #0d6efd;
  text-align: center;
  color: #fff;
}

.portfolio-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color:white;
  margin-bottom: 15px;
}

.portfolio-hero p {
  font-size: 18px;
  opacity: 0.9;
}


/* ================= CLIENT LOGOS ================= */

.client-logos {
  padding: 70px 0;
  background: #f8fbff;
  text-align: center;
}

.logo-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto 0;
  align-items: center;
  justify-items: center;
}

.logo-wrapper img {
  height: 120px;
  object-fit: contain;
 
}

.logo-wrapper img:hover {
  opacity: 1;
  transform: scale(1.1);
}


/* ================= PORTFOLIO CONTENT ================= */

.portfolio-content {
  padding: 80px 0;
}

.portfolio-text {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.portfolio-text h2 {
  font-size: 32px;
  color: #0a2c5a;
  margin-bottom: 20px;
}

.portfolio-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}


/* ================= PORTFOLIO SECTION ================= */

.portfolio-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff, #eef4ff);
  position: relative;
  overflow: hidden;
}

/* Optional soft background glow */
.portfolio-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,110,253,0.15), transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 2;
}

/* ================= SECTION HEADER ================= */

.section-header {
  text-align: left;
  max-width: 800px;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0a2c5a;
  margin-bottom: 15px;
  display: inline-block;
}

.section-header h2 i {
  color: #0d6efd;
  margin-right: 10px;
}


/* Left underline instead of center */
.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #00c6ff);
  margin-top: 12px;   /* remove auto centering */
  border-radius: 4px;
}

.section-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row */
  gap: 40px;
  align-items: center;
}

/* CARD */

.project-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* ICON CIRCLE */

.project-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.project-icon i {
  color: #fff;
  font-size: 22px;
}

/* TITLE */

.project-card h3 {
  font-size: 20px;
  color: #0a2c5a;
  margin-bottom: 15px;
}

/* DESCRIPTION */

.project-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTON */

.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.portfolio-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* ===============================
   DIGITAL MARKETING PAGE STYLES
=================================*/

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================================
   GOOGLE FONTS
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================
   GLOBAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    overflow-x:hidden;
    background:#ffffff;
    color:#111827;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* =========================================
   HERO SECTION
========================================= */

.service-hero{
    position:relative;
    padding:140px 0 120px;
    background:
    linear-gradient(rgba(2,6,23,0.82), rgba(2,6,23,0.82)),
    url('../images/webdevelopment.png');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.service-hero::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,122,0,0.15);
    border-radius:50%;
    filter:blur(80px);
    top:-120px;
    right:-100px;
}

.service-hero .container{
    position:relative;
    z-index:2;
}

.service-hero h1{
    font-family:'Playfair Display', serif;
    font-size:62px;
    line-height:1.15;
    color:#fff;
    max-width:900px;
    margin-bottom:25px;
}

.service-hero p{
    font-size:18px;
    line-height:1.9;
    color:#dbe4f0;
    max-width:750px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 32px;
    border-radius:60px;
    font-size:15px;
    font-weight:600;
    transition:0.4s ease;
}

.btn-primary{
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    box-shadow:0 10px 25px rgba(255,122,0,0.35);
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
    box-shadow:0 10px 25px rgba(37,211,102,0.3);
}

.btn-primary:hover,
.btn-whatsapp:hover{
    transform:translateY(-5px);
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-modern{
    padding:110px 0;
    background:#f8fafc;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:70px;
}

.about-images{
    flex:1;
    position:relative;
}

.img-main{
    border-radius:28px;
    box-shadow:0 15px 45px rgba(0,0,0,0.1);
}

.img-overlay{
    position:absolute;
    width:280px;
    bottom:-40px;
    right:-40px;
    border:8px solid #fff;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.about-content{
    flex:1;
}

.about-content h2{
    font-family:'Playfair Display', serif;
    font-size:48px;
    line-height:1.25;
    margin-bottom:25px;
    color:#0f172a;
}

.about-content h2 span{
    color:#ff7a00;
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:#475569;
    margin-bottom:20px;
}

.about-box-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.about-box{
    background:#fff;
    padding:18px 20px;
    border-radius:18px;
    font-size:15px;
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s ease;
}

.about-box:hover{
    transform:translateY(-5px);
}

/* =========================================
   SERVICES SECTION
========================================= */

.service-boxes{
    padding:110px 0;
    background:#ffffff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:28px;
    text-align:center;
    border:1px solid #e2e8f0;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    opacity:0;
    transition:0.4s ease;
    z-index:0;
}

.service-card:hover::before{
    opacity:1;
}

.service-card i,
.service-card h3,
.service-card p{
    position:relative;
    z-index:2;
}

.service-card i{
    width:85px;
    height:85px;
    margin:auto auto 25px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    font-size:34px;
}

.service-card h3{
    font-family:'Playfair Display', serif;
    font-size:24px;
    line-height:1.4;
    margin-bottom:15px;
    color:#111827;
}

.service-card p{
    font-size:15px;
    line-height:1.8;
    color:#64748b;
}

.service-card:hover h3,
.service-card:hover p{
    color:#fff;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* =========================================
   WHY CHOOSE US
========================================= */

.service-intro{
    padding:110px 0;
    background:#0f172a;
    overflow:hidden;
}

.intro-wrapper{
    display:flex;
    gap:70px;
    align-items:flex-start;
}

.intro-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    color:#ffb347;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.intro-content h2{
    font-family:'Playfair Display', serif;
    font-size:52px;
    line-height:1.2;
    color:#fff;
    margin-bottom:25px;
}

.highlight{
    color:#ff7a00;
}

.intro-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:40px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.feature-item{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:28px;
    border-radius:22px;
    transition:0.4s ease;
}

.feature-item:hover{
    transform:translateY(-5px);
}

.feature-item i{
    width:65px;
    height:65px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    font-size:26px;
    margin-bottom:18px;
}

.feature-item h4{
    font-size:20px;
    color:#fff;
    margin-bottom:10px;
}

.feature-item p{
    margin:0;
    color:#cbd5e1;
    font-size:14px;
}

.intro-form{
    width:420px;
    background:#fff;
    padding:40px;
    border-radius:28px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.intro-form h3{
    font-family:'Playfair Display', serif;
    font-size:32px;
    margin-bottom:25px;
    color:#111827;
}

.intro-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.intro-form input,
.intro-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #dbe2ea;
    border-radius:16px;
    font-family:'Poppins', sans-serif;
    outline:none;
}

.intro-form textarea{
    min-height:130px;
    resize:none;
}

.intro-form button{
    padding:16px;
    border:none;
    border-radius:60px;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
}

.intro-form button:hover{
    transform:translateY(-5px);
}

/* =========================================
   PROCESS SECTION
========================================= */

.dark-process-section{
    padding:110px 0;
    background:#020617;
}

.dark-process-header{
    text-align:center;
    margin-bottom:60px;
}

.dark-process-header h2{
    font-family:'Playfair Display', serif;
    font-size:48px;
    color:#fff;
    margin-bottom:15px;
}

.dark-process-header p{
    color:#cbd5e1;
    font-size:16px;
}

.dark-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.dark-process-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    padding:40px 30px;
    border-radius:28px;
    position:relative;
    transition:0.4s ease;
}

.dark-process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    font-size:60px;
    font-weight:800;
    color:rgba(255,255,255,0.08);
    display:block;
    margin-bottom:15px;
}

.dark-process-card h4{
    font-size:22px;
    color:#fff;
    margin-bottom:15px;
}

.dark-process-card p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:15px;
}

/* =========================================
   FAQ SECTION
========================================= */

.faq-modern{
    padding:110px 0;
    background:#f8fafc;
}

.faq-tag{
    display:block;
    text-align:center;
    color:#ff7a00;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.faq-title{
    text-align:center;
    font-family:'Playfair Display', serif;
    font-size:48px;
    margin-bottom:20px;
    color:#111827;
}

.faq-subtitle{
    text-align:center;
    max-width:800px;
    margin:auto auto 60px;
    line-height:1.9;
    color:#64748b;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.faq-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s ease;
}

.faq-card:hover{
    transform:translateY(-8px);
}

.faq-card h4{
    font-size:22px;
    margin-bottom:18px;
    color:#111827;
    line-height:1.5;
}

.faq-card p{
    color:#64748b;
    line-height:1.9;
    font-size:15px;
}

.faq-cta{
    margin-top:70px;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    padding:40px;
    border-radius:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.cta-text h3{
    font-family:'Playfair Display', serif;
    font-size:36px;
    color:#fff;
    margin-bottom:10px;
}

.cta-text p{
    color:#fff;
}

.cta-button{
    padding:16px 34px;
    border-radius:60px;
    background:#fff;
    color:#ff7a00;
    font-weight:700;
    transition:0.4s ease;
}

.cta-button:hover{
    transform:translateY(-5px);
}

/* =========================================
   EXIT POPUP
========================================= */

.popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    z-index:9999;
}

.popup-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:#fff;
    padding:45px;
    border-radius:24px;
    text-align:center;
    max-width:450px;
    width:90%;
}

.popup-content h3{
    font-family:'Playfair Display', serif;
    font-size:34px;
    margin-bottom:15px;
}

.popup-content p{
    color:#64748b;
    margin-bottom:25px;
    line-height:1.8;
}

.popup-content button{
    padding:14px 30px;
    border:none;
    border-radius:60px;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    cursor:pointer;
    font-weight:600;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .dark-process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .faq-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .service-hero h1{
        font-size:48px;
    }

    .about-wrapper,
    .intro-wrapper{
        flex-direction:column;
    }

    .intro-form{
        width:100%;
    }

    .about-content h2,
    .intro-content h2,
    .faq-title,
    .dark-process-header h2{
        font-size:40px;
    }

}

@media(max-width:768px){

    .service-hero{
        padding:120px 0 90px;
    }

    .service-hero h1{
        font-size:38px;
    }

    .service-hero p{
        font-size:16px;
    }

    .about-box-grid,
    .feature-grid,
    .service-grid,
    .dark-process-grid,
    .faq-grid{
        grid-template-columns:1fr;
    }

    .about-content h2,
    .intro-content h2,
    .faq-title,
    .dark-process-header h2{
        font-size:32px;
    }

    .faq-cta{
        flex-direction:column;
        text-align:center;
    }

    .img-overlay{
        position:relative;
        width:100%;
        right:0;
        bottom:0;
        margin-top:20px;
    }

}

@media(max-width:576px){

    .container{
        padding:0 15px;
    }

    .service-hero h1{
        font-size:32px;
    }

    .btn-primary,
    .btn-whatsapp{
        width:100%;
        justify-content:center;
    }

    .service-card,
    .faq-card,
    .dark-process-card,
    .feature-item{
        padding:28px 22px;
    }

    .intro-form{
        padding:28px;
    }

}

/* Solution  */

/* Solution  */

/* SECTION SPACING */

.solution-box{
padding:40px 0;
border-bottom:1px solid #f1f5f9;
}

/* TITLE STYLE */

.title-gradient{
font-size:32px;
font-weight:700;
margin-bottom:20px;
background:linear-gradient(90deg,#2563eb,#7c3aed);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
display:flex;
align-items:center;
gap:10px;
}

/* FEATURE LIST */

.features{
list-style:none;
padding:0;
margin:20px 0;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:12px;

}

.features li{
background:#f8fafc;
padding:12px;
border-radius:8px;
display:flex;
align-items:center;
gap:10px;
font-size:15px;
transition:.3s;
}

.features li i{
color:#2563eb;
}

.features li:hover{
background:#eef2ff;
transform:translateY(-3px);
}

/* IMAGE BOX */

.solution-img-box{
background:#fff;
padding:15px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* IMAGE FLOAT ANIMATION */

.animate-right img{
animation:float 5s ease-in-out infinite;
}

.animate-left img{
animation:float 5s ease-in-out infinite;
}

@keyframes float{
0%{transform:translateY(0)}
50%{transform:translateY(-15px)}
100%{transform:translateY(0)}
}

/* HERO IMAGE */

.hero-image img{
animation:float 6s ease-in-out infinite;
}

/* BENEFIT CARD */

.benefit-card{
background:#1e293b;
padding:30px;
border-radius:12px;
transition:.3s;
}

.benefit-card:hover{
transform:translateY(-8px);
}

/* Container */

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* Section spacing */

section{
padding:80px 0;
}

.solutions-hero{
background:linear-gradient(135deg,#0f172a,#1e293b);
color:#fff;
}

.hero-flex{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

.hero-text{
flex:1;
}

.hero-text h1{
font-size:42px;
margin-bottom:20px;
line-height:1.3;
color:white;
}

.hero-text p{
font-size:18px;
color:#cbd5f5;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.hero-image{
flex:1;
text-align:center;
}

.hero-image img{
max-width:100%;
}

.btn-primary{
background:#2563eb;
color:#fff;
padding:12px 26px;
border-radius:6px;
text-decoration:none;
display:inline-block;
font-weight:600;
transition:.3s;
}

.btn-primary:hover{
background:#1d4ed8;
}

.btn-secondary{
border:2px solid #2563eb;
color:#2563eb;
padding:12px 26px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-secondary:hover{
background:#2563eb;
color:#fff;
}

/* SOLUTION GRID */

.solution-grid{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

/* Left Content */
.solution-left{
flex:1;
min-width:300px;
}

/* Right Image */
.solution-right{
flex:1;
min-width:300px;
}

/* Reverse Layout */

.solution-box.reverse .solution-grid{
flex-direction:row-reverse;
}

.solution-images{
display:flex;
flex-direction:column;
gap:25px;
}

.solution-img-box{
background:#fff;
padding:15px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.solution-img-box img{
width:100%;
border-radius:6px;
display:block;
}

.solutions-benefits{
background:#0f172a;
color:#fff;
text-align:center;
}


.benefits-grid{
display:grid;
color:white;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.benefit-card{
background:#1e293b;
color:white;
padding:30px;
border-radius:10px;
transition:.3s;
}

.benefit-card:hover{
transform:translateY(-5px);
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

.price-card{
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
}

.price{
font-size:28px;
font-weight:700;
color:#2563eb;
margin:20px 0;
}

.price-card ul{
list-style:none;
padding:0;
margin-bottom:25px;
}

.price-card li{
padding:8px 0;
border-bottom:1px solid #eee;
}

.lead-form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.lead-form input,
.lead-form textarea,
.lead-form select{
padding:12px;
border:1px solid #ccc;
border-radius:6px;
font-size:15px;
}

.lead-form textarea{
min-height:120px;
resize:none;
}

.solution-table{
width:100%;
border-collapse:collapse;
margin-top:40px;
}

.solution-table th,
.solution-table td{
border:1px solid #ddd;
padding:12px;
text-align:center;
}

.solution-table th{
background:#2563eb;
color:#fff;
}

@media(max-width:900px){

.hero-flex{
flex-direction:column;
text-align:center;
}

.solution-grid{
grid-template-columns:1fr;
}

}

@media(max-width:900px){

.solution-grid{
flex-direction:column;
}

.solution-box.reverse .solution-grid{
flex-direction:column;
}

}

/* Contact form  */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#f5f7fb;
}

/* SECTION */

.contact-section{
padding:80px 10%;
}

/* CONTAINER */

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* LEFT SIDE */

.contact-info{
background:linear-gradient(135deg,#0072ff,#00c6ff);
color:white;
padding:40px;
}

.contact-info h2{
margin-bottom:10px;
}

.contact-info p{
margin-bottom:30px;
opacity:0.9;
}

.info-box{
display:flex;
align-items:center;
gap:12px;
margin-bottom:15px;
font-size:15px;
}

.info-box i{
font-size:18px;
}

/* SOCIAL ICONS */

.social-icons{
margin-top:30px;
}

.social-icons a{
display:inline-block;
margin-right:12px;
width:45px;
height:45px;
line-height:45px;
text-align:center;
border-radius:50%;
color:white;
font-size:18px;
transition:0.3s;
}

/* Facebook */
.social-icons a:nth-child(1){
background:#1877f2;
}

/* Instagram */
.social-icons a:nth-child(2){
background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

/* LinkedIn */
.social-icons a:nth-child(3){
background:#0077b5;
}

/* WhatsApp */
.social-icons a:nth-child(4){
background:#25d366;
}

.social-icons a:nth-child(4) i{
color:white;
}

.social-icons a:hover{
transform:scale(1.15);
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

/* RIGHT SIDE */

.contact-form{
padding:40px;
}

.contact-form h2{
margin-bottom:20px;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
outline:none;
}

.contact-form textarea{
resize:none;
height:100px;
}

/* BUTTON */

.contact-form button{
background:linear-gradient(135deg,#0072ff,#00c6ff);
color:white;
border:none;
padding:12px;
border-radius:6px;
cursor:pointer;
font-size:15px;
transition:0.3s;
}

.contact-form button:hover{
transform:scale(1.05);
}

/* RESPONSIVE */

@media(max-width:768px){

.contact-container{
grid-template-columns:1fr;
}

.contact-info{
text-align:center;
}

}

/* RESPONSIVE */
@media (max-width: 992px) {

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0b5ed7;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        background: #ffffff;
        margin-top: 5px;
    }

}

@media (max-width:768px){

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:100px;
left:0;
width:100%;
background:#0d6efd;
z-index:1000;
}

.nav-links.active{
display:flex;
}

.nav-links li{
width:100%;
}

.nav-links li a{
display:block;
padding:2px 10px;
}

}



/* hero section */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 34px;
    }
   
    .hero-image {
        max-width: 400px;
        margin: 40px auto 0;
    }

    .hero-image::before {
        width: 100%;
        height: 100%;
        transform: translate(-6px, -6px);
    }

    .hero-image::after {
        width: 120%;
        height: 120%;
        top: -10%;
        left: -10%;
    }

}

@media (max-width: 768px) {

    .hero-image {
        max-width: 300px;
        margin: 40px auto 0;
        display: flex;
        justify-content: center;
    }

    .hero-image::before {
        width: 100%;
        height: 100%;
        transform: none;   /* REMOVE left shift */
        left: 0;
        top: 0;
    }

    .hero-image::after {
        display: none; /* optional – remove glow on mobile */
    }

}

/* ===== SERVICES HIGHLIGHT ===== */

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT SEO SECTION ===== */

@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
}


@media (max-width: 992px) {

    .why-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .why-list li {
        border-left: none;
        border-top: 3px solid #f97316;
        padding-top: 10px;
        padding-left: 0;
    }

    /* Reset image position for mobile */
    .why-image img {
        top: 0;
        margin-top: 20px; /* optional spacing */
    }
}

/* Desktop */
.why-image img {
    position: relative;
    top: -130px;
}

/* Tablet */
@media (max-width: 1200px) {
    .why-image img {
        top: -70px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-image img {
        top: 0;
    }
}

/* ===== WORKFLOW SECTION ===== */


@media (max-width: 992px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .workflow-header h2 {
        font-size: 28px;
    }
}

/* ===== WHY CORPORATE SECTION ===== */


@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .why-card {
        text-align: center;
    }

    .icon-box {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== INDUSTRIES SECTION ===== */

/* Responsive */

@media (max-width: 992px) {
    .industries-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .industry-list {
        justify-content: center;
    }
}

/* ================================
   TESTIMONIAL RESPONSIVE STYLES
================================ */

/* Large Tablets */
@media (max-width: 1199px) {

    .testimonial-card {
        max-width: 320px;
    }

    .section-title h2 {
        font-size: 32px;
    }

}


/* Tablets */
@media (max-width: 992px) {

    .testimonial-wrapper {
        justify-content: center;
    }

    .testimonial-card {
        flex: 1 1 45%;
        max-width: 100%;
    }

    .section-title h2 {
        font-size: 28px;
    }

}


/* Mobile Devices */
@media (max-width: 768px) {

    .testimonial-section {
        padding: 60px 20px;
    }

    .testimonial-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 25px;
    }

    .testimonial-card p {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .review-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

}


/* Small Mobile */
@media (max-width: 480px) {

    .testimonial-section {
        padding: 50px 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .stars {
        font-size: 16px;
    }

}


/* ===== ABOUT SECTION ===== */
@media (max-width: 992px) {

    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-content h1 {
        font-size: 28px;
    }

    .about-image {
        margin-top: 30px;
    }

}

@media (max-width: 992px) {

    .vm-wrapper {
        flex-direction: column;
    }

    .vm-card {
        padding: 30px;
    }

}

/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 992px) {

    .stats-wrapper {
        gap: 25px;
    }

    .stat-box {
        width: 240px;
        padding: 35px 20px;
    }

}

@media (max-width: 768px) {

    .stats-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 90%;
    }

    .company-stats {
        padding: 70px 0;
    }

}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
  }

  .portfolio-hero h1 {
    font-size: 32px;
  }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-section {
    padding: 70px 20px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}


/* Responsive */

@media (max-width: 768px) {
  .portfolio-section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }
}

/* ================= Digtal Marketing RESPONSIVE ================= */

@media (max-width: 768px) {

  .service-hero h1 {
    font-size: 28px;
  }

  .service-hero p {
    font-size: 16px;
  }

  .service-content h2,
  .why-choose h2,
  .faq-section h2 {
    font-size: 24px;
  }

  .service-form h2 {
    font-size: 22px;
  }

}


/* subscribe */

@media(max-width:900px){

.footer-container{
grid-template-columns:1fr 1fr;
}

.footer-subscribe form{
flex-direction:column;
}

}

@media(max-width:600px){

.footer-container{
grid-template-columns:1fr;
}

}