/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  
}


/* ONLY "How it works?" heading */
.how-left h2{
  color: #22c55e;
}
.contact h2{
 
  color: #22c55e;
}




.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.automation-visual {
  position: relative;
  width: 340px;
  height: 340px;
}

/* lines */
.flow-line {
  position: absolute;
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  top: 50%;
  left: 50%;
  transform-origin: left;
}

/* directions */
.line1 { transform: rotate(0deg); }
.line2 { transform: rotate(120deg); }
.line3 { transform: rotate(240deg); }

/* moving data dot */
.flow-line::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #443aaf;
  border-radius: 50%;
  animation: flow 2s linear infinite;
}

@keyframes flow {
  from { left: 0; }
  to { left: 100%; }
}


/*===============cards brandon=========*/

/* icon */
.icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}



/* ================= CORE ================= */
.core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;

  background: radial-gradient(
    circle at center,
    /**
    #180606 0%,
    #0e0202 20%,
    #1c0202 45%,
    #5a0000 70%,
    rgba(0,0,0,0) 100%
    */
 #180606 0%,
    #000000 20%,
    #170101 45%,
    #490303 70%,
    rgba(0,0,0,0) 100%
  );

  box-shadow:
  /*  0 0 80px rgba(255, 0, 0, 0.6),
    0 0 160px rgba(23, 3, 81, 0.4),
    0 0 300px rgba(255, 0, 0, 0.2);*/

      0 0 80px rgba(255, 0, 0, 0.6),
    0 0 160px rgba(23, 3, 81, 0.4),
    0 0 300px rgba(255, 0, 0, 0.2);

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Aura */
.core::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;

  background: radial-gradient(
    circle at center,
    rgba(6, 11, 74, 0.25),
    rgba(12, 36, 142, 0.15),
    transparent 70%
  );

  z-index: -1;
}

/* Center icon */

/*
.core-inner {
  color: white;
  font-size: 44px;

  text-shadow:
    0 0 10px rgba(255,255,255,0.9),
    0 0 25px rgba(255,255,255,0.6);

  animation: rotate 6s linear infinite;
}
  */




/* SVG container */
.flow-svg {
  width: 200px;
  height: 200px;
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* lines */
.flow-svg path {
  stroke: rgba(255,255,255,0.3);
  stroke-width: 2;
  fill: none;
}

/* moving dot */
.flow-dot {
  fill: #4facfe;
  filter: drop-shadow(0 0 6px #4facfe);
}




.core-inner {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  width: 80px;

  
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative; /* 👈 IMPORTANT */
  
  /* ❌ ye hata do */
  /* animation: rotate 50s linear infinite; */
}



/* gear image */
.gear-img {
  width: 10px;
  
 
  
  /*animation: rotateGear 12s linear infinite; /* thoda slow = premium */
   background: transparent !important;
   /*animation: rotate 60s linear infinite;*/
}
/* apps script logo (small overlay) */
.appscript-logo {
  position: absolute;
  width: 10px;   /* 👈 thoda aur subtle */
  height: 10px;

 

 background: transparent !important;

  
}

/**
.core-inner img {
 object-fit: contain;
    width: 50px;
  height: 50px;
  background: transparent !important;
 
  outline: none; 
}

*/



@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}



@keyframes pulse {
  0% {
    box-shadow: 0 0 60px rgba(255,0,0,0.5);
  }
  50% {
    box-shadow: 0 0 120px rgba(255,0,0,0.9);
  }
  100% {
    box-shadow: 0 0 60px rgba(255,0,0,0.5);
  }
}
.core-text {
  position: absolute;
  bottom: -35px;
  letter-spacing: 1px;
  color: white;
  font-size: 12px;
}

/* ================= ORBIT ================= */
.orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateOrbit 68s linear infinite;
}

@keyframes rotateOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ================= ICONS ================= */


