
:root{
  --primary:#ff7a00;
  --secondary:#0f172a;
  --accent:#2563eb;
  --white:#ffffff;
  --light:#f8fafc;
  --text:#1e293b;
  --muted:#64748b;
  --border:#e2e8f0;

  --gradient:
  linear-gradient(135deg,#ff7a00,#ffb347);

  --dark-gradient:
  linear-gradient(135deg,#020617,#0f172a);

  --shadow:
  0 10px 40px rgba(0,0,0,0.08);

  --radius:22px;
}


.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#000;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(2,6,23,0.88) 0%,
        rgba(2,6,23,0.65) 40%,
        rgba(2,6,23,0.25) 100%
    );
}

.hero-container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:120px 7%;
}

.hero-content{
    max-width:750px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:60px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
    font-size:14px;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
    font-family:'Inter',sans-serif;
}

.hero-content h1 span{
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    font-size:19px;
    line-height:1.9;
    color:#e2e8f0;
    max-width:650px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.primary-btn,
.secondary-btn{
    padding:16px 34px;
    border-radius:60px;
    font-weight:600;
    text-decoration:none;
    transition:0.4s ease;
}

.primary-btn{
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    box-shadow:0 10px 30px rgba(255,122,0,0.3);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    backdrop-filter:blur(10px);
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-5px);
}

