:root{
  --primary: #1c4ed8;   /* change this for your theme */
  --primary-dark: #163da8;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  --maxw: 1200px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== HEADER ===== */
.site-header{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  z-index: 50;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-row{
  height: 74px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}

.brand{
  display: flex;
  align-items: center;
}

.brand-logo{
  height: 190px;
  width: auto;
  object-fit: contain;
      margin-top: 10px;
}


.nav-links{
  display:flex;
  align-items:center;
  gap: 24px;
}

.nav-links a{
  text-decoration:none;
  color: #0b1220;
  font-weight: 600;
  font-size: 15px;
  position: relative;
}

.nav-links a.active{
  color: var(--primary);
}

.dropdown{
  position: relative;
}

.dropdown-menu{
  position:absolute;
  left:0;
  background: white;
  border-radius: 14px;
  padding: 10px;
  min-width: 180px;
  box-shadow: var(--shadow);
  display: none;
}

.dropdown:hover .dropdown-menu{
  display:block;
}

.dropdown-menu a{
  display:block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
}

.dropdown-menu a:hover{
  background: rgba(28, 78, 216, 0.07);
  color: var(--primary);
}

.chev{ font-size: 12px; opacity: 0.7; }

.header-actions{
  display:flex;
  align-items:center;
  gap: 12px;
}

.hamburger{
  display:none;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor:pointer;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 700;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn-primary{
  background: var(--primary);
  color: white;
}

.btn-primary:hover{
  background: var(--primary-dark);
}

.btn-outline{
  border-color: rgba(255,255,255,0.9);
  color: white;
  background: rgba(255,255,255,0.08);
}

.btn-outline:hover{
  background: rgba(255,255,255,0.16);
}

.btn.small{ padding: 10px 16px; font-size: 13px; margin-left: 20px;}

/* ===== HERO SLIDER ===== */
.hero{
  width:100%;
}

.slider{
  position: relative;
  height: 520px;
  overflow:hidden;
}

.slide{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.slide.active{
  opacity:1;
  transform: scale(1);
}

.overlay{
  position:absolute;
  inset:0;
  background: rgba(15, 23, 42, 0.55);
}

.hero-content{
  height: 520px;
  display:flex;
  align-items:center;
}

.hero-box{
  width: min(740px, 95%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 32px;
  color: white;
}

.hero-box h1{
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-sub{
  margin-top: 14px;
  font-size: 16px;
  opacity: 0.95;
}

.hero-box .btn{
  margin-top: 18px;
}

/* slider arrows */
.slider-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.22);
  color:white;
  font-size: 28px;
  cursor:pointer;
}

.slider-btn.prev{ left: 18px; }
.slider-btn.next{ right: 18px; }

/* dots */
.dots{
  position:absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  gap: 8px;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  cursor:pointer;
}

.dot.active{
  background: white;
}

/* ===== SERVICES ===== */
.services{
  padding: 70px 0;
  padding-bottom: 5px;
  margin-top: 200px;
}

.section-kicker{
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
      padding-left: 25px;
}

.services-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 24px;
}

.services-top h2{
  font-size: clamp(26px, 2.3vw, 44px);
  line-height: 1.15;
  max-width: 680px;
  padding-left: 25px;
}

.service-grid{
  margin-top: 70px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  
}

.service-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  min-height: 240px;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3{
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.service-card p{
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-icon{
  font-size: 34px;
}

.service-link{
  margin-top: 16px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  text-decoration:none;
  font-weight: 800;
  color: var(--primary);
}

.service-link span{
  font-size: 18px;
}

.service-card.featured{
  background: var(--primary);
  color: white;
}

.service-card.featured p{
  color: rgba(255,255,255,0.85);
}

.service-card.featured .service-link{
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
  .service-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px){
  .nav-links{
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: white;
    padding: 14px 18px;
    display:none;
    flex-direction: column;
    align-items:flex-start;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .nav-links.show{
    display:flex;
  }

  .hamburger{
    display:block;
  }

  .dropdown-menu{
    position: static;
    box-shadow: none;
    padding: 6px 0;
    display:block;
  }

  .dropdown-menu a{
    padding-left: 0;
  }
}

@media (max-width: 520px){
  .slider, .hero-content{ height: 520px; }
  .hero-box{ padding: 22px; }
  .service-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== INDUSTRIES SECTION ===== */
/* ===== INDUSTRIES SECTION ===== */

.industry-section{
  position: relative;
  margin-top: 80px;
}

.industry-bg{
  position: relative;
  height: 120px;
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.industry-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.15) 100%
  );
}

.industry-inner{
  height: 100%;
  display:flex;
  align-items:center;
  position: relative;
  z-index: 2;
}

.industry-text{
  max-width: 520px;
  color: #ffffff;
}

.industry-title{
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.industry-desc{
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

.industry-btn{
  display:inline-block;
  margin-top: 18px;
  padding: 12px 26px;
  background: #ffffff;
  color: #6a0dad;
  font-weight: 800;
  border-radius: 999px;
  text-decoration:none;
}



/* ===== CARDS ===== */

.industry-cards-wrap{
  margin-top: -120px;
  position: relative;
  z-index: 5;
  
}

.industry-card-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  justify-content: center;
  margin-top: 80px;
}

.industry-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  min-height: 280px;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  
}

.industry-card:hover{
  border-color: var(--primary);
  transform: translateY(-6px);
}

.industry-card-highlight{
  background: #6a0dad;
  color: #ffffff;
}

.industry-card h3{
  font-size: 18px;
  margin-top: 10px;
}

.industry-card p{
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.industry-card-highlight p{
  color: rgba(255,255,255,0.85);
}

.industry-icon{
  font-size: 34px;
}

.industry-link{
  margin-top: 16px;
  font-weight: 800;
  text-decoration:none;
  color: #1c4ed8;
}

.industry-card-highlight .industry-link{
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px){
  .industry-card-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px){
  .industry-card-grid{
    grid-template-columns: 1fr;
  }

  .industry-bg{
    height: 520px;
  }
}


/* =========================
   LEADERSHIP TABS SECTION CSS
========================= */

:root{
  --tabPrimary: #7c3aed;   /* purple highlight */
  --tabOrange: #f97316;    /* orange headings */
  --tabText: #0f172a;
  --tabMuted: #4b5563;
  --tabBorder: rgba(15, 23, 42, 0.12);
  --tabShadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

.team-tabs-section{
  padding: 70px 0;
  background: #fff;
}

.team-tabs-container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

/* LEFT IMAGES */
.team-tabs-left{
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  height: 520px;
}

.left-strip,
.left-main{
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
}

.left-strip img,
.left-main img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT CONTENT */
.team-tabs-right{
  padding-top: 10px;
}

.team-tabs-menu{
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  margin-bottom: 18px;
}

.team-tab{
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--tabText);
  text-transform: uppercase;
  transition: 0.18s ease;
}

/* ✅ hover color on all headings */
.team-tab:hover{
  color: #1c4ed8;
}

/* ✅ active tab */
.team-tab.active{
  color: #1c4ed8;
}

.team-tab-content{
  display: none;
}

.team-tab-content.active{
  display: block;
  padding-top: 15px;
}

.team-title{
  font-size: 30px;
  font-weight: 500;
  margin-top: 10px;
  color: #0b1220;
}

.team-desc{
  margin-top: 12px;
  line-height: 1.8;
  font-size: 14px;
  color: #111827;
  max-width: 620px;
}

.team-desc.dark{
  color: #111827;
}

.leaders-grid{
  margin-top: 32px;
  display: flex;
  gap: 28px;
  align-items: stretch;
}


/* LEADER CARD */
.leader-box{
  display: none;
  width: 260px;
  background: #ffffff;
  border-radius: 26px;
  padding: 22px 18px 28px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.14);
  border: 1px solid rgba(15,23,42,0.08);
  text-align: center;
  transition: 0.3s ease;
}

/* ✅ hover lift effect */
.leader-box:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.25);
}

.leader-photo{
  width: 110px;
  height: 180px;
  margin: 0 auto;
  border-radius: 60px;
  overflow: hidden;
  background: #e5e7eb;
}

.leader-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leader-box:hover .leader-photo img{
  transform: scale(1.08);
}

.leader-name{
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.leader-role{
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #6b7280;
}


.leader-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
  margin: 16px auto 0;
}

/* Partnership / About headings */
.orange-title{
  font-size: 24px;
  font-weight: 900;
  color: #1c4ed8;
  margin-top: 10px;
}

.orange-subtitle{
  margin-top: 18px;
  font-size: 22px;
  font-weight: 900;
  color: #1c4ed8;
}

.mini-title{
  margin-top: 9px;	
  font-weight: 700;
  color: #111827;
  margin-bottom: 0px;
}

.team-bullets{
  margin-top: 14px;
  padding-left: 20px;
}

.team-bullets li{
  font-size: 14px;
  line-height: 1.9;
  color: #111827;
}

/* About BIG heading */
.about-heading{
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #000;
  margin-top: 10px;
}

/* Accordion (Careers) */
.accordion-wrap{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acc-item{
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  overflow: hidden;
}

.acc-head{
  width: 100%;
  border: none;
  background: #f8fafc;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  font-size: 16px;
  font-weight: 800;
  color: #111827;
}

.acc-item.open .acc-head{
  color: #1c4ed8;
}

.acc-arrow{
  font-size: 18px;
  opacity: 0.7;
}

.acc-body{
  display: none;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #111827;
}

.acc-item.open .acc-body{
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .team-tabs-container{
    grid-template-columns: 1fr;
  }

  .team-tabs-left{
    height: 420px;
    grid-template-columns: 140px 1fr;
  }

  .team-tabs-menu{
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 540px){
  .leaders-grid{
    grid-template-columns: 1fr;
  }

  .team-title{
    font-size: 34px;
  }

  .about-heading{
    font-size: 32px;
  }
}

/* ===== CASE STUDIES ===== */
.case-studies{
  background: #000;
  color: #fff;
  padding: 80px 0;
}

.case-head{
  text-align: center;
  margin-bottom: 40px;
}

.case-head h2{
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: 1px;
}

.case-head p{
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.85;
}

.case-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.case-card{
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
}

.case-img{
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
}

.case-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.35s ease;
}

.case-body{
  padding-top: 18px;
}

.case-body h3{
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.case-body p{
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 420px;
}

.case-btn{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.case-btn:hover{
  background: var(--primary-dark);
}

/* small hover on images */
.case-card:hover .case-img img{
  transform: scale(1.06);
}


/* ===== 3 CTA STRIP ===== */
.cta-strip{
  padding: 90px 0;
  background: #fff;
  
}

.cta-strip-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  align-items: center;
  margin-top: -30px;
}

.cta-box{
  padding: 40px 35px;
  position: relative;
}

.cta-box h3{
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.cta-box h3 span{
  font-weight: 900;
}

.cta-box p{
  margin-top: 14px;
  font-size: 14px;
  color: #111827;
  line-height: 1.7;
}

/* vertical lines */
.cta-box.bordered{
  border-left: 1px solid rgba(15, 23, 42, 0.25);
  border-right: 1px solid rgba(15, 23, 42, 0.25);
}

.cta-btn{
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  transition: 0.2s ease;
  font-size: 13px;
  letter-spacing: 0.6px;
}

.cta-btn:hover{
  background: var(--primary-dark);
}

/* responsive */
@media (max-width: 900px){
  .cta-strip-grid{
    grid-template-columns: 1fr;
  }

  .cta-box.bordered{
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(15, 23, 42, 0.18);
    border-bottom: 1px solid rgba(15, 23, 42, 0.18);
  }
}

/* ===== PARALLAX CTA ===== */
.parallax-cta{
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  /* ✅ Parallax base (CSS way) */
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.parallax-content{
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 18px;
  color: #fff;
}

.parallax-content h2{
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.parallax-content p{
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.7;
}

.parallax-btn{
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.parallax-btn:hover{
  background: var(--primary-dark);
}

/* ✅ Mobile fix: background-attachment fixed not perfect on mobile */
@media (max-width: 768px){
  .parallax-cta{
    background-attachment: scroll;
  }
}
/* ===== BLOGS SECTION ===== */
.blogs-section{
  padding: 80px 0;
  background: #fff;
  text-align: center;
  margin-bottom: -110px;
}

.blogs-kicker{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blogs-title{
  font-size: clamp(26px, 2.4vw, 44px);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.blogs-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: left;
}

.blog-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  transition: 0.25s ease;
}

.blog-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.blog-img{
  height: 170px;
  overflow: hidden;
  background: #f1f5f9;
}

.blog-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.35s ease;
}

.blog-card:hover .blog-img img{
  transform: scale(1.08);
}

.blog-body{
  padding: 18px 18px 22px;
}

.blog-date{
  font-size: 13px;
  color: #111827;
  opacity: 0.75;
  margin-bottom: 10px;
}

.blog-body h3{
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}

.blog-text{
  font-size: 13.5px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 16px;
}

.blog-link{
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  color: var(--primary);
}

.blog-link:hover{
  text-decoration: underline;
}

.blogs-bottom{
  margin-top: 35px;
}

.blogs-seeall-btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: 0.2s ease;
}

.blogs-seeall-btn:hover{
  background: var(--primary-dark);
}

/* responsive */
@media (max-width: 1100px){
  .blogs-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .blogs-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials{
  padding: 90px 0;
  background: rgb(239 239 239 / 55%);
  margin-top: 60px;
}

.testimonials-grid{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.testimonials-left .testimonials-kicker{
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.testimonials-left h2{
  font-size: 34px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.25;
}

.testimonials-right{
  position: relative;
}

.t-slider{
  overflow: hidden;
  border-radius: 18px;
}

.t-track{
  display: flex;
  gap: 22px;
  transition: transform 0.45s ease;
}

.t-card{
  min-width: calc(50% - 11px); /* 2 cards visible */
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
  position: relative;
}

.t-quote{
  font-size: 60px;
  color: var(--primary);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.t-text{
  font-size: 13.5px;
  line-height: 1.85;
  color: #111827;
  opacity: 0.9;
  min-height: 150px;
}

.t-footer{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.t-person{
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-logo{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #111827;
}

.t-name{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.t-role{
  font-size: 12px;
  opacity: 0.7;
}

.t-stars{
  color: #f59e0b; /* star yellow */
  letter-spacing: 1px;
  font-size: 14px;
}

/* arrows */
.t-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  z-index: 5;
}

.t-arrow:hover{
  border-color: rgba(28, 78, 216, 0.35);
  color: var(--primary);
}

.t-arrow.left{ left: -16px; }
.t-arrow.right{ right: -16px; }

/* dots */
.t-dots{
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.t-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.25);
  cursor: pointer;
  transition: 0.2s ease;
}

.t-dot.active{
  background: #111827;
}

/* responsive */
@media (max-width: 1024px){
  .testimonials-grid{
    grid-template-columns: 1fr;
  }

  .t-card{
    min-width: 38%;
  }

  .t-arrow.left{ left: 0; }
  .t-arrow.right{ right: 0; }
}

/* ===== CONTACT SECTION ===== */
.contact-section{
  padding: 90px 0;
  background: #fff;
}

.contact-top{
  text-align: center;
  margin-bottom: 55px;
}

.contact-kicker{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-title{
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-subtitle{
  font-size: 14px;
  line-height: 1.8;
  color: #111827;
  opacity: 0.85;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* left form */
.contact-form h3{
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #111827;
}

.contact-form form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row.full{
  grid-template-columns: 1fr;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  outline: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 78, 216, 0.15);
}

.contact-btn{
  width: 150px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.6px;
  transition: 0.2s ease;
}

.contact-btn:hover{
  background: var(--primary-dark);
}

/* right side */
.contact-image{
  border-radius: 14px;
  overflow: hidden;
  height: 260px;
}

.contact-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-details{
  margin-top: 18px;
  font-size: 14px;
  line-height: 2;
  color: #111827;
}

/* responsive */
@media (max-width: 1024px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== PARTNERS SECTION (REAL LOGOS) ===== */
.partners{
  padding: 60px 0 40px;
  background: #fff;
}

.partners-kicker{
  text-align: center;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.partners-row.logos{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.partner-item{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
}

.partner-item img{
  height: 60px;        /* logo height */
  width: auto;
  display: block;
  opacity: 0.95;
  transition: 0.2s ease;
}

/* small premium hover effect */
.partner-item:hover img{
  transform: translateY(-2px);
  opacity: 1;
}

.partner-divider{
  width: 1px;
  height: 44px;
  background: rgba(15, 23, 42, 0.22);
}

/* responsive: remove dividers when wrap happens */
@media (max-width: 850px){
  .partner-divider{
    display: none;
  }
}


/* ===== FOOTER ===== */
.site-footer{
  background: var(--primary);
  color: #fff;
  padding: 60px 0 26px;
}

.footer-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-circle{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-brand-name{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
}

.footer-brand-sub{
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

.footer-social{
  display: flex;
  gap: 10px;
}

.footer-social a{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.2s ease;
}

.footer-social a:hover{
  background: rgba(255,255,255,0.26);
  transform: translateY(-2px);
}

.footer-line{
  margin: 26px 0;
  height: 1px;
  background: rgba(255,255,255,0.22);
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h4{
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li{
  margin: 10px 0;
  font-size: 14px;
  opacity: 0.92;
}

.footer-col a{
  text-decoration: none;
  color: #fff;
  opacity: 0.92;
  transition: 0.2s ease;
}

.footer-col a:hover{
  opacity: 1;
  text-decoration: underline;
}

.footer-contact li{
  line-height: 1.8;
}

.footer-bottom{
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
}

/* Responsive Footer */
@media (max-width: 1024px){
  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .footer-grid{
    grid-template-columns: 1fr;
  }

  .footer-top{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== CONTACT PAGE HERO ===== */
.contact-hero{
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.contact-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.contact-hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-content h1{
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 1px;
}

/* ===== CONTACT PAGE BODY ===== */
.contact-page{
  padding: 70px 0;
  background: #fff;
}

.contact-page-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left box like reference */
.contact-box{
  border: 1.5px solid rgba(124, 58, 237, 0.55);
  border-radius: 12px;
  padding: 28px;
}

.contact-box-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-box input,
.contact-box textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  outline: none;
  font-size: 14px;
}

.contact-box input:focus,
.contact-box textarea:focus{
  border-color: rgba(124, 58, 237, 0.85);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.contact-box-btn{
  width: 140px;
  margin-top: 10px;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-box-btn:hover{
  background: var(--primary-dark);
}

/* Right info */
.contact-side-info h2{
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-info-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
}

.icon-round{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-info-item h4{
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 4px;
}

.contact-info-item p{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.85);
  margin: 0;
}

/* ===== MAP SECTION ===== */
.map-section{
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.map-section iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* responsive */
@media (max-width: 1024px){
  .contact-page-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== CASE STUDIES PAGE ===== */
.case-hero{
  position: relative;
  height: 220px;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.case-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.case-hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
}

.case-hero-content h1{
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.case-buttons-section{
  padding: 60px 0 80px;
  background: #fff;
}

.case-buttons-wrap{
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.case-pill{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
  text-decoration: none;
  font-weight: 800;
  color: var(--primary);
  min-width: 300px;
  transition: 0.2s ease;
}

.case-pill:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.pill-icon{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
/* ===== BLOGS PAGE HERO ===== */
.blogs-hero{
  position: relative;
  height: 220px;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.blogs-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.blogs-hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
}

.blogs-hero-content h1{
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
}

/* spacing for grid on blog page */
.blogs-page{
  padding: 60px 0 80px;
}

.blogs-page-grid{
  justify-content: center;
}

/* ===== BLOG DETAIL (AI HEALTHCARE) ===== */
.blog-detail-hero{
  padding: 50px 0 35px;
  background: #fff;
}

.blog-hero-card{
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 230px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

/* left purple */
.blog-hero-left{
  background: var(--primary);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 30px;
}

.blog-hero-left h1{
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

/* right image */
.blog-hero-right{
  background: #f1f5f9;
}

.blog-hero-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* content area */
.blog-detail-content{
  padding: 10px 0 70px;
}

.blog-content-wrap{
  max-width: 980px;
  margin: 0 auto;
  color: #111827;
}

.blog-lead{
  font-size: 14px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.85);
  margin-bottom: 12px;
}

.blog-detail-content p{
  font-size: 13px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.75);
  margin-bottom: 10px;
}

/* responsive */
@media (max-width: 850px){
  .blog-hero-card{
    grid-template-columns: 1fr;
  }

  .blog-hero-left{
    padding: 22px;
  }

  .blog-hero-left h1{
    font-size: 28px;
  }
}

/* ===== BLOG 3 (Salesforce big logo right side) ===== */
.unlock-hero-right{
  background: #e5e7eb; /* light grey like screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
}

.unlock-logo-img{
  width: 85%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}

/* big numbered headings like screenshot */
.blog-h2-numbered{
  font-size: 24px;
  font-weight: 500;
  margin: 18px 0 10px;
  color: #111827;
}

/* tags */
.blog-tags{
  margin-top: 14px;
  color: #e11d48; /* pink/red like screenshot */
  font-size: 13px;
}

/* ===== BLOG 4 (Workday Partner Program) ===== */
.workday-hero-right{
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workday-logo-img{
  width: 70%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}

/* ===== LEADERSHIP PAGE ===== */
.leadership-hero{
  position: relative;
  height: 220px;
  background-image: url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.leadership-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.leadership-hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
}

.leadership-hero-content h1{
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
}

.leadership-hero-content p{
  color: #fff;
  max-width: 750px;
  margin: 10px auto 0;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Meet leadership section */
.leadership-section{
  padding: 55px 0 80px;
  background: #fff;
  text-align: center;
}

.leadership-title{
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #111827;
}

.leadership-subtitle{
  font-size: 12px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.75);
  max-width: 760px;
  margin: 0 auto 35px;
}

/* cards grid */
.leaders-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  padding-top: 10px;
  
}

.leader-card{
  background: #fff;
  padding: 22px 18px 18px;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
}

.leader-card:last-child{
  border-right: none;
}

.leader-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
  z-index: 3;
  position: relative;
}

.leader-card img{
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.leader-card h3{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.leader-role{
  font-size: 11px;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 14px;
}

.leader-dot{
  width: 16px;
  height: 16px;
  background: #9ca3af;
  border-radius: 50%;
  margin: 0 auto;
}

/* responsive */
@media (max-width: 1024px){
  .leaders-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-card:nth-child(2){
    border-right: none;
  }
}

@media (max-width: 600px){
  .leaders-grid{
    grid-template-columns: 1fr;
  }

  .leader-card{
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .leader-card:last-child{
    border-bottom: none;
  }
}


/* ===== COMMON PAGE HERO ===== */
.page-hero{
  position: relative;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.page-hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content h1{
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 1px;
}

/* Partnership hero bg */
.partnership-hero{
  background-image: url("https://images.unsplash.com/photo-1535223289827-42f1e9919769?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

/* intro */
.partnership-intro{
  padding: 40px 0 55px;
  background: #fff;
}

.partnership-intro p{
  max-width: 950px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 2;
  text-align: center;
  color: rgba(15, 23, 42, 0.8);
}

/* purple block */
.partnership-purple{
  background: var(--primary);
  padding: 50px 0 60px;
}

.partnership-big-title{
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 35px;
}

.partnership-two-col{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 35px;
  align-items: start;
}

.partnership-left h3{
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.partnership-left p{
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  line-height: 1.9;
  margin-bottom: 10px;
}

.partnership-bullets{
  margin-top: 16px;
  padding-left: 16px;
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  line-height: 2;
}

.partnership-bullets li{
  margin-bottom: 16px;
}

.partnership-bullets b{
  color: #fff;
}

.partnership-img-box{
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.partnership-img-box img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* work together */
.work-together{
  padding: 70px 0 70px;
  background: #fff;
}

.work-title{
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 35px;
}

.work-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.work-img img{
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
}

.work-list{
  font-size: 12px;
  line-height: 2;
  color: rgba(15, 23, 42, 0.8);
  padding-left: 18px;
}

.work-list li{
  margin-bottom: 18px;
}

/* certifications slider */
.certifications{
  padding: 70px 0 40px;
  background: #fff;
  text-align: center;
}

.cert-title{
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 35px;
}

.cert-slider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.cert-arrow{
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.45);
}

.cert-track-wrap{
  overflow: hidden;
  width: 820px;
}

.cert-track{
  display: flex;
  transition: 0.35s ease;
}

.cert-item{
  min-width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.cert-item img{
  height: 70px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* dots */
.cert-dots{
  margin-top: 16px;
}

.cert-dot{
  display: inline-block;
  width: 7px;
  height: 7px;
  background: rgba(15, 23, 42, 0.25);
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}

.cert-dot.active{
  background: rgba(15, 23, 42, 0.8);
}

/* responsive */
@media (max-width: 950px){
  .partnership-two-col{
    grid-template-columns: 1fr;
  }

  .partnership-img-box img{
    height: 320px;
  }

  .work-grid{
    grid-template-columns: 1fr;
  }

  .cert-track-wrap{
    width: 90%;
  }
}

/* dots */
.cert-dots{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.cert-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.25);
  cursor: pointer;
  transition: 0.25s ease;
}

.cert-dot.active{
  background: rgba(15, 23, 42, 0.9);
  transform: scale(1.2);
}
:root {
  --purple: #5b0aa8;
  --purple-dark: #4a078c;
  --light-bg: #f9f9fb;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  color: #222;
}

/* =========================
   CAREERS PAGE
========================= */

.careers-hero {
  padding: 90px 0;
}

.careers-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.careers-hero-text h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.careers-hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
}

.careers-hero-image img {
  width: 100%;
  border-radius: 18px;
}

/* ===== OPENINGS ===== */
.careers-openings {
  padding: 80px 0;
  background: #fafafa;
  padding-top: 30px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 35px;
  text-align: center;
}

.job-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.job-meta {
  display: flex;
  gap: 30px;
  margin: 15px 0 25px;
  font-size: 14px;
}

.job-section h4 {
  margin-bottom: 10px;
}

.job-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.job-footer {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* ================= DIVERSITY SECTION ================= */
.diversity-section {
  padding: 80px 0;
  background: #ffffff;
}

.diversity-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000;
}

/* Accordion Wrapper */
.diversity-accordion {
  max-width: 900px;
  margin: 0 auto;
}

/* Item */
.diversity-item {
  background: #f8f9fb;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

/* Head */
.diversity-head {
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #000;
}

/* Active */
.diversity-item.open .diversity-head {
  color: #1c4ed8;
}

/* Body */
.diversity-body {
  padding: 0 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.diversity-item.open .diversity-body {
  padding: 14px 22px 22px;
  max-height: 200px;
}

/* Arrow */
.diversity-arrow {
  font-size: 18px;
  color: #1c4ed8;
}

.accordion {
  max-width: 900px;
}

.acc-item {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.acc-head {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  background: #f9fafb;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.acc-item.open .acc-head {
  color: #5a0fc8;
}

.acc-body {
  padding: 18px 22px;
  display: none;
  background: #fff;
  line-height: 1.6;
}

.acc-item.open .acc-body {
  display: block;
}

/* =========================
   CAREERS ACCORDION (FIXED)
========================= */

.accordion-wrap {
  max-width: 900px;
  margin: 40px auto;
}

.acc-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fafafa;
  transition: all 0.3s ease;
}

/* HEADER */
.acc-head {
  width: 100%;
  padding: 18px 22px;
  background: #f9fafb;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.acc-title {
  color: #000;
}

.acc-arrow {
  font-size: 18px;
  color: #6b7280;
  transition: transform 0.3s ease;
}

/* BODY */
.acc-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background: #fff;
  transition: max-height 0.35s ease, padding 0.3s ease;
  color: #374151;
  line-height: 1.6;
}

/* OPEN STATE */
.acc-item.open .acc-body {
  max-height: 300px; /* IMPORTANT */
  padding: 16px 22px 22px;
}

.acc-item.open .acc-title {
  color: #6d28d9;
}

.acc-item.open .acc-arrow {
  transform: rotate(180deg);
  color: #6d28d9;
}


/* ====== HERO ====== */
.sf-hero {
  position: relative;
  height: 340px;
  background: url("https://images.pexels.com/photos/3183138/pexels-photo-3183138.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
}
.sf-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,78,216,0.65);
}
.sf-hero-text {
  position: relative;
  color: #fff;
  width: 100%;
}
.sf-hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sf-hero p {
  font-size: 16px;
}

/* ====== INTRO ====== */
.sf-intro {
  padding: 80px 0;
}
.sf-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.sf-intro img {
  width: 100%;
}

/* ====== SERVICES GRID ====== */
.sf-services {
  padding: 80px 0;
  padding-bottom: 10px;
  padding-top: 10px;
}
.sf-card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.sf-card {
  background: #1c4ed8;
  color: #fff;
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(28,78,216,0.25);
}
.sf-card h3 {
  margin: 14px 0 10px;
}
.sf-card p {
  font-size: 14px;
  line-height: 1.6;
}
.sf-icon {
  font-size: 32px;
  margin-bottom: 18px;
}

/* ====== ACCORDION ====== */
.sf-acc-item {
  background: #f8f8fb;
  margin-bottom: 14px;
  border-radius: 10px;
}
.sf-acc-head {
  width: 100%;
  padding: 18px;
  text-align: left;
  font-weight: 600;
  background: #fff;
  border: none;
  cursor: pointer;
}
.sf-acc-body {
  display: none;
  padding: 18px;
}

/* show open */
.sf-acc-item.open .sf-acc-body {
  display: block;
}

/* ===== Salesforce Accordion ===== */

.sf-accordion-section {
  padding: 70px 0;
}

.sf-accordion {
  max-width: 1100px;
  margin: auto;
}

.sf-acc-item {
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #eef1f6;
}

.sf-acc-header {
  width: 100%;
  background: #f8fafc;
  border: none;
  padding: 20px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #000;
}

.sf-acc-item.active .sf-acc-header {
  color: #1c4ed8;
}

.sf-acc-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.sf-acc-item.active .sf-acc-icon {
  transform: rotate(180deg);
}

.sf-acc-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: all 0.35s ease;
}

.sf-acc-item.active .sf-acc-content {
  max-height: 800px;
  padding: 20px 26px 26px;
}

.sf-acc-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 14px;
}

/* ===== Customer 360 Section ===== */

.sf-customer {
  padding: 80px 0;
}

.sf-customer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 80px; /* space between image & text */
}

.sf-customer-image img {
  width: 100%;
  max-width: 460px;
}

.sf-customer-content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #000;
}

.sf-customer-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}

/* last paragraph no extra gap */
.sf-customer-content p:last-child {
  margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .sf-customer-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .sf-customer-content h2 {
    font-size: 28px;
  }
}

/* ===== DROPDOWN BASE ===== */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* first level */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 6px;
  display: none;
  padding: 8px 0;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f5f7fb;
  color: #1c4ed8;
}

/* ===== CRM SUB MENU ===== */
.dropdown-sub {
  position: relative;
}

.dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 6px;
  display: none;
  padding: 8px 0;
}

.dropdown-sub:hover .dropdown-submenu {
  display: block;
}

/* arrows */
.chev {
  font-size: 11px;
}

.chev-right {
  font-size: 14px;
  margin-left: auto;
}


/* veeva */

/* ================= SERVICE HERO ================= */
.service-hero {
  height: 280px;
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("https://www.vinove.com/blog/wp-content/uploads/2023/09/featured-image-840x400.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero h1 {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* ================= VEEVA INTRO ================= */
.veeva-intro {
  padding: 90px 0;
}

.veeva-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.veeva-intro-image img {
  width: 100%;
  max-width: 420px;
}

.veeva-intro-content h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #000;
}

.veeva-intro-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
}

.veeva-intro-content .intro-sub {
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
}

.veeva-intro-content ul {
  padding-left: 18px;
  margin-top: 8px;
}

.veeva-intro-content li {
  font-size: 14.5px;
  line-height: 1.9;
  margin-bottom: 6px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .veeva-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-hero {
    height: 220px;
  }

  .service-hero h1 {
    font-size: 26px;
  }
}


/* =========================
   VAULT CRM MIGRATION
========================= */

.vault-migration {
  padding: 80px 0;
  background: #ffffff;
}

.vault-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.vault-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 30px 32px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.vault-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1c4ed8;
}

.vault-card ul {
  padding-left: 18px;
}

.vault-card li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #222;
}

/* Responsive */
@media (max-width: 900px) {
  .vault-grid {
    grid-template-columns: 1fr;
  }

  .vault-card {
    padding: 26px;
  }
}


/* =========================
   OUR SERVICE OFFERINGS
========================= */

.service-offerings {
  background: linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url("https://images.unsplash.com/photo-1555949963-aa79dcee981c");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.offerings-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.offerings-text h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}

.offerings-text ul {
  list-style: disc;
  padding-left: 20px;
}

.offerings-text li {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 8px;
}

.offerings-logo {
  background: #ffffff;
  padding: 22px 30px;
  border-radius: 4px;
}

.offerings-logo img {
  max-width: 200px;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .offerings-wrap {
    flex-direction: column;
    text-align: center;
  }

  .offerings-text ul {
    list-style-position: inside;
    padding-left: 0;
  }
}


/* =========================
   CONSULTING CTA
========================= */

.consulting-cta {
  background: linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url("https://images.unsplash.com/photo-1517430816045-df4b7de11d1d");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
}

.cta-overlay h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-overlay p {
  color: #e5e7eb;
  font-size: 15px;
  max-width: 760px;
  margin: 0 auto 22px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #1c4ed8;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #163bb8;
}

/* =========================
   GET IN TOUCH
========================= */

.get-in-touch {
  padding: 80px 0;
}

.touch-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.touch-text {
  flex: 1;
}

.touch-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

.touch-text p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 14px;
}

.touch-image {
  flex: 1;
  text-align: right;
}

.touch-image img {
  max-width: 100%;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .touch-wrap {
    flex-direction: column;
    text-align: center;
  }

  .touch-image {
    text-align: center;
  }
}


/* Workday */

/* =========================
   PAGE HERO
========================= */

.page-hero {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.workday-hero {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
}

.hero-overlay {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* =========================
   SERVICE INTRO
========================= */

.service-intro {
  padding: 90px 0;
}

.intro-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.intro-text h2 span {
  color: #1c4ed8; /* your theme blue */
}

.intro-text p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 560px;
}

.intro-image {
  flex: 1;
  text-align: right;
}

.intro-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .intro-wrap {
    flex-direction: column;
    text-align: center;
  }

  .intro-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-image {
    text-align: center;
  }
}


.workday-achieve {
  padding: 80px 20px;
  background: #f8fafc;
}

.workday-achieve .container {
  max-width: 1100px;
  margin: auto;
}

.workday-achieve .section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.workday-box {
  background: #ffffff;
  border: 2px solid #1c4ed8;
  border-radius: 12px;
  padding: 40px 45px;
}

.workday-item {
  margin-bottom: 32px;
}

.workday-item:last-child {
  margin-bottom: 0;
}

.workday-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1c4ed8;
  margin-bottom: 8px;
}

.workday-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}

.workday-item ul {
  padding-left: 18px;
}

.workday-item li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #333;
}

.workday-item li strong {
  color: #000;
}

.section-workday-achieve {
    font-size: 32px;
    margin-bottom: 35px;
	text-align: center;
}


/* Oracle Page */

/* ================================
   ORACLE HERO
================================ */
.page-hero {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.oracle-hero {
  background-image: url("https://blogs.expandreality.io/hs-fs/hubfs/First%20Impressions%20of%20the%20VR%20Headsets.jpg?width=800&height=450&name=First%20Impressions%20of%20the%20VR%20Headsets.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ================================
   ORACLE INTRO
================================ */
.oracle-intro {
  padding: 80px 20px;
  background: #ffffff;
}

.oracle-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.oracle-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.3;
  color: #111;
}

.oracle-text p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
  color: #333;
}

.oracle-image img {
  width: 100%;
  max-width: 460px;
  display: block;
  margin-left: auto;
  border-radius: 10px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .oracle-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .oracle-image img {
    margin: 0 auto;
  }

  .hero-overlay h1 {
    font-size: 30px;
  }
}


.oracle-services {
  padding: 80px 0;
  background: #ffffff;
  padding-top: 10px;
}

.oracle-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.oracle-table {
  border: 2px solid #1c4ed8;
  border-radius: 10px;
  overflow: hidden;
}

.oracle-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-bottom: 1px solid #e5e7eb;
}

.oracle-row:last-child {
  border-bottom: none;
}

.oracle-col {
  padding: 24px 28px;
}

.oracle-col.heading {
  background: #f8fafc;
  font-weight: 700;
  color: #1c4ed8;
  font-size: 16px;
}

.oracle-col.content {
  font-size: 15px;
  color: #333;
}

.oracle-col.content ul {
  margin: 0;
  padding-left: 18px;
}

.oracle-col.content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .oracle-row {
    grid-template-columns: 1fr;
  }

  .oracle-col.heading {
    border-bottom: 1px solid #e5e7eb;
  }
}


/* ================= AI HERO ================= */
.ai-hero {
  height: 320px;
  background: url("https://media.licdn.com/dms/image/v2/D4D12AQEQH_DpvnIY3w/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1695287551377?e=2147483647&v=beta&t=dcRek2L2AibuHDeNeD8PjYuDQG8iIjSBZTtyQ6Rc37U") center/cover no-repeat;
  position: relative;
}

.ai-hero-overlay {
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-hero-overlay h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

/* ================= AI INTRO ================= */
.ai-intro {
  padding: 90px 0;
  background: #ffffff;
  padding-bottom: 10px;
  padding-top: 10px;
}

.ai-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ai-intro-image img {
  width: 100%;
  max-width: 460px;
  display: block;
  margin: 0 auto;
}

.ai-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

.ai-intro-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .ai-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ai-intro-content h2 {
    font-size: 28px;
  }

  .ai-hero-overlay h1 {
    font-size: 30px;
    padding: 0 16px;
  }
}


/* AI PAGE */

/* ================= AI FAQ ================= */
.ai-faq {
  padding: 90px 0;
  background: #ffffff;
}

.ai-faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* FAQ ITEMS */
.ai-faq-item {
  border-radius: 8px;
  background: #f8f9fb;
  margin-bottom: 14px;
  overflow: hidden;
}

.ai-faq-head {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ai-faq-item.open .ai-faq-head {
  color: #1c4ed8;
}

.ai-faq-body {
  padding: 0 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ai-faq-item.open .ai-faq-body {
  padding: 14px 22px 22px;
  max-height: 300px;
}

.ai-faq-arrow {
  font-size: 18px;
  color: #1c4ed8;
}

/* IMAGE */
.ai-faq-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ai-faq-grid {
    grid-template-columns: 1fr;
  }

  .ai-faq-image {
    order: -1;
    text-align: center;
  }
}

/* health care */
/* ================= PAGE HERO ================= */
.page-hero {
  height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}

.healthcare-hero {
  background-image: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("https://globalnodes.tech/wp-content/uploads/2024/10/2149611193.jpg");
}

/* ================= HEALTHCARE SECTION ================= */
.healthcare-section {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 60px;
}

/* Card */
.healthcare-card {
  background: #1c4ed8;
  color: #fff;
  border-radius: 10px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.healthcare-card.reverse {
  flex-direction: row-reverse;
}

/* Text */
.healthcare-text {
  width: 55%;
}

.healthcare-text h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.healthcare-text p {
  font-size: 15px;
  line-height: 1.7;
}

/* Image */
.healthcare-image {
  width: 35%;
  display: flex;
  justify-content: center;
}

.healthcare-image img {
  max-width: 70%;
  height: auto;
  
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .healthcare-card,
  .healthcare-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .healthcare-text,
  .healthcare-image {
    width: 100%;
  }

  .healthcare-image {
    margin-top: 20px;
  }
}


/* ABout page */

/* ================= ABOUT PAGE ================= */

/* HERO */
.about-hero {
  height: 280px;
  background-image: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("https://www.coforge.com/hs-fs/hubfs/AI-Digital.jpg?width=1813&height=490&upsize=true&upscale=true&name=AI-Digital.jpg");
}

.about-hero-overlay {
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-hero-overlay h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.about-hero-overlay p {
  font-size: 16px;
  opacity: 0.9;
}

/* MISSION / VISION */
.about-mv {
  padding: 80px 0;
  background: #fff;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-card {
  border-radius: 14px;
  padding: 40px;
}

.about-card.primary {
  background: #1c4ed8;
  color: #fff;
}

.about-card.light {
  background: #f4f6fb;
}

.about-card h2 {
  margin-bottom: 14px;
}

/* WHY */
.about-why {
  padding: 70px 0;
  background: #ffffff;
}

.about-why h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-why p {
  max-width: 850px;
  color: #444;
  margin-bottom: 12px;
}

/* ACCORDION */
.about-values {
  padding: 60px 0;
  background: #f8f9fc;
}

.about-acc-item {
  border-bottom: 1px solid #ddd;
}

.about-acc-head {
  width: 100%;
  padding: 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.about-acc-body {
  display: none;
  padding: 0 18px 18px;
  color: #555;
}

.about-acc-item.active .about-acc-body {
  display: block;
}

/* PHILOSOPHY */
.about-philosophy {
  background: #0b1b3a;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.about-philosophy h2 {
  margin-bottom: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-mv-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-overlay h1 {
    font-size: 30px;
  }
}

/* ================= MISSION & VISION ================= */

.mission-vision {
  padding: 80px 0;
  background: #ffffff;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Purple text cards */
.mv-card {
  background: #1c4ed8;
  color: #fff;
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mv-card h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Image blocks */
.mv-image {
  border-radius: 18px;
  overflow: hidden;
}

.mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Equal height fix */
.mv-grid > div {
  min-height: 260px;
}

/* Responsive */
@media (max-width: 900px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid > div {
    min-height: auto;
  }
}


/* ================= PARTNERS & CERTIFICATIONS ================= */

.partners-section {
  padding: 70px 0 80px;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.partners-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-card {
  width: 160px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-card img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .partners-logos {
    gap: 30px;
  }

  .partner-card {
    width: 140px;
    height: 100px;
  }
}



/* SERVICE */


/* HERO */
.services-hero {
  height: 320px;
  background: url("https://iiedm.com/blog/wp-content/uploads/2025/05/Artificial-Intelligence-1-770x400-1.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.65);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 14px;
  opacity: 0.85;
}

/* SECTIONS */
.section {
  padding: 70px 8%;
}

.section.purple {
  background: #1c4ed8;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

.section-title.white {
  color: #fff;
}

/* GRID */
.card-grid {
  display: grid;
  gap: 40px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

/* CARDS */
.service-card {
  border: 2px solid #7a1bd3;
  padding: 40px 35px;
  text-align: center;
  background: #fff;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-card::before{
  content: "";
  display: block;
  height: 4px;
  background: var(--primary);
  margin-bottom: 18px;
  border-radius: 4px;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.service-card .icon {
  font-size: 38px;
  color: #b15cff;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}


/* PURPLE SECTION FIX */
.section.purple .service-card {
  border-color: #fff;
}

.section.purple .service-card h3,
.section.purple .service-card p {
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .services-hero {
    height: 260px;
  }
}

/* industries */

/* HERO */
.hero {
  height: 320px;
  background: url("https://images.unsplash.com/photo-1526378722484-cc5c5104f6f2")
    center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(30, 0, 60, 0.7);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 14px;
  letter-spacing: 1px;
}

/* CONTENT */
.industries-content {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.industries-content h2 {
  font-size: 26px;
  margin: 40px 0 15px;
}

.industries-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

.industry-reasons {
  margin-left: 20px;
}

.industry-reasons li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* JOIN */
.join-heading {
  margin-top: 50px;
}

/* CARDS SECTION */
.industry-cards-section {
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  ),
  url("https://images.unsplash.com/photo-1519389950473-47ba0277781c")
  center/cover no-repeat;
  padding: 80px 20px;
}

.industry-cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.industry-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
}

.industry-card .icon {
  font-size: 34px;
  margin-bottom: 15px;
  
}

.industry-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.industry-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .industry-cards {
    grid-template-columns: 1fr;
  }

  .hero-overlay h1 {
    font-size: 30px;
  }
}


/* industries page */
/* HERO */
.industries-hero {
  height: 320px;
  background: url("https://www.shutterstock.com/image-photo/concept-ai-analysing-vast-amounts-600nw-2709950601.jpg") center/cover no-repeat;
  position: relative;
}

.industries-hero-overlay {
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.industries-hero-overlay h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.industries-hero-overlay p {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* CONTENT */
.industries-content {
  background: #ffffff;
  padding: 70px 0;
  padding-top: 0px;
  padding-bottom: 10px;
}

.industries-content h2 {
  font-size: 28px;
  margin: 40px 0 15px;
  color: #000;
}

.industries-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  max-width: 900px;
}

/* LIST */
.industry-reasons {
  margin-top: 20px;
  padding-left: 20px;
  max-width: 950px;
}

.industry-reasons li {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 15px;
}


/* JOIN US */
.industries-join {
  margin-top: 80px;
}

/* TEXT */
.join-text {
  text-align: center;
  max-width: 850px;
  margin-bottom: 40px;
}

.join-text h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.join-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* DARK BACKGROUND */
.industries-cards-bg {
  background: url("images/industry-bg.jpg") center/cover no-repeat;
  position: relative;
  padding: 70px 0;
}

.industries-cards-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.industries-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

/* CARDS */
.industry-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
}

.industry-card img {
  height: 48px;
  margin-bottom: 15px;
  height: 190px;
}

.industry-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .industries-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .industries-cards {
    grid-template-columns: 1fr;
  }
}


/* OUR SERVICES */
.industries-services {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ICON WRAPPER FIX */
.service-card img {
  width: 150px;          /* fixed visual size */
  height: 150px;
  object-fit: contain;  /* prevent distortion */
  display: block;
  margin: 0 auto 20px;
}

.service-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* insight page */

.insights-page {
  background: #ffffff;
  padding: 80px 0;
}

.insights-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* MAIN TITLE */
.insight-title {
  font-size: 32px;
  font-weight: 700;
  color: #b400ff;
  margin-bottom: 20px;
}

/* INTRO PARAGRAPH */
.insight-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

/* SUB HEADINGS */
.insight-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #b400ff;
  margin-top: 40px;
  margin-bottom: 12px;
}

/* NORMAL TEXT */
.insight-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}


/* education */

.education-page {
  background: #ffffff;
  color: #111;
}

/* Hero */
.page-hero {
  height: 260px;
  background: linear-gradient(
      rgba(60, 0, 90, 0.7),
      rgba(60, 0, 90, 0.7)
    ),
    url('https://www.galgotiasuniversity.edu.in/public/uploads/media/rFn1JtuAC18CmzoiJpGYeMoBIrJi52QOwt5rVGxt.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  color: #fff;
  font-size: 42px;
  letter-spacing: 1px;
}

/* Content container */
.page-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-container h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.page-container h3 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 10px;
}

.page-container p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* Lists */
.edu-list {
  margin: 15px 0 25px 20px;
}

.edu-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 30px;
  }

  .page-container h2 {
    font-size: 24px;
  }
}


.edu-services-section {
  padding: 80px 20px;
  background: linear-gradient(
      rgba(20, 0, 40, 0.85),
      rgba(20, 0, 40, 0.85)
    ),
    url('https://images.ctfassets.net/qyg0c6wmz8bn/4wTOso9R7MnqFFot4osJPJ/dd1e0af9233d678412b4440a7f37fee1/media-communications-podcast-studio.jpg?w=3840&q=75&fm=webp') center/cover no-repeat;
}

.section-title {
  text-align: center;
  color: #0f172a;
  font-size: 32px;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.edu-services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.edu-service-card {
  background: #5b0aa3;
  color: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.edu-service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.edu-service-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Icon */
.edu-service-card .icon {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 20px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .edu-services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}


.oracle-education {
  padding: 80px 0;
  background: #ffffff;
}

.oracle-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.oracle-content h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

.oracle-block {
  margin-bottom: 30px;
}

.oracle-block h3 {
  color: #6a0dad;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.oracle-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.oracle-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.oracle-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .oracle-container {
    grid-template-columns: 1fr;
  }

  .oracle-image {
    order: -1;
  }
}


.salesforce-education {
  background: #000;
  padding: 90px 0;
  color: #fff;
}

.sf-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.sf-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}

.sf-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.sf-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.sf-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.sf-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.sf-list {
  margin-top: 20px;
  padding-left: 18px;
}

.sf-list li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.sf-list strong {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .sf-grid {
    grid-template-columns: 1fr;
  }

  .sf-title {
    font-size: 26px;
  }
}


.cmt-section {
  background: #ffffff;
  padding: 100px 0;
}

.cmt-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.cmt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.cmt-content h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.cmt-content h2 span {
  color: #5b2be0; /* your purple accent */
}

.cmt-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333;
}

.cmt-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .cmt-grid {
    grid-template-columns: 1fr;
  }

  .cmt-content h2 {
    font-size: 24px;
  }
}


.cmt-problems {
  background: #000000;
  padding: 100px 0;
  color: #ffffff;
}

.cmt-problems-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.cmt-problems-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.cmt-problems-image img {
  max-width: 320px;
  width: 100%;
}

.cmt-problems-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.cmt-problems-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cmt-problems-list > li {
  margin-bottom: 30px;
}

.cmt-problems-list h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cmt-problems-list p {
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #e0e0e0;
}

.cmt-problems-list ul {
  padding-left: 20px;
}

.cmt-problems-list ul li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #cccccc;
}

/* Responsive */
@media (max-width: 992px) {
  .cmt-problems-grid {
    grid-template-columns: 1fr;
  }

  .cmt-problems-image {
    text-align: center;
  }

  .cmt-problems-image img {
    max-width: 260px;
  }
}

.cmt-why-choose {
  background: #ffffff;
  padding: 90px 0;
}

.cmt-why-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.cmt-why-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.cmt-why-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.cmt-why-content ul {
  padding-left: 20px;
  margin: 0;
}

.cmt-why-content li {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #222;
}

.cmt-why-content strong {
  font-weight: 600;
}

.cmt-why-image img {
  max-width: 320px;
  width: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .cmt-why-grid {
    grid-template-columns: 1fr;
  }

  .cmt-why-image {
    text-align: center;
    margin-top: 30px;
  }

  .cmt-why-image img {
    max-width: 260px;
    margin: auto;
  }
}

/* =========================
   GLOBAL MOBILE FIXES
========================= */
@media (max-width: 1024px){
  .container{
    padding: 0 16px;
  }
}

/* =========================
   HEADER / NAV
========================= */
@media (max-width: 860px){
  .header-row{
    height: auto;
    padding: 14px 0;
  }

  .nav-links{
    width: 100%;
  }

  .nav-links a{
    font-size: 14px;
    padding: 8px 0;
  }

  .header-actions{
    margin-left: auto;
  }
}

/* =========================
   HERO SLIDER
========================= */
@media (max-width: 768px){
  .slider,
  .hero-content{
    height: 420px;
  }

  .hero-box{
    padding: 22px;
  }

  .hero-box h1{
    font-size: 26px;
  }

  .hero-sub{
    font-size: 14px;
  }

  .slider-btn{
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

@media (max-width: 480px){
  .slider,
  .hero-content{
    height: 380px;
  }

  .hero-box h1{
    font-size: 22px;
  }
}

/* =========================
   SERVICES
========================= */
@media (max-width: 1024px){
  .services{
	margin-top: 20px;
  }
	
  .services-top{
    flex-direction: column;
    align-items: flex-start;
  }

  .services-top h2{
    max-width: 100%;
	margin-left: 20px;
  }
}

@media (max-width: 600px){
  .service-grid{
    margin-top: 40px;
	
  }

  .service-card{
    min-height: auto;
  }
}

/* =========================
   INDUSTRIES
========================= */
@media (max-width: 1024px){
  .industry-text{
    max-width: 100%;
  }
}

@media (max-width: 768px){
  .industry-bg{
    height: auto;
    padding: 60px 0;
  }

  .industry-inner{
    height: auto;
  }

  .industry-cards-wrap{
    margin-top: 30px;
  }

  .industry-card-grid{
    margin-top: 30px;
  }
}

/* =========================
   LEADERSHIP SECTION
========================= */
@media (max-width: 1024px){
  .team-tabs-container{
    gap: 30px;
  }

  .leaders-grid{
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px){
  .team-tabs-left{
    display: none; /* hides image collage on mobile like reference sites */
  }

  .team-tabs-menu{
    justify-content: flex-start;
  }

  .leaders-grid{
    gap: 20px;
  }
}

@media (max-width: 520px){
  .leader-box{
    width: 100%;
    max-width: 320px;
  }

  .team-title{
    font-size: 30px;
  }
}

/* =========================
   CASE STUDIES
========================= */
@media (max-width: 1024px){
  .case-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .case-grid{
    grid-template-columns: 1fr;
  }

  .case-img{
    height: 220px;
  }
}

/* =========================
   CTA STRIP
========================= */
@media (max-width: 768px){
  .cta-strip{
    padding: 60px 0;
  }

  .cta-box{
    padding: 30px 22px;
  }
}

/* =========================
   PARALLAX CTA
========================= */
@media (max-width: 600px){
  .parallax-content h2{
    font-size: 26px;
  }

  .parallax-content p{
    font-size: 13px;
  }
}

/* =========================
   BLOGS
========================= */
@media (max-width: 768px){
  .blogs-section{
    margin-bottom: 0;
  }

  .blogs-title{
    font-size: 26px;
  }
}

/* =========================
   TESTIMONIALS
========================= */
@media (max-width: 768px){
  .testimonials{
    padding: 60px 0;
  }

  .testimonials-left h2{
    font-size: 26px;
  }
}

/* =========================
   CONTACT
========================= */
@media (max-width: 600px){
  .form-row{
    grid-template-columns: 1fr;
  }

  .contact-image{
    height: 220px;
  }
}

/* =========================
   PARTNERS
========================= */
@media (max-width: 600px){
  .partner-item img{
    height: 48px;
  }
}

/* =========================
   FOOTER
========================= */
@media (max-width: 768px){
  .site-footer{
    padding: 50px 0 20px;
  }

  .footer-brand{
    align-items: flex-start;
  }
}

/* ===== Finance INNER HERO ===== */

.inner-hero{
  position: relative;
  height: 340px;
  background-image: url("https://images.unsplash.com/photo-1559526324-593bc073d938?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.inner-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.inner-hero-content{
  position: relative;
  z-index: 2;
}

.inner-hero h1{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: 1px;
}

.inner-hero p{
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.8;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}


/* ===== BANKING SECTION ===== */

.bfs-section{
  padding: 90px 0;
  background: #ffffff;
}

.bfs-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}

.bfs-section h2{
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.bfs-section h3{
  margin-top: 30px;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.bfs-section p{
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 12px;
  color: #111827;
}

.bfs-section ul{
  margin-top: 10px;
  padding-left: 22px;
}

.bfs-section li{
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 14px;
}

.bfs-image{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15,23,42,0.12);
}

.bfs-image img{
  width: 100%;
  display: block;
}


/* ===== INSURANCE SECTION ===== */

.insurance-section{
  background: linear-gradient(135deg, #1c4ed8, #4c00a8);
  padding: 110px 0;
  color: #ffffff;
}

.insurance-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}

.insurance-section h2{
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
}

.insurance-section p{
  line-height: 1.9;
  font-size: 14px;
  opacity: 0.95;
}

.insurance-image{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}

.insurance-image img{
  width: 100%;
  display: block;
}

/* ===== PROJECTS SECTION ===== */

.projects-section{
  padding: 100px 0;
  background: #ffffff;
}

.projects-section h2{
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.projects-intro{
  max-width: 920px;
  margin-bottom: 60px;
  line-height: 1.9;
  font-size: 14px;
  color: #111827;
}

.projects-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.project-card{
  padding-right: 20px;
}

.project-card h3{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary);
}

.project-card p{
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.project-card ul{
  margin-top: 14px;
  padding-left: 22px;
}

.project-card li{
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.8;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 1024px){

  .bfs-grid,
  .insurance-grid,
  .projects-grid{
    grid-template-columns: 1fr;
  }

  .insurance-section{
    text-align: center;
  }

  .insurance-image{
    margin-top: 30px;
  }

  .projects-grid{
    gap: 40px;
  }

}

@media (max-width: 600px){

  .inner-hero{
    height: 280px;
  }

  .bfs-section,
  .insurance-section,
  .projects-section{
    padding: 70px 0;
  }

  .bfs-section h2,
  .insurance-section h2,
  .projects-section h2{
    font-size: 26px;
  }

  .project-card{
    padding-right: 0;
  }

}


/* sap page */

/* =========================
   SAP PAGE STYLES
========================= */

/* HERO */
.sap-hero{
  position: relative;
  height: 320px;
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sap-hero .hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sap-hero h1{
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

/* INTRO */
.sap-intro{
  padding: 90px 0;
}

.sap-intro-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.sap-intro-text h2{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.sap-intro-text p{
  line-height: 1.9;
  font-size: 14px;
  margin-bottom: 14px;
}

.sap-intro-image img{
  width: 100%;
  border-radius: 16px;
}

/* SERVICES */
.sap-services{
  background: #f5f8fc;
  padding: 100px 0;
}

.sap-section-title{
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
}

.sap-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sap-card{
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.sap-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.sap-card h3{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sap-card p{
  font-size: 14px;
  line-height: 1.7;
}

/* WHY SECTION */
.sap-why{
  padding: 100px 0;
}

.sap-why-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sap-why h2{
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.sap-why ul{
  padding-left: 20px;
}

.sap-why li{
  margin-bottom: 12px;
  font-size: 14px;
}

.sap-why-image img{
  width: 100%;
  border-radius: 16px;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .sap-intro-grid,
  .sap-why-grid{
    grid-template-columns: 1fr;
  }

  .sap-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .sap-grid{
    grid-template-columns: 1fr;
  }

  .sap-hero{
    height: 260px;
  }
}


/* =========================
   SAP HERO
========================= */

.sap-hero{
  background: url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.sap-hero .hero-overlay{
  background: rgba(0,0,0,0.6);
  padding: 120px 0;
  text-align:center;
}

.sap-hero h1{
  color:#fff;
  font-size:42px;
  font-weight:800;
  letter-spacing:1px;
}


/* =========================
   SAP INTRO
========================= */

.sap-intro{
  padding:80px 0;
  text-align:center;
}

.sap-intro h2{
  font-size:34px;
  margin-bottom:20px;
  font-weight:800;
}

.sap-intro p{
  max-width:900px;
  margin:0 auto 16px;
  font-size:16px;
  line-height:1.7;
  color:#444;
}


/* =========================
   SAP CAPABILITIES
========================= */

.sap-capabilities{
  padding:80px 0;
  background:#f7f9fc;
}

.sap-capabilities .section-title{
  text-align:center;
  font-size:32px;
  font-weight:800;
  margin-bottom:50px;
}


/* GRID */

.sap-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}


/* CARD */

.sap-card{
  background:#fff;
  padding:30px 26px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:all .25s ease;
  border:1px solid rgba(0,0,0,0.04);
}

.sap-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 35px rgba(0,0,0,0.12);
}


/* CARD TEXT */

.sap-card h3{
  font-size:20px;
  margin-bottom:12px;
  color:#1c4ed8;
  font-weight:800;
}

.sap-card p{
  font-size:14px;
  line-height:1.6;
  color:#555;
  margin-bottom:14px;
}

.sap-card ul{
  padding-left:18px;
}

.sap-card li{
  font-size:14px;
  margin-bottom:6px;
  color:#333;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .sap-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  .sap-grid{
    grid-template-columns:1fr;
  }

  .sap-intro h2{
    font-size:26px;
  }

  .sap-hero h1{
    font-size:30px;
  }

}