/**
.float-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: transparent !important; 
  border: none !important;
  box-shadow: none !important; 
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon img {
  width: 80%; /
  height: auto;
  object-fit: contain;
  /* Agar background white hai toh ye line magic karegi 👇 
  mix-blend-mode: screen; 
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.2)); 
/ Hover 
.float-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.8));

}
*/

.float-icon {
 /*position: absolute;*/
 position: absolute;
  background: none !important; /* Background puri tarah hata do */
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important; /* Aksar shadow box jaisi dikhti hai */
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  display: flex; /* Centering fix */
  z-index: 5;
  opacity: 0.6;
}

.float-icon img {
  object-fit: contain;
    width: 40px;
  height: 40px;
  background: transparent !important;
  /* Agar icon ke corners par halki white line hai toh ye use karo */
  outline: none; 
}
/* Hover */
.float-icon:hover {
  transform: scale(1.1);
 
   filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));

}

/* 6 ICON POSITIONS (perfect circle) */
.icon1 { top: 40%; left: 0%; transform: translate(0, -50%); }      /* Left Edge */
.icon2 { top: 15%; left: 15%; transform: translate(0, -50%); }     /* Top Left Arc */
.icon3 { top: 0%;  left: 50%; transform: translate(-50%, -50%); }  /* Top Center */
.icon4 { top: 15%; right: 15%; transform: translate(0, -50%); }    /* Top Right Arc */
.icon5 { top: 40%; right: 0%; transform: translate(0, -50%); }     /* Right Edge */
/*.icon6 { top: 65%; left: 50%; transform: translate(-50%, 0); z-index: 6; }  Bottom/Inside layer */
/* ================= STATS ================= */
.stat {
  position: absolute;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);

  color: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);

  animation: floatStat 5s ease-in-out infinite;
}

.stat1 {
  top: 40px;
  right: -30px;
  animation-delay: 0s;
  color: #849fff;
}

.stat2 {
  bottom: 40px;
  right: -30px;
  color: #1ac320;
  animation-delay: 2s;
}

@keyframes floatStat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
/* ================= BODY ================= */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f4f8ff;          /* light blue background */
  color: #1f2937;               /* dark text */
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e3ecff;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb; /* blue */
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
}

nav a:hover {
  color: #2563eb;
}

.btn-nav {
  padding: 8px 16px;
  background: #2563eb;
  border-radius: 20px;
  color: #ffffff !important;
}

/* ================= HERO ================= */
.hero-top {
  padding-top: 40px;
  padding-bottom: 40px;
 /* background: radial-gradient(circle at right, #0b1a3a, #020617);*/
 background: #0b1220;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* 🔥 HEADLINE */
.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 27px;
  /* color: #5795e5;    */
  /*color: #a1c0f2;  brighter 
  color: #e2e8f0;*/
  color: #EAEAEA;

  
  text-shadow: none;   /* 👈 MOST IMPORTANT */
  font-weight: 600;
}
  


/* 🔥 Highlight (100+ Hours) */
.hero-text h1 span {
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  
  /**color: #ffffff;
   color: #10c992;
   */

   color: #22c55e;

  
  font-weight: 700;   /* red accent */
  letter-spacing: -0.3px;
  /**text-shadow: 0 0 10px rgba(255,255,255,0.2);*/
  text-shadow: none;   /* 👈 MOST IMPORTANT */
}


/* SUBTEXT */
.hero-text p {
  font-size: 16px;
  color: #94a3b8;   /* premium grey */
   font-weight: 400; /* ya 450 */
 /* max-width: 520px; */
  line-height: 1;
    margin-top: 30px;
}

/* ================= HERO IMAGE ================= */
.hero-image img {
  width: 100%;
  border-radius: 16px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
}

/* ================= PORTFOLIO / CARDS ===============
.project-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 6px;
  text-decoration: none;
  color: #1f2937;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.18);
}

.project-card h3 {
  color: #0f172a;
  margin-bottom: 10px;
}

.project-card p {
  color: #475569;
  font-size: 14px;
}

*/

/* ================= PORTFOLIO / CARDS ================= */

