@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #af110e;
  --primary-hover: #910e0c;
  --primary-light: rgba(175, 17, 14, 0.08);
  --secondary: #111b51;
  --secondary-dark: #090f30;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f5f4f6;
  --bg-white: #ffffff;
  --border-color: #efefef;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.16);
  --border-radius: 8px;
}

/* Global Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.375rem);
  letter-spacing: 1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.5px;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}

.container-mini {
  max-width: 1200px;
}

.sec {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

/* Color Helpers */
.text-white {
  color: var(--text-white);
}

.text-primary {
  color: var(--primary);
}

.bg-white {
  background-color: var(--bg-white);
}

.bg-secondary {
  background-color: var(--secondary);
}

/* Button System */
.btn-1, .btn-1-light, .btn-2, .btn-1-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-1 {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--text-white);
  padding: 14px 28px;
  font-size: 1.125rem;
}

.btn-1:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(175, 17, 14, 0.2);
}

.btn-1-light {
  background-color: #efefef;
  border: 1px solid #efefef;
  color: var(--primary);
  padding: 14px 28px;
  font-size: 1.125rem;
}

.btn-1-light:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(175, 17, 14, 0.2);
}

.btn-1-small {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--text-white);
  padding: 8px 18px;
  font-size: 0.95rem;
}

.btn-1-small:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-2 {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  font-size: 0.95rem;
}

.btn-2:hover {
  background-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.white-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-white);
  color: var(--text-dark);
  font-weight: 600;
  padding: 8px 20px;
  font-size: 0.95rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.white-btn:hover {
  background-color: transparent;
  border-color: var(--bg-white);
  color: var(--text-white);
}

/* Header & Navigation */
.header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  height: 120px;
  display: flex;
  align-items: center;
}