.hero-stats{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.stat-box h3{
    font-size:38px;
    color:#fff;
    margin-bottom:5px;
}

.stat-box p{
    color:#cbd5e1;
    font-size:15px;
}


/* Location Section */

.location-seo {
  padding: 40px 20px;
  background: linear-gradient(to right, #fffaf5, #ffffff);
  text-align: center;
}

/* SMALL TITLE */
.location-subtitle {
  color: #ff7a00;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* MAIN TITLE */
.location-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

/* SHINING LINE */
.location-line {
  width: 80px;
  height: 3px;
  margin: 12px auto 20px;
  background: linear-gradient(90deg, #ff7a00, #ffb347, #ff7a00);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.location-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 100%;
  background: rgba(255,255,255,0.6);
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}

@keyframes shine {
  0% { left: -50px; }
  100% { left: 120%; }
}

/* TEXT */
.location-text {
  max-width: 800px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .location-title {
    font-size: 26px;
  }
}


/* CLIENT SECTION */

.clients-section{
    width:100%;

    padding:40px 5%;

    background:#fff;

    overflow:hidden;

    position:relative;
}

/* TITLE */

.section-title{
    text-align:center;

    margin-bottom:55px;
}

/* MINI TITLE */

.mini-title{
    display:inline-block;

    color:#ff7a00;

    font-size:15px;
    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:15px;
}

/* MAIN TITLE */

.section-title h2{
    font-family:'Playfair Display', serif;

    font-size:34px;

    color:#111;

    margin-bottom:20px;
}

/* SHINING LINE */

.shine-line{
    width:140px;
    height:5px;

    margin:auto;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        transparent,
        #ff7a00,
        #ffb347,
        #ff7a00,
        transparent
    );

    background-size:300%;

    animation:shineMove 4s linear infinite;
}

@keyframes shineMove{

    0%{
        background-position:-200%;
    }

    100%{
        background-position:200%;
    }

}

/* SLIDER */

.clients-slider{
    width:100%;

    overflow:hidden;

    position:relative;
}

/* TRACK */

.clients-track{
    display:flex;

    align-items:center;

    gap:28px;

    width:max-content;

    animation:scrollClients 28s linear infinite;
}

/* SMOOTH ANIMATION */

@keyframes scrollClients{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* CLIENT CARD */

.client-card{
    min-width:220px;
    height:130px;

    background:#fff;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:25px;

    position:relative;

    overflow:hidden;

    border:2px solid transparent;

    background-image:
        linear-gradient(#fff,#fff),
        linear-gradient(135deg,#ff7a00,#ffb347,#ff7a00);

    background-origin:border-box;
    background-clip:padding-box,border-box;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.06);

    transition:0.4s ease;
}

/* HOVER EFFECT */

.client-card:hover{
    transform:translateY(-10px);
}

/* CLIENT LOGO */

.client-card img{
    width:100%;
    max-width:150px;

    object-fit:contain;

    transition:0.4s;
}

.client-card:hover img{
    transform:scale(1.08);
}

/* RESPONSIVE */

@media(max-width:991px){

    .section-title h2{
        font-size:36px;
    }

    .client-card{
        min-width:180px;
        height:110px;
    }

}

@media(max-width:600px){

    .clients-section{
        padding:70px 5%;
    }

    .section-title h2{
        font-size:28px;
    }

    .client-card{
        min-width:160px;
        height:100px;
        padding:18px;
    }

}


/* =========================================
   SERVICES SECTION
========================================= */

.our-services-section{
    padding:80px 6%;
    background:white;
    overflow:hidden;
}

.our-container{
    max-width:1400px;
    margin:auto;
}

/* =========================================
   SECTION TITLE
========================================= */

.our-services-heading{
    text-align:center;
    margin-bottom:80px;
}

.our-services-heading .mini-title{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#d86bb3;
    margin-bottom:15px;
    font-family:'Poppins', sans-serif;
}

.our-services-heading .main-title{
    font-size:46px;
    font-weight:800;
    color:#222;
    font-family:'Playfair Display', serif;
    margin-bottom:18px;
}

/* BOTTOM SHINING LINE */

.our-title-line{
    width:90px;
    height:4px;
    margin:auto;
    border-radius:30px;
    background:linear-gradient(
        90deg,
        #d86bb3,
        #8b6cff,
        #d86bb3
    );
    background-size:300%;
    animation:shineLine 4s linear infinite;
}

@keyframes shineLine{

    0%{
        background-position:0%;
    }

    100%{
        background-position:300%;
    }

}
/* =========================================
   SERVICES GRID
========================================= */

.our-services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px 40px;
}

/* =========================================
   CARD
========================================= */

.our-service-card{
    position:relative;
    padding-top:50px;
    transition:0.4s ease;
}

.our-service-card:hover{
    transform:translateY(-8px);
}

/* =========================================
   ICON
========================================= */

.our-icon-box{
    width:70px;
    height:70px;
    border-radius:50%;
    margin-bottom:25px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #ff7ac6,
        #8b6cff
    );

    box-shadow:
    0 10px 25px rgba(139,108,255,0.25);

    position:relative;
}

.our-icon-box::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    padding:2px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.7),
        transparent
    );

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

.our-icon-box i{
    color:#fff;
    font-size:26px;
}


/* =========================================
   CONTENT
========================================= */

.our-service-card h3{
    font-size:24px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
    color:#7b63d1;

    /* PLAYFAIR FONT FOR TITLE */
    font-family:'Playfair Display', serif;
}

.our-service-card p{
    font-size:15px;
    line-height:1.9;
    color:#444;

    /* POPPINS FONT FOR CONTENT */
    font-family:'Poppins', sans-serif;

    max-width:280px;
}

/* =========================================
   STAGGER EFFECT
========================================= */

.our-service-card:nth-child(2),
.our-service-card:nth-child(4),
.our-service-card:nth-child(6),
.our-service-card:nth-child(8),
.our-service-card:nth-child(10),
.our-service-card:nth-child(12){
    margin-top:90px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .our-services-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:991px){

    .our-services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px 30px;
    }

    .our-service-card:nth-child(even){
        margin-top:60px;
    }

    .our-services-heading .main-title{
        font-size:38px;
    }

}

@media(max-width:600px){

    .our-services-section{
        padding:70px 5%;
    }

    .our-services-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .our-service-card:nth-child(even){
        margin-top:0;
    }

    .our-services-heading .main-title{
        font-size:30px;
    }

    .our-service-card h3{
        font-size:20px;
    }

    .our-service-card p{
        max-width:100%;
    }

}

/* about Section index */

/* 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');

/* ABOUT SECTION */