/*
.project-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 6px; 
  text-decoration: none;
  color: #111827;

  border: 1px solid #e5e7eb; 
  box-shadow: none;

  transition: all 0.2s ease;
}


.project-card:hover {
  transform: translateY(-2px); 
  border-color: #cbd5f5; 
  box-shadow: none;
}


.project-card h3 {
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}


.project-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; 
}
.project-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 12px;
}
*/

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }
  


 .hero-text .subtitle {
  font-size: 10px;
  line-height: 1.5;
  color: #9fb3d1;
  max-width: 320px;
  margin: 16px auto 0;
}

}



/* SECTIONS */
.section {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

.section.light  {
    background: #ffffff;
    max-width: 1000px;
    margin: auto;
    padding: 20px 20px;
    margin-bottom: 40px;
    
}
.section.light h2 {
    
    
    
    color: #808fb2;
    margin-bottom: 10px;
    
}



.service-box h3 {
  
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 30;
  color: #0f172a;
}

.service-box p {
  
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 20;
  color: #31353f;
}

.section-desc {
    opacity: 0.8;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    /*
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05); 
    */
     border-radius: 6px; 
      box-shadow: none;
  border: 1px solid #e5e7eb;
}



/* PORTFOLIO */

.portfolio-section {
    
     position-area: centor;


  /*padding: 80px 20px; /* 👈 side padding control */
  /**max-width: 1200px;*/
  margin: auto;
   width: 100%;
}



.project-card img {
  width: 100%;          /* card ki width ke hisaab se */
  max-height: 180px;    /* image zyada badi na ho */
  object-fit: contain; /* image cut na ho */
  display: block;
  margin-bottom: 16px;
}




.portfolio-section h2 {
  text-align: center;

  
}


.view-btn{
  color: #1ac320;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

/* underline animation */
.view-btn::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #1ac320;
  transition: width 0.3s ease;
}

.view-btn:hover{
  color: #22ff88;
}

.view-btn:hover::after{
  width: 100%;
}

.portfolio-grid {
   padding-top: 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 20px;
}
/*
.project-card {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-2px);
  border-color: #cbd5f5;
}
*/  
.project-card {
   /*background: #ffffff;
  padding: 18px;
  border-radius: 6px; */
  

  background: #ffffff;
  padding: 18px;
  border-radius: 16px;

  border: 1px solid #e5e7eb;
  box-shadow: none;

  transition: all 0.2s ease;
   text-decoration: none !important;
  color: inherit !important;
}
.project-card * {
  text-decoration: none !important;
  color: inherit;
}


.project-card:hover {
  transform: translateY(-2px);
  border-color: #66d1af;
}
.project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* PROJECT DETAIL */
.project-detail {
    margin-top: 50px;
}

.hidden {
    display: none;
}

.back-btn {
    background: none;
    border: none;
    color: #1e88e5;
    cursor: pointer;
    font-weight: bold;
}

.project-hero {
    background: #e3f2fd;
    padding: 30px;
    border-radius: 16px;
}

.project-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.project-stats div {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.project-block {
    margin-top: 30px;
}

.project-block.result {
    background: #f1f5ff;
    padding: 20px;
    border-radius: 12px;
}

.project-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.project-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}



/* FORM */
.contact form {
  margin: 50px 0;   /* ❌ margin: auto hatao */

  
  max-width: 500px;
  padding: 0;       /* extra padding hatao */
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
   

}
.contact {
  
  max-width: 1200px;   /* 👈 same as how-it-works */
  margin:  auto;
  padding: 30px;       /* 👈 SAME LEFT LINE */
}
.contact h2 {
  font-size: 37px;   /* 🔥 size bada */
  font-weight: 750;
  line-height: 1.2;
}

button {
    width: 100%;
    padding: 12px;
    background: #1e88e5;
    color: white;
    border: none;
    border-radius: 6px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #e3f2fd;
}







/* ===== CASE STUDY PAGE ===== */
.case-hero {
  display: flex;
  gap: 40px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.case-hero-text {
  flex: 1;
}

.badge {
  background: #e3f2fd;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.case-metrics {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.case-metrics div {
  background: #f5f7fb;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.case-hero-image img {
  max-width: 100%;
  border-radius: 12px;
}

.case-section {
  max-width: 900px;
  margin: auto;
  padding: 30px 20px;
}

.case-section.highlight {
  background: #f1f5ff;
}

.more-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.mini-case {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.review-slider img {
  width: 100%;
  border-radius: 8px;
}

.case-footer {
  text-align: center;
  padding: 40px;
}

.social-links{
    text-align: center;
  
}

.social-links a {
  margin-left: 16px;
  text-decoration: none;
  font-weight: 800;
  color: #071d4c;
}

.social-links a:hover {
  text-decoration: underline;
}


/* ================= TESTIMONIALS ================= */
.testimonial-section {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 140px;
  padding: 0 30px;   /* 👈 ye sabko ek line pe laata hai */
}
.testimonial-section h2 {

  font-size: 32px;
  text-align: left;
  
 
  margin-bottom: 40px;

 
 color: #22c55e;
}



.testimonial-slider {
  position: relative;
  max-width: 1140px;
  margin: auto;
  overflow: hidden;
  padding: px; /* 👈 yahi add kar */
}

.testimonial-track {
  display: flex;
  margin-top: 10px;
  gap: 24px;
  transition: transform 0.6s ease;
  
}

/* 👇 KEY CHANGE */
.testimonial-card {
  flex: 0 0 33.33%;   /* 3 cards visible */
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 12px;
}

.quote {

  

  font-style: italic;
 
  color: #111827; /* dark gray / near black */
  margin-top: 12px;  
  font-size: 15px;
  
  
  line-height: 1.6;
  margin-bottom: 20px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e5edff;
  object-fit: cover;
}

.client strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
}

.client span {
  font-size: 12px;
  color: #64748b;
}


/* ================= CONTROLS ================= */

/* NAV BUTTONS 
.nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #2563eb;
  color: white;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
}

.nav-btn.left {
  left: 10px;
}

.nav-btn.right {
  right: 10px;
}
*/

/* ================= CONTROLS ================= */
.testimonial-controls {
  position: relative;        /* parent reference */
  margin-top: 0;             /* no top gap */
  padding: 0;                /* remove extra space */
  width: 100%;
  height: 42px;              /* same as button height */
}

/* COMMON BUTTON STYLE */
.nav-btn {
  position: absolute;        /* allow left / right */
  top: -70px;                    /* no vertical gap */
  background: #e5e5ef;
  color: rgb(19, 18, 18);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* LEFT BUTTON */
.nav-btn.left {
  left: 80px;
}

/* RIGHT BUTTON */
.nav-btn.right {
  right: 80px;
}

/* HOVER EFFECT */
.nav-btn:hover {
  background: #c7d2fe;
  transform: scale(1.05);
}



/* MOBILE */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}


/* ================= ABOUT HERO ================= */
.about-hero {
  max-width: 1000px;
  margin: 120px auto 80px;
  padding: 50px;
  background: linear-gradient(180deg, #8eaad7 0%,
    #95b6e8 60%);
  border-radius: 24px;
  color: #ffffff;
  text-align: center;
}

.mission-box h1 {
  font-size: 36px;
  margin-bottom: 14px;
}

.mission-box p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
  margin: auto;
  opacity: 0.95;
}

.founder-box {
  margin-top: 60px;
}

.founder-box h2 {
  font-size: 26px;
  margin-bottom: 18px;
}

.founder-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  margin-bottom: 16px;
}

.founder-box p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 620px;
  margin: auto;
  opacity: 0.95;
}