.header.sticky {
  height: 90px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.header-in {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
}

.header.sticky .logo-text {
  color: var(--text-dark);
}

.header-phone {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.header.sticky .header-phone {
  color: var(--text-dark);
}

/* Banner / Hero Section */
.banner-sec {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  padding-top: 180px;
  padding-bottom: 240px;
  overflow: hidden;
  position: relative;
}

/* Floating Elements (Background Animations) */
.an-e {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
  transition: var(--transition);
}

.an-e1 {
  top: 10%;
  left: -10%;
  width: 500px;
  animation: float 25s infinite linear;
}

.an-e2 {
  bottom: -10%;
  right: -5%;
  width: 600px;
  animation: float-reverse 30s infinite linear;
}

.an-e3 {
  top: 40%;
  right: 15%;
  width: 300px;
  animation: float 18s infinite linear;
}

.an-e4 {
  top: 5%;
  right: -10%;
  width: 450px;
  animation: float-reverse 22s infinite linear;
}

@keyframes float {
  0% { transform: rotate(0deg) translate(0, 0); }
  50% { transform: rotate(180deg) translate(20px, 30px); }
  100% { transform: rotate(360deg) translate(0, 0); }
}

@keyframes float-reverse {
  0% { transform: rotate(360deg) translate(0, 0); }
  50% { transform: rotate(180deg) translate(-30px, -20px); }
  100% { transform: rotate(0deg) translate(0, 0); }
}

/* Hero Content Box */
.think-big-sec {
  margin-top: -120px;
  padding: 0;
  position: relative;
  z-index: 10;
}

.think-big-in {
  display: flex;
  align-items: stretch;
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.tb-left {
  width: 50%;
  overflow: hidden;
  position: relative;
}

.tb-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.think-big-in:hover .tb-left img {
  transform: scale(1.05);
}

.tb-right {
  width: 50%;
  padding: 60px 50px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tb-right h1 {
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 24px;
}

.tb-right p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 30px;
}

.tb-right .btn-1 {
  align-self: flex-start;
}

/* Info Section */
.ai-info-sec {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ai-info-in {
  background-color: var(--bg-white);
  padding: 60px 80px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.ai-info-in h2 {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 24px;
}

.ai-info-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.ai-info-text p:last-child {
  margin-bottom: 0;
}

.ci-service-in {
  margin-top: 40px;
}

.list-box-main {
  display: flex;
  gap: 30px;
}

.list-box-main li {
  flex: 1;
}

.list-box-1 {
  background-color: var(--bg-white);
  padding: 50px 40px;
  height: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.list-box-1:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.lb-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.lb-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.list-box-1 h3 {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 16px;
}

.list-box-1 p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 15px;
}

.list-box-1 p:last-child {
  margin-bottom: 0;
}

/* Portfolio Section */
.ais-sec {
  background-color: var(--bg-white);
  padding-bottom: 140px;
}

.ais-sec h2 {
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 40px;
}

.portfolio-slider-container {
  position: relative;
  overflow: hidden;
}

.info1-car-box {
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.info1-car-box img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
  object-fit: cover;
  height: 220px;
}

.info1-car-box .txt-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.info1-car-box .or-bottom {
  margin-top: auto;
}

.info1-car-box .btn-2 {
  width: 100%;
}

.portfolio-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* One-stop Helpdesk Section */
.tad-sec {
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}

.tad-sec h2 {
  color: var(--text-white);
  font-weight: 800;
  margin-bottom: 50px;
}

.bcolor-list-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.bcl-box {
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  height: 100%;
}

.bcl-box:hover {
  background-color: var(--primary);
}

.bcl-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  position: relative;
}

.bcl-icon-n, .bcl-icon-h {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.bcl-icon-h {
  opacity: 0;
}

.bcl-box:hover .bcl-icon-n {
  opacity: 0;
}

.bcl-box:hover .bcl-icon-h {
  opacity: 1;
}

.bcl-box h3 {
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 15px;
}

.bcl-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Industries Served Section */
.si-sec {
  padding-top: 80px;
  padding-bottom: 80px;
}

.si-sec h2 {
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 40px;
}

.list-box-2-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.list-box-2 {
  background-color: var(--bg-white);
  padding: 30px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.list-box-2:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.list-box-2 .lb-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  position: relative;
}

.lb-icon-n, .lb-icon-h {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.lb-icon-h {
  opacity: 0;
}

.list-box-2:hover .lb-icon-n {
  opacity: 0;
}

.list-box-2:hover .lb-icon-h {
  opacity: 1;
}

.list-box-2 h4 {
  color: var(--secondary);
  font-weight: 600;
  transition: var(--transition);
}

.list-box-2:hover h4 {
  color: var(--text-white);
}

/* Case Studies Section */
.case-study-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--bg-white);
}

.case-study-sec h2 {
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 40px;
}

.case-study-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.cs-left {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 520px;
}

.cs-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-txt-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  padding: 40px;
  color: var(--text-white);
  border-top: 3px solid var(--primary);
}

.cs-txt-1 span {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.cs-txt-1 p {
  color: var(--text-white);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cs-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cs-right-top, .cs-right-bottom {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 245px;
}

.cs-right-bottom {
  grid-template-columns: 1.2fr 1fr;
}

.cs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-txt-2, .cs-txt-3 {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-txt-3 {
  background-color: var(--primary);
  color: var(--text-white);
}

.cs-txt-2 span, .cs-txt-3 span {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.cs-txt-2 span {
  color: var(--primary);
}

.cs-txt-3 span {
  color: rgba(255, 255, 255, 0.7);
}

.cs-txt-2 p {
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cs-txt-3 p {
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Client Testimonials Section */
.c-success-sec {
  padding-top: 80px;
  padding-bottom: 80px;
}

.c-success-sec h2 {
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.t-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.t-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-sm);
}

.t-info h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 2px;
}

.t-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.t-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  opacity: 0.25;
  margin-top: -10px;
}

.t-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Coffee Break (Blog) Section */
.coffee-sec {
  background-color: var(--bg-white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.coffee-sec h2 {
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 40px;
}

.blog-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-3px);
}

.blog-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.blog-content h3 {
  font-size: 1.15rem;
  color: var(--secondary);
  line-height: 1.4;
  margin-bottom: 15px;
}

.blog-content h3 a:hover {
  color: var(--primary);
}

.blog-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.blog-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-read-more {
  width: 36px;
  height: 36px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--secondary);
  align-self: flex-start;
  transition: var(--transition);
}

.blog-card:hover .blog-read-more {
  background-color: var(--primary);
  color: var(--text-white);
}

/* Technical Expertise & Clients */
.teoc-sec {
  padding-top: 80px;
  padding-bottom: 80px;
}

.teoc-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.te-sec, .oc-sec {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.te-sec h3, .oc-sec h3 {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 30px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.logo-grid li {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px;
  transition: var(--transition);
}

.logo-grid li:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}

.tech-badge {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  text-align: center;
}

.logo-grid li:hover .tech-badge {
  color: var(--primary);
}

/* Footer Section */
.footer {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.footer-contact li .footer-contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  transition: var(--transition);
}

.footer-contact li .footer-contact-box:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
}

.footer-contact img {
  width: 32px;
  height: 32px;
}

.fc-right span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 50px;
  border-top: 1px solid var(--border-color);
}

.fm-col h3 {
  font-size: 1.15rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.fm-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-logo {
  display: block;
  max-width: 120px;
  margin-bottom: 25px;
}

.great-place {
  margin-top: 30px;
}

.great-place p {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.great-place img {
  max-width: 180px;
}

.fm-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fm-col li a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.fm-col li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.sw-sec {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sw-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-list li:first-child {
  font-weight: 600;
  font-size: 0.9rem;
}

.sw-list img {
  width: 30px;
  height: 30px;
  transition: var(--transition);
}

.sw-list a:hover img {
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  background-color: var(--bg-light);
}

.footer-bottom-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.fb-sec-list {
  display: flex;
  gap: 20px;
}

.fb-sec-list li a {
  font-size: 0.85rem;
  color: var(--text-light);
}

.fb-sec-list li a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Custom Swiper Bullet Styling */
.swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .think-big-in {
    flex-direction: column;
  }
  .tb-left, .tb-right {
    width: 100%;
  }
  .tb-left {
    height: 350px;
  }
  .tb-right {
    padding: 40px;
  }
  .list-box-main {
    flex-direction: column;
  }
  .list-box-2-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-study-main {
    grid-template-columns: 1fr;
  }
  .teoc-in {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .header {
    height: 90px;
  }
  .mail-tel {
    display: none;
  }
  .banner-sec {
    padding-top: 130px;
    padding-bottom: 180px;
  }
  .ai-info-in {
    padding: 30px;
  }
  .bcolor-list-3 {
    grid-template-columns: 1fr;
  }
  .list-box-2-main {
    grid-template-columns: 1fr;
  }
  .cs-right-top, .cs-right-bottom {
    grid-template-columns: 1fr;
    height: auto;
  }
  .cs-img {
    height: 200px;
  }
  .cs-txt-2, .cs-txt-3 {
    padding: 25px;
  }
  .footer-contact {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom-in {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .fb-sec-list {
    justify-content: center;
  }
}