/* ===== ABOUT SECTION ===== */

.about-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1.2;
}

.about-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    margin: 25px 0;
}

.about-features div {
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
}

.about-features i {
    color: #0d6efd;
    margin-right: 8px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #0d6efd;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #084298;
}

/* IMAGE */
.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}


/* about */

/* CONTAINER */

.about-container{
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:70px;
    position:relative;
    z-index:2;
}

/* LEFT SIDE */

.about-images{
    flex:1;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:22px;

    animation:leftSlide 1.2s ease;
}

/* IMAGE CARD */

.about-img-card{
    padding:5px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #ff7a00,
        #ffb347,
        #ff7a00
    );

    overflow:hidden;

    box-shadow:
        0 10px 25px rgba(255,122,0,0.15);

    transition:0.4s ease;
}

.about-img-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.about-img-card img{
    width:100%;
    height:230px;

    object-fit:cover;

    border-radius:20px;

    display:block;
}

/* RIGHT SIDE */

.about-content{
    flex:1;

    animation:rightSlide 1.2s ease;
}

/* SMALL TITLE */

.about-mini-title{
    color:#ff7a00;

    font-size:15px;
    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    display:inline-block;

    margin-bottom:15px;

    font-family:'Poppins', sans-serif;
}

/* MAIN TITLE */

.about-content h2{
    font-family:'Playfair Display', serif;

    font-size:48px;

    line-height:1.25;

    color:#111;

    margin-bottom:20px;
}

/* SHINE LINE */

.about-shine-line{
    width:140px;
    height:5px;

    border-radius:20px;

    margin-bottom:28px;

    background:linear-gradient(
        90deg,
        transparent,
        #ff7a00,
        #ffb347,
        #ff7a00,
        transparent
    );

    background-size:300%;

    animation:shineMove 4s linear infinite;
}

/* CONTENT */

.about-content p{
    font-family:'Poppins', sans-serif;

    font-size:17px;

    line-height:1.9;

    color:#555;

    margin-bottom:18px;
}

/* FEATURES */

.about-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;

    margin-top:30px;
}

/* FEATURE BOX */

.feature-box{
    background:#fff;

    padding:14px 22px;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    font-family:'Poppins', sans-serif;

    display:flex;
    align-items:center;
    gap:10px;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.05);

    transition:0.3s ease;
}

.feature-box i{
    color:#ff7a00;
}

.feature-box:hover{
    transform:translateY(-5px);
}

/* LEFT ANIMATION */

@keyframes leftSlide{

    0%{
        opacity:0;
        transform:translateX(-120px);
    }

    100%{
        opacity:1;
        transform:translateX(0);
    }

}

/* RIGHT ANIMATION */

@keyframes rightSlide{

    0%{
        opacity:0;
        transform:translateX(120px);
    }

    100%{
        opacity:1;
        transform:translateX(0);
    }

}

/* SHINE */

@keyframes shineMove{

    0%{
        background-position:-200%;
    }

    100%{
        background-position:200%;
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .about-container{
        flex-direction:column;
    }

    .about-content{
        text-align:center;
    }

    .about-shine-line{
        margin:auto auto 28px;
    }

    .about-features{
        justify-content:center;
    }

    .about-content h2{
        font-size:38px;
    }

}

@media(max-width:600px){

    .about-section{
        padding:70px 5%;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-content p{
        font-size:15px;
    }

    .about-img-card img{
        height:160px;
    }

    .feature-box{
        width:100%;
        justify-content:center;
    }

}

/* ===== INDUSTRIES SECTION ===== */


.industries-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff5ec, #ffffff);
  text-align: center;
}

.sub-title {
  color: #ff7a00;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 20px;
  color: #222;
  display: inline-block;
}

.main-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ff7a00;
  display: block;
  margin: 12px auto 0;
}

.industry-seo-text {
  max-width: 900px;
  margin: 0 auto 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 40px 25px;
  max-width: 1100px;
  margin: auto;
}

.industry-item {
  transition: 0.3s;
}