/* ================= WHY SECTION ================= */
.why-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.why-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #0f172a;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.why-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0f172a;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* ================= CTA ================= */


.about-cta {
  background: #f4f8ff;
  padding: 80px 20px;
  text-align: center;
}

.about-cta h2 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 12px;
}

.about-cta p {
  font-size: 15px;
  color: #475569;
  max-width: 620px;
  margin: 0 auto 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  border-radius: 30px;
  font-weight: 500;
}

.cta-btn:hover {
  background: #1e40af;
}

/* ================= AUTOMATION HIGHLIGHTS ================= */
.automation-highlights {
  margin-top: 26px;
  max-width: 520px;
}

.automation-highlights h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #0f172a;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.25s ease;
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(37,99,235,0.15);
}

.highlight-item .icon {
  font-size: 18px;
}

.highlight-item p {
  font-size: 13px;
  color: #334155;
  line-height: 1.4;
}


/* ================= CASE HERO IMAGE ================= */
.case-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-hero-image img {
  max-width: 560px;
  width: 100%;
  height: auto;
  border-radius: 10px;

  transform: translateY(10px); /* 👈 visual balance */
}

.case-hero-text {
  flex: 1;
  max-width: 620px;
}

/* ================= WORKFLOW IMAGES ================= */
.workflow-images img {
  width: 100%;
  border-radius: 14px;
  background: #ffffff;              /* 👈 contrast */
  padding: 8px;                     /* 👈 gap feel */
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  margin-bottom: 16px;
  margin-top: 8px;
}

/*book consultancy*/
.hero-cta-mobile {
  display: none; /* hidden on desktop */
  margin-top: 20px;
}

.btn-primary {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 14px 22px;
  border-radius: 28px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}



/* Mobile */
@media (max-width: 900px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .case-hero {
    flex-direction: column;
    text-align: left;
  }

  .case-hero-image img {
    max-width: 100%;
    transform: none;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .workflow-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



/*book8*/
@media (max-width: 768px) {

  /* Hide navbar button on mobile */
  .btn-nav {
    display: none;
  }

  /* Show hero CTA on mobile */
  .hero-cta-mobile {
    display: block;
  }

  .hero-text {
    text-align: left;
  }
}

.icon {
  width: 36px;
  height: 36px;
  background: #eef2ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family:
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji",
    sans-serif;
}


/*company loogs*/
.clients {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  padding: 40px 0;
  
}

.logo-slider {
  width: 1130px;                /* control center width */
  overflow: hidden;
  margin-left: 30px;
  margin-right: 30px;;
  margin-top: 140px;
   margin-bottom: 140px;
  
  
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0 auto;            /* keep track centered */
  animation: scroll 30s linear infinite;
}

.logo-track img {
  height: 50px;
  margin: 0 35px;
  filter: grayscale(100%);
  opacity: 0.7;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



.whatsapp-float img {
  width: 28px;
  height: 28px;
 
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  text-decoration: none; /* underline hata dega */
  color: #00a881;           /* blue hata dega */
}






@media (max-width: 480px) {
  .whatsapp-float span {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 14px !important;
  }
}




/* ================= TEMPLATES SECTION ================= */
.templates-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.templates-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f172a;
}

.section-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 40px;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.template-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: left;
}

.template-video iframe {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.template-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f172a;
}

.template-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

.template-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}

.template-btn:hover {
  background: #1e40af;
}

/* ================= CTA ================= */
.templates-cta {
  background: #f4f8ff;
  padding: 80px 20px;
  text-align: center;
}


.portfolio-section {
/*
background: linear-gradient(
  180deg,
  #dbeafe 0%,
  #bfdbfe 70%,
  #f8fafc 100%
);
*/
background: linear-gradient(
  180deg,
  #000307 0%,
  #010a16 60%,
  #011a10 80%,
  #021f12 100%
);
  padding: 80px 0; /* side padding hata */
}

.portfolio-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px; /* content control */
}

.portfolio-cta {
  text-align: center;
  margin-top: 30px;
}

/*=====for grid swiss==*/
/*
body {
  background-image: 
    linear-gradient(to right, rgba(12, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    
  background-size: 180px 180px;
}


*/