.industry-item i {
  font-size: 48px;
  margin-bottom: 12px;
}

.industry-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.industry-item:hover {
  transform: translateY(-6px);
}

.industry-item:hover i {
  transform: scale(1.15);
}

/* MULTI COLORS + 3D */
.icon1 { color: #ff6b6b; text-shadow: 2px 2px #cc5555; }
.icon2 { color: #4dabf7; text-shadow: 2px 2px #3b8ec4; }
.icon3 { color: #51cf66; text-shadow: 2px 2px #3da94f; }
.icon4 { color: #ff922b; text-shadow: 2px 2px #cc7522; }
.icon5 { color: #845ef7; text-shadow: 2px 2px #6747c4; }
.icon6 { color: #20c997; text-shadow: 2px 2px #199d76; }
.icon7 { color: #fab005; text-shadow: 2px 2px #c98a04; }
.icon8 { color: #e64980; text-shadow: 2px 2px #b73764; }
.icon9 { color: #868e96; text-shadow: 2px 2px #5f666d; }
.icon10 { color: #228be6; text-shadow: 2px 2px #1b6fb8; }
.icon11 { color: #f06595; text-shadow: 2px 2px #c04f76; }
.icon12 { color: #fa5252; text-shadow: 2px 2px #c94141; }
.icon13 { color: #7950f2; text-shadow: 2px 2px #5c3dc4; }
.icon14 { color: #12b886; text-shadow: 2px 2px #0e8f67; }
.icon15 { color: #e8590c; text-shadow: 2px 2px #b74709; }
.icon16 { color: #15aabf; text-shadow: 2px 2px #118a9b; }
.icon17 { color: #5c7cfa; text-shadow: 2px 2px #4a63c4; }
.icon18 { color: #82c91e; text-shadow: 2px 2px #669d18; }
.icon19 { color: #adb5bd; text-shadow: 2px 2px #7d848a; }
.icon20 { color: #f59f00; text-shadow: 2px 2px #c47f00; }

/* HIDDEN SEO */
.seo-keywords {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-title { font-size: 28px; }
  .industry-item i { font-size: 40px; }
}


:root {
  --primary-color: #007bff;
  --secondary-color: #00d4ff; /* The second color for the frame */
  --text-dark: #333;
  --text-light: #666;
}

/* 1. Centered Header */
.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}


/* Fonts */
.testimonial-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem;
    margin-top: 10px;
}


.testimonial-section-pro { font-family: 'Poppins', sans-serif; }

/* Shining Bottom Line */
.shining-line {
    width: 120px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 25px; /* auto ensures centering */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.shining-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.testimonial-section-pro {
  padding: 80px 0;
  background-color: white;
}

.testimonial-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

/* Highlighted Designation */
.designation {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
}
testimonial-card.active { display: block; }

.testimonial-card::before {
    content: "";
    position: absolute;
    top: -8px; left: -8px;
    width: calc(100% + 16px); /* Full width */
    height: 80px; /* Depth of the corner */
    border-top: 5px solid var(--primary-color);
    border-left: 5px solid var(--secondary-color);
    border-radius: 15px 15px 0 0;
    z-index: -1;
    pointer-events: none;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: -8px; right: -8px;
    width: calc(100% + 16px); /* Full width */
    height: 80px;
    border-bottom: 5px solid var(--secondary-color);
    border-right: 5px solid var(--primary-color);
    border-radius: 0 0 15px 15px;
    z-index: -1;
    pointer-events: none;
}

.testimonial-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

/* Card Styling */
.testimonial-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
    background: #ffffff;
    padding: 60px 45px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: none;
    z-index: 1;
    margin: 10px; /* Space for the frame to breathe */
}

.testimonial-card.active { 
    display: block; 
    animation: fadeIn 0.6s ease-out;
}

.testimonial-card.active {
  display: block;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: rgba(0,0,0,0.05);
  font-family: serif;
  line-height: 1;
}

.stars { color: #ffcc00; margin-bottom: 15px; font-size: 1.1rem; }

.review-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
    margin-bottom: 30px;
    position: relative;
}

/* Photo & Client Details */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-photo {
  width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #fff;
}


/* Adjusting the left panel buttons to match the look */
.btn-review.write {
    background: var(--primary-color);
    border: none;
    color: white;
}

.btn-review.google {
    background: white;
    border: 1px solid #ddd;
    color: var(--text-dark);
}


.client-details h4 { margin: 0; font-size: 1.1rem; color: var(--text-dark); }
.client-details span { font-size: 0.9rem; color: var(--text-light); }

/* Left Side Styling */
.testimonial-left { width: 30%; }
.brand-box { text-align: center; }
.brand-logo { max-width: 180px; margin-bottom: 20px; }
.btn-review {
  display: block;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.google { background: #fff; border: 1px solid #ddd; color: #555; }
.write { background: var(--primary-color); color: #fff; }

/* Dots */
.slider-dots { display: flex; gap: 8px; margin-top: 20px; justify-content: center; }
.dot { width: 10px; height: 10px; background: #ddd; border-radius: 50%; cursor: pointer; }
.dot.active { background: var(--primary-color); width: 25px; border-radius: 10px; }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}


/* why you choose us  */

/* ===== WHY CHOOSE US SECTION ===== */

/* ===== SECTION BASE ===== */
.why-choose-us{
    width:100%;
    padding:40px 5%;
    position:relative;
    overflow:hidden;
    background:#ffffff;
}

/* SOFT BACKGROUND GLOW (LIGHT VERSION) */
.why-choose-us::before,
.why-choose-us::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:0;
}

/* LIGHT BLUE GLOW */
.why-choose-us::before{
    width:350px;
    height:350px;
    background:rgba(0,140,255,0.08);
    top:-100px;
    left:-100px;
    animation:floatGlow1 8s ease-in-out infinite;
}

/* LIGHT ORANGE GLOW */
.why-choose-us::after{
    width:320px;
    height:320px;
    background:rgba(255,122,0,0.08);
    bottom:-100px;
    right:-100px;
    animation:floatGlow2 9s ease-in-out infinite;
}

/* CONTAINER */
.why-wrapper{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    position:relative;
    z-index:2;
}

.why-image,
.why-content{
    flex: 1;
}

.why-image{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.why-image img{
    
     width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

/* CONTENT */
.why-content h2{
    font-family:'Playfair Display', serif;
    font-size:34px;
    line-height:1.25;
    color:#111; /* CHANGED */
    margin-bottom:20px;
}

/* SHINING LINE (kept stylish) */
.why-content h2::after{
    content:"";
    display:block;
    width:150px;
    height:5px;
    border-radius:30px;
    margin-top:18px;
    background:linear-gradient(
        90deg,
        transparent,
        #0077ff,
        #00aaff,
        #0077ff,
        transparent
    );
    background-size:300%;
    animation:shineLine 4s linear infinite;
}

/* INTRO TEXT */
.why-intro{
    font-family:'Poppins', sans-serif;
    font-size:17px;
    line-height:1.9;
    color:#444; /* CHANGED */
    margin-bottom:35px;
}

/* LIST */
.why-list{
    list-style:none;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-bottom:40px;
}

/* CARD */
.why-list li{
    position:relative;
    background:#ffffff; /* CLEAN WHITE */
    border:1px solid #e5e7eb; /* LIGHT BORDER */
    border-radius:24px;
    padding:28px;
    transition:0.4s ease;
    overflow:hidden;
}

/* GRADIENT BORDER (SOFT) */
.why-list li::before{
    content:"";
    position:absolute;
    inset:0;
    padding:1.5px;
    border-radius:24px;
    background:linear-gradient(
        135deg,
        #00aaff,
        #ff7a00,
        #00aaff
    );
    opacity:0.3;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

/* HOVER */
.why-list li:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */
.why-list li i{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0077ff,#00aaff);
    color:#fff;
    font-size:24px;
    margin-bottom:18px;
    box-shadow:0 8px 20px rgba(0,119,255,0.25);
}

/* TITLE */
.why-list li h4{
    font-family:'Poppins', sans-serif;
    font-size:20px;
    font-weight:600;
    color:#111; /* CHANGED */
    margin-bottom:12px;
}

/* TEXT */
.why-list li p{
    font-family:'Poppins', sans-serif;
    font-size:15px;
    line-height:1.8;
    color:#555; /* CHANGED */
}

/* BUTTON */
.primary-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-family:'Poppins', sans-serif;
    font-size:15px;
    font-weight:600;
    color:#fff;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    box-shadow:0 10px 25px rgba(255,122,0,0.25);
    transition:0.4s ease;
}

.primary-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */
@media(max-width:991px){
    .why-wrapper{
        flex-direction:column;
    }

    .why-content{
        text-align:center;
    }

    .why-content h2::after{
        margin:auto;
        margin-top:18px;
    }

    .why-list{
        grid-template-columns:1fr;
    }

    .why-content h2{
        font-size:40px;
    }
}

@media(max-width:600px){
    .why-choose-us{
        padding:80px 5%;
    }

    .why-content h2{
        font-size:30px;
    }

    .why-intro{
        font-size:15px;
    }

    .why-list li{
        padding:22px;
    }
}


/* work flow section */

/* ===== WORKFLOW SECTION ===== */
.workflow-section {
    position: relative;
    padding: 90px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    overflow: hidden;
    color: #fff;
}

/* Background Shapes */
.workflow-shape1,
.workflow-shape2,
.workflow-shape3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.workflow-shape1 {
    width: 250px;
    height: 250px;
    background: #e60023;
    top: -50px;
    left: -50px;
}

.workflow-shape2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    bottom: -80px;
    right: -60px;
}

.workflow-shape3 {
    width: 200px;
    height: 200px;
    background: #22c55e;
    top: 40%;
    left: 60%;
}

/* Header */
.workflow-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.workflow-header span {
    display: inline-block;
    color: #38bdf8;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.workflow-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.workflow-header p {
    color: #cbd5f5;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.workflow-card {
    position: relative;
    padding: 30px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Glow effect */
.workflow-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    top: 0;
    left: -100%;
    transition: 0.5s;
}

.workflow-card:hover::before {
    left: 100%;
}

.workflow-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}



/* =========================================================
   EVERGAIN SOFTWARE - FULL RESPONSIVE INDEX CSS
========================================================= */

/* =========================
   GLOBAL RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#1e293b;
    line-height:1.6;
}

/* =========================
   ROOT VARIABLES
========================= */
:root{

    --primary:#ff7a00;
    --secondary:#0f172a;
    --accent:#2563eb;

    --white:#ffffff;
    --light:#f8fafc;

    --text:#1e293b;
    --muted:#64748b;
    --border:#e2e8f0;

    --gradient:
    linear-gradient(135deg,#ff7a00,#ffb347);

    --dark-gradient:
    linear-gradient(135deg,#020617,#0f172a);

    --shadow:
    0 10px 40px rgba(0,0,0,0.08);

    --radius:22px;
}

/* =========================================================
   COMMON CONTAINER
========================================================= */

.container,
.hero-container,
.about-container,
.why-wrapper,
.workflow-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding-left:5%;
    padding-right:5%;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#000;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(2,6,23,0.88) 0%,
        rgba(2,6,23,0.65) 40%,
        rgba(2,6,23,0.25) 100%
    );
}

.hero-container{
    position:relative;
    z-index:2;
    padding-top:120px;
    padding-bottom:120px;
}

.hero-content{
    max-width:760px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:60px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
    font-size:14px;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.hero-content h1 span{
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    font-size:19px;
    line-height:1.9;
    color:#e2e8f0;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.primary-btn,
.secondary-btn{
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s ease;
}

.primary-btn{
    background:var(--gradient);
    color:#fff;
    box-shadow:0 10px 30px rgba(255,122,0,0.3);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    backdrop-filter:blur(10px);
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-5px);
}

.hero-stats{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.stat-box h3{
    font-size:38px;
    color:#fff;
}

.stat-box p{
    color:#cbd5e1;
    font-size:15px;
}

/* =========================================================
   SECTION TITLES
========================================================= */

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title h2{
    font-size:42px;
    color:#111;
    margin-bottom:18px;
    font-family:'Playfair Display',serif;
}

.mini-title,
.sub-title{
    color:#ff7a00;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.shine-line{
    width:120px;
    height:5px;
    margin:auto;
    border-radius:20px;
    background:linear-gradient(
        90deg,
        transparent,
        #ff7a00,
        #ffb347,
        #ff7a00,
        transparent
    );
    background-size:300%;
    animation:shineMove 4s linear infinite;
}

@keyframes shineMove{

    0%{
        background-position:-200%;
    }

    100%{
        background-position:200%;
    }
}

/* =========================================================
   CLIENT SECTION
========================================================= */

.clients-section{
    padding:80px 5%;
    background:#fff;
    overflow:hidden;
}

.clients-track{
    display:flex;
    align-items:center;
    gap:28px;
    width:max-content;
    animation:scrollClients 28s linear infinite;
}

@keyframes scrollClients{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

.client-card{
    min-width:220px;
    height:130px;
    background:#fff;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
    border:2px solid transparent;

    background-image:
        linear-gradient(#fff,#fff),
        linear-gradient(135deg,#ff7a00,#ffb347,#ff7a00);

    background-origin:border-box;
    background-clip:padding-box,border-box;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);

    transition:0.4s ease;
}

.client-card:hover{
    transform:translateY(-10px);
}

.client-card img{
    width:100%;
    max-width:150px;
    object-fit:contain;
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section{
    padding:100px 5%;
    background:#f4f4f7;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    max-width:1300px;
    margin:auto;
}

.service-card{
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.2);

    border-radius:24px;

    padding:35px 28px;

    transition:0.4s ease;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.06);
}

.service-card:hover{
    transform:translateY(-10px);
}

.icon-box{
    width:75px;
    height:75px;

    border-radius:20px;

    background:linear-gradient(
    135deg,
    #ff7a00,
    #ffb347
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    color:#fff;

    margin-bottom:25px;
}

.service-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.service-card p{
    color:#555;
    font-size:15px;
    line-height:1.8;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section{
    padding:100px 5%;
    background:#f8f9fc;
}

.about-container{
    display:flex;
    align-items:center;
    gap:70px;
}

.about-images{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.about-img-card{
    padding:5px;
    border-radius:24px;

    background:linear-gradient(
        135deg,
        #ff7a00,
        #ffb347
    );

    overflow:hidden;
}

.about-img-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:20px;
}

.about-content{
    flex:1;
}

.about-mini-title{
    color:#ff7a00;
    font-size:15px;
    font-weight:600;
    margin-bottom:15px;
    display:inline-block;
}

.about-content h2{
    font-size:48px;
    line-height:1.25;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.feature-box{
    background:#fff;
    padding:14px 22px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.feature-box i{
    color:#ff7a00;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-choose-us{
    padding:100px 5%;
    background:#fff;
}

.why-wrapper{
    display:flex;
    align-items:center;
    gap:70px;
}

.why-image,
.why-content{
    flex:1;
}

.why-image img{
    width:100%;
    max-width:520px;
}

.why-content h2{
    font-size:42px;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.why-intro{
    color:#555;
    line-height:1.9;
    margin-bottom:35px;
}

.why-list{
    list-style:none;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.why-list li{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:28px;
    transition:0.4s ease;
}

.why-list li:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.why-list li i{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0077ff,#00aaff);
    color:#fff;
    font-size:24px;
    margin-bottom:18px;
}

.why-list li h4{
    margin-bottom:12px;
    font-size:20px;
}

.why-list li p{
    color:#555;
    font-size:15px;
    line-height:1.8;
}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonial-section-pro{
    padding:100px 5%;
    background:#fff;
}

.testimonial-wrapper{
    display:flex;
    gap:40px;
    align-items:center;
}

.testimonial-left{
    width:30%;
}

.testimonial-right{
    flex:1;
}

.testimonial-card{
    background:#fff;
    padding:50px 40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.review-text{
    line-height:1.9;
    margin-bottom:25px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-photo{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

/* =========================================================
   WORKFLOW SECTION
========================================================= */

.workflow-section{
    position:relative;
    padding:100px 5%;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    overflow:hidden;
    color:#fff;
}

.workflow-header{
    text-align:center;
    max-width:800px;
    margin:auto auto 60px;
}

.workflow-header h2{
    font-size:42px;
    margin-bottom:15px;
}

.workflow-header p{
    color:#cbd5f5;
    line-height:1.8;
}

.workflow-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.workflow-card{
    position:relative;
    padding:30px 25px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.1);
    transition:0.4s ease;
}

.workflow-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

/* =========================================================
   INDUSTRIES SECTION
========================================================= */

.industries-section{
    padding:100px 5%;
    background:linear-gradient(135deg,#fff5ec,#ffffff);
    text-align:center;
}

.main-title{
    font-size:42px;
    margin:10px 0 20px;
    color:#222;
    font-family:'Playfair Display',serif;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:40px 25px;
    max-width:1100px;
    margin:auto;
}

.industry-item{
    transition:0.3s;
}

.industry-item:hover{
    transform:translateY(-6px);
}

.industry-item i{
    font-size:48px;
    margin-bottom:12px;
}

.industry-item p{
    font-size:15px;
    font-weight:500;
}

/* =========================================================
   RESPONSIVE - LARGE TABLETS
========================================================= */

@media(max-width:1200px){

    .hero-content h1{
        font-size:58px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .workflow-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* =========================================================
   RESPONSIVE - TABLETS
========================================================= */

@media(max-width:991px){

    .hero-section{
        min-height:auto;
    }

    .hero-container{
        padding-top:140px;
        padding-bottom:100px;
    }

    .hero-content{
        max-width:100%;
        text-align:center;
    }

    .hero-content h1{
        font-size:50px;
    }

    .hero-content p{
        font-size:17px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
    }

    .about-container,
    .why-wrapper,
    .testimonial-wrapper{
        flex-direction:column;
    }

    .about-content,
    .why-content{
        text-align:center;
    }

    .about-features{
        justify-content:center;
    }

    .why-list{
        grid-template-columns:1fr;
    }

    .testimonial-left{
        width:100%;
    }

    .workflow-grid{
        grid-template-columns:1fr;
    }

    .section-title h2,
    .main-title,
    .workflow-header h2,
    .why-content h2,
    .about-content h2{
        font-size:36px;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media(max-width:600px){

    .hero-container{
        padding-top:120px;
        padding-bottom:80px;
    }

    .hero-content h1{
        font-size:38px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
        justify-content:center;
    }

    .hero-stats{
        gap:25px;
    }

    .stat-box{
        width:100%;
        text-align:center;
    }

    .section-title h2,
    .main-title,
    .workflow-header h2,
    .why-content h2,
    .about-content h2{
        font-size:28px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .client-card{
        min-width:160px;
        height:100px;
        padding:18px;
    }

    .about-images{
        grid-template-columns:1fr;
    }

    .about-img-card img{
        height:220px;
    }

    .feature-box{
        width:100%;
        justify-content:center;
    }

    .testimonial-card{
        padding:35px 25px;
    }

    .review-text{
        font-size:15px;
    }

    .workflow-section,
    .about-section,

    .industries-section,
    .why-choose-us,
    .testimonial-section-pro{
        padding-top:70px;
        padding-bottom:70px;
    }

    .industry-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media(max-width:400px){

    .hero-content h1{
        font-size:32px;
    }

    .hero-badge{
        font-size:12px;
        padding:8px 14px;
    }

    .section-title h2,
    .main-title{
        font-size:24px;
    }

    .client-card{
        min-width:140px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }
}