.hero-section{
    background:#dff4ff;
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

.hero-badge{
    font-size:13px;
    font-weight:600;
    color:#5b6bff;
}

.hero-title{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    margin:20px 0;
}

.hero-text{
    color:#5f6c7b;
    font-size:16px;
    max-width:500px;
}

.hero-btn{
    background:#4c6ef5;
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    font-weight:600;
    margin-top:20px;
}

/* =========================
   MOBILE RESPONSIVE HERO
========================= */

@media (max-width: 992px) {

  .hero-section {
    padding: 60px 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-text {
    font-size: 15px;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-btn {
    display: inline-block;
    margin-top: 25px;
  }

}

@media (max-width: 576px) {

  .hero-section {
    padding: 50px 15px;
  }

  .hero-badge {
    font-size: 12px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;
    padding: 16px;
    font-size: 15px;
  }

}


/* second section */


.expert-section {
    padding: 80px 0;
    background: #f7f9fc;
    text-align: center;
}

.top-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-badge {
    background: linear-gradient(45deg,#6c5ce7,#4c6ef5);
    color: #fff;
    font-weight: 700;
    padding: 20px;
    border-radius: 10px;
    font-size: 22px;
}

.highlight-text {
    max-width: 600px;
    text-align: left;
    color: #555;
}

.logo-slider {
    overflow: hidden;
    margin: 40px 0;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scrollLeft 25s linear infinite;
}

.logo-track img {
    height: 40px;
    width: auto;
    opacity: 0.7;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 10px auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #666;
}

.service-card a {
    font-size: 16px;
    font-weight: 600;
    color: #4c6ef5;
    text-decoration: none;
}


/* =========================
   RESPONSIVE EXPERT SECTION
========================= */

@media (max-width: 992px) {

  .expert-section {
    padding: 60px 20px;
  }

  .top-highlight {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .highlight-text {
    text-align: center;
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

}

@media (max-width: 576px) {

  .expert-section {
    padding: 50px 15px;
  }

  .logo-track {
    gap: 30px;
  }

  .logo-track img {
    height: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px;
  }

  .service-card h4 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

}

/* third section */




.ai-section{padding:80px 0;text-align:center;}

.container{margin:auto;padding:50px;border-radius:15px;}

.subtitle{color:#666;margin-bottom:30px;}

.tabs{display:flex;justify-content:center;gap:20px;margin-bottom:30px;border-bottom:1px solid #ddd;padding-bottom:10px;}

.tab{background:none;border:none;font-weight:600;padding:10px 15px;cursor:pointer;}



.tab-content{display:none;}
.tab-content.active{display:block;}

.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}

.card{background:#fff;padding:25px;border-radius:10px;text-align:left;border:1px solid #eee;}

.card h4{margin-bottom:10px;}

.card p{color:#666;font-size:16px;}

.card a{color:#3b5bdb;font-weight:600;text-decoration:none;font-size:16px;}

.bottom-cta{margin-top:50px;text-align:center;}

.bottom-cta button{background:#2d7eff;color:#fff;border:none;padding:12px 20px;border-radius:5px;cursor:pointer;}

/* =========================
   RESPONSIVE AI TABS SECTION
========================= */

@media (max-width: 992px) {

  .ai-section {
    padding: 60px 20px;
  }

  .container {
    padding: 30px;
  }

  .tabs {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tab {
    font-size: 16px;
    padding: 8px 12px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card {
    padding: 20px;
  }

}

@media (max-width: 576px) {

  .ai-section {
    padding: 50px 15px;
  }

  .container {
    padding: 20px;
  }

  .tabs {
    flex-direction: column;
    align-items: center;
    border-bottom: none;
  }

  .tab {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .tab.active {
    border-bottom: 2px solid #3b5bdb;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card h4 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }

  .bottom-cta button {
    width: 100%;
    padding: 16px;
  }

}


/* fourth section */
.industry-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header Row */
.industry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.industry-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.industry-btn {
  background: #2d7eff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.industry-btn:hover {
  background: #1c5ed6;
}

/* Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.industry-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.industry-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.card-content a {
  font-size: 16px;
  font-weight: 600;
  color: #2d7eff;
  text-decoration: none;
}

.card-content a:hover {
  text-decoration: underline;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 992px) {

  .industry-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 576px) {

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-header h2 {
    font-size: 22px;
  }

  .industry-btn {
    width: 100%;
    text-align: center;
  }

}


/* fouerth section */

.case-study-section {
  background: #dff4ff;
  padding: 50px 0;
}

.section-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}

.case-slider {
  position: relative;
  overflow: hidden;
}

.case-slide {
  display: none;
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.case-slide.active {
  display: flex;
}

.case-content {
  width: 50%;
}

.case-content .tag {
  font-size: 13px;
  color: #777;
}

.case-content h3 {
  margin: 15px 0;
  font-size: 24px;
}

.label {
  font-weight: 600;
  color: #2962ff;
  margin-top: 15px;
}

.stats {
  display: flex;
  gap: 40px;
  margin: 25px 0;
}

.stats h4 {
  color: #2962ff;
  font-size: 24px;
  margin: 0;
}

.case-btn {
  display: inline-block;
  background: #2962ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
}

.case-image {
  width: 50%;
  text-align: center;
}

.case-image img {
  max-width: 100%;
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2c3e50;
  color: #fff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: -20px; }
.next { right: -20px; }

/* Dots */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dots span {
  height: 8px;
  width: 30px;
  background: #ccc;
  display: inline-block;
  margin: 0 4px;
  border-radius: 4px;
  cursor: pointer;
}

.dots span.active {
  background: #2962ff;
}

/* Responsive */
@media (max-width: 992px) {
  .case-slide {
    flex-direction: column;
  }
  .case-content, .case-image {
    width: 100%;
  }
}


/* foive section */
/* Common */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

h2 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #777;
  font-size: 16px;
  margin-bottom: 40px;
}

/* WHY BRANDS SECTION */
.why-brands {
  padding: 70px 0 40px;
  background: #f9f9f9;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.brand-box {
  border: 1px solid #ddd;
  padding: 22px;
  text-align: center;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.brand-box:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


/* TECHNOLOGY SECTION */
.tech-section {
  padding: 40px 0 70px;
  background: #fff;
}

.tech-tabs {
  text-align: center;
  margin-top: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.tech-tabs span {
  margin: 0 12px;
  font-size: 16px;
  cursor: pointer;
  color: #333;
  padding-bottom: 6px;
}

.tech-tabs span.active {
  color: #2962ff;
  border-bottom: 2px solid #2962ff;
}

.tech-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}

.tech-buttons div {
  border: 1px solid #ddd;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  background: #fff;
}


/* Responsive */
@media (max-width: 992px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .tech-tabs {
    overflow-x: auto;
    white-space: nowrap;
  }
}




/* ===== COMMON ===== */


.why-tech-section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

h2 {
  text-align: left;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #1f2937;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
}

.tab {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  padding: 6px 2px;
  position: relative;
  transition: 0.3s;
}

.tab:hover {
  color: #4f46e5;
}

.tab.active {
  color: #4f46e5;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #4f46e5;
}

/* ===== TAB CONTENT ===== */
.tab-content {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
}

.tab-content.active {
  display: flex;
}

/* ===== TECH BOX ===== */
.tech-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  padding: 12px 22px;
  border-radius: 8px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: 0.3s ease;
}

.tech-box:hover {
  border-color: #4f46e5;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.08);
}

.tech-box i {
  width: 18px;
  height: 18px;
  color: #4f46e5;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 22px;
  }

  .tech-box {
    padding: 10px 16px;
    font-size: 12px;
  }
}


.brand-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:20px;
}

.brand-box{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:18px 20px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    font-weight:500;
    transition:0.3s;
}

.brand-box:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.brand-icon{
    width:42px;
    height:42px;
    background:linear-gradient(135deg,#7c5cff,#4c2fff);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.brand-icon i{
    color:#fff;
    font-size:16px;
}



/* six section */
/* ===== SECTION BACKGROUND ===== */
.trust-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0c0f5a, #0a1b6e);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
}

/* ===== TITLE ===== */
.trust-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
  color: white;
}

/* ===== WRAPPER ===== */
.trust-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ===== LOGOS GRID ===== */
.trust-logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.logo-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
}

.logo-box img {
  max-width: 100%;
  height: 40px;
  object-fit: contain;
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  flex: 1;
  background: #ffffff;
  color: #111827;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.quote-icon {
  font-size: 90px !important;
  color: #000051;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* USER */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  margin: 0;
  font-size: 16px;
}

.testimonial-user span {
  font-size: 12px;
  color: #6b7280;
}

/* DOTS */
.dots {
  margin-top: 25px;
}

.dots span {
  display: inline-block;
  width: 22px;
  height: 4px;
  background: #d1d5db;
  margin-right: 6px;
  border-radius: 3px;
}

.dots span.active {
  background: #4f46e5;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 992px){
  .trust-wrapper {
    flex-direction: column;
  }

  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    margin-top: 30px;
  }
}


/* 7 section */

.life-section {
  padding: 90px 0;
  
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.life-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.life-content {
  flex: 1;
}

.life-tag {
  color: #5b6cff;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 15px;
}

.life-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}

.life-desc {
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.6;
}

.life-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.life-points li {
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
}

.life-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.life-btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.life-btn:hover {
  background: #1d4ed8;
}

/* RIGHT SINGLE IMAGE */
.life-image {
  flex: 1;
}

.life-image img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .life-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .life-content h2 {
    font-size: 28px;
  }

  .life-image {
    margin-top: 40px;
  }
}

.people{
  text-align: justify !important;
}






  .insights-section{
    padding:70px 20px;
    background:#f7f7f7;
    text-align:center;
}

.insights-section h2{
    font-size:28px;
    margin-bottom:40px;
    font-weight:600;
}

.insights-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.insight-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #e5e5e5;
    transition:0.3s;
}

.insight-card:hover{
    transform:translateY(-5px);
}

.insight-img img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.insight-content{
    padding:20px;
    text-align:left;
}

.insight-content p{
    font-size:16px;
    color:#333;
    margin-bottom:15px;
}

.insight-content a{
    color:#0066ff;
    font-size:16px;
    text-decoration:none;
    font-weight:500;
}

/* Mobile Responsive */

@media(max-width:992px){

.insights-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.insights-grid{
grid-template-columns:1fr;
}

.insight-img img{
height:180px;
}

}

.cta-section{
    background:#dff4ff;
    padding:60px 20px;
    text-align:center;
}

.cta-container{
    max-width:900px;
    margin:auto;
}

.cta-section h2{
    font-size:26px;
    font-weight:600;
    color:#1b1b1b;
    margin-bottom:10px;
}

.cta-section p{
    font-size:16px;
    color:#555;
    margin-bottom:25px;
}

.cta-btn{
    background:#2d6cdf;
    color:#fff;
    padding:10px 22px;
    border-radius:4px;
    font-size:13px;
    text-decoration:none;
    display:inline-block;
    transition:0.3s;
}

.cta-btn:hover{
    background:#1f54b6;
}

@media(max-width:600px){

.cta-section{
padding:50px 15px;
}

.cta-section h2{
font-size:20px;
}

}



.hero-modern{
background:#dff4ffcc;
padding:90px 20px;
text-align:center;

}

.hero-container{
max-width:950px;
margin:auto;
}

.hero-tag{
color:#4a61ff;
font-size:16px;
font-weight:600;
margin-bottom:15px;
}

.hero-modern h1{
font-size:36px;
font-weight:600;
line-height:1.4;
color:#222;
margin-bottom:20px;
}

.hero-desc{
font-size:16px;
color:#555;
max-width:720px;
margin:auto;
margin-bottom:30px;
line-height:1.7;
}

.hero-btn{
background:#2d6cdf;
color:#fff;
padding:12px 26px;
border-radius:4px;
font-size:16px;
text-decoration:none;
display:inline-block;
transition:0.3s;
}

.hero-btn:hover{
background:#1f54b6;
}

@media(max-width:768px){

.hero-modern{
padding:70px 20px;
}

.hero-modern h1{
font-size:26px;
}

.hero-desc{
font-size:16px;
}

}




.tech-section{
padding:80px 20px;

}

.tech-container{
max-width:1100px;
margin:auto;
}

.tech-section h2{
font-size:32px;
margin-bottom:40px;
}

.tech-grid{
display:grid;
grid-template-columns:350px 1fr;
gap:40px;
}

.tech-tabs{
border-right:1px solid #eee;
}

.tab{
padding:18px 0;
font-size:16px;
cursor:pointer;
border-bottom:1px solid #eee;
color:#333;
}

.tab.active{
color:#5a3df0;

font-weight:600;
}

.tech-content{
background:#eef3fb;
padding:35px;
border-radius:20px;
}

.content{
display:none;
font-size:15px;
line-height:1.7;
color:#444;
}

.content.active{
display:block;
}



@media(max-width:900px){

.tech-grid{
grid-template-columns:1fr;
}

.tech-tabs{
border-right:none;
margin-bottom:20px;
}

}



.expertise-section{
padding:80px 20px;
background:#dff4ffcc;
font-family:Arial, sans-serif;
}

.container{
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
font-size:32px;
font-weight:600;
margin-bottom:50px;
color:#222;
}

.expertise-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.expertise-card{
background:#fff;
border:1px solid #e5e5e5;
border-radius:10px;
padding:25px;
display:flex;
align-items: anchor-center;
gap:15px;
transition:0.3s;
}

.expertise-card:hover{
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transform:translateY(-3px);
}

.icon{
width:45px;
height:45px;
background:#e8f8f6;
color:#19b5a5;
display:flex;
align-items:center;
justify-content:center;
border-radius:8px;
font-size:20px;
flex-shrink:0;
}

.expertise-card h3{
font-size:18px;
margin:0 0 6px;
color:#222;
}

.expertise-card p{
font-size:14px;
color:#666;
margin:0;
}

/* Tablet */
@media (max-width:992px){
.expertise-grid{
grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */
@media (max-width:600px){
.section-title{
font-size:24px;
}

.expertise-grid{
grid-template-columns:1fr;
}

.expertise-card{
padding:20px;
}
}


.section{
display:flex;
align-items:center;
gap:50px;
padding:80px 10%;
}

.section:nth-child(even){
background:#f5f9f9;
}

.section img{
width:100%;
border-radius:10px;
}

.section-image{
flex:1;
}

.section-content{
flex:1;
}

.section-content h2{
font-size:34px;
margin-bottom:15px;
color:#0a3d3d;
}

.section-content p{
font-size:17px;
line-height:1.7;
color:#555;
}

/* Reverse layout */

.reverse{
flex-direction:row-reverse;
}

/* Mobile */

@media(max-width:768px){

.section{
flex-direction:column;
text-align:center;
padding:50px 20px;
}

.reverse{
flex-direction:column;
}

}



.about-section{
background:#f1f5f9;
padding:80px 20px;
text-align:center;

}

.about-container{
max-width:1100px;
margin:auto;
}

.about-title{
font-size:45px;
color:#2c6cff;
margin-bottom:10px;
}

.about-text{
max-width:700px;
margin:auto;
color:#555;
line-height:1.6;
margin-bottom:40px;
}

.about-images{
display:flex;
gap:20px;
justify-content:center;
margin-bottom:40px;
flex-wrap:wrap;
}

.about-images img{
width: 100%;
}

.about-stats{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
border-top:1px solid #ddd;
padding-top:30px;
}

.stat{
flex:1;
min-width:150px;
padding:10px;
}

.stat h3{
color:#6c63ff;
font-size:26px;
margin-bottom:5px;
}

.stat p{
font-size:14px;
color:#666;
line-height:1.4;
}

/* Mobile */

@media(max-width:768px){

.about-images img{
width:100%;
}

.about-stats{
gap:20px;
}

.stat{
flex:45%;
}

}




.about-info{
padding:80px 20px;
background:#ffffff;
font-family:Arial, sans-serif;
}

.about-info-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
}

.about-text{
flex:1;
color:#333;
font-size:16px;
line-height:1.8;
}

.about-text span{
color:#2f6fed;
font-weight:600;
}

.about-text p{
margin-bottom:25px;
}

.about-image{
flex:1;
}

.about-image img{
width:80%;
border-radius:25px;
display:block;
}

/* Tablet */

@media(max-width:992px){

.about-info-container{
gap:40px;
}

}

/* Mobile */

@media(max-width:768px){

.about-info-container{
flex-direction:column;
text-align:left;
}

.about-image{
margin-top:20px;
}

.about-text{
font-size:15px;
}

}



.league-section{

padding:80px 20px;

}

.container{
max-width:1100px;
margin:auto;
}

.league-title{
text-align:center;
font-size:28px;
margin-bottom:50px;
color:#222;
}

.league-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.league-card{
background:#fff;
border:1px solid #e5e5e5;
border-radius:8px;
padding:25px;
transition:0.3s;
}

.league-card h3{
font-size:16px;
margin-bottom:12px;
color:#222;
}

.league-card p{
font-size:14px;
color:#555;
line-height:1.6;
}

.league-btn-wrap{
text-align:center;
margin-top:40px;
}

.league-btn{
background:#2f6fed;
color:#fff;
padding:12px 22px;
border-radius:4px;
text-decoration:none;
font-size:14px;
display:inline-block;
}

/* Tablet */

@media (max-width:992px){

.league-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media (max-width:600px){

.league-grid{
grid-template-columns:1fr;
}

.league-title{
font-size:22px;
}

}



.faq-section{
background:#dff4ffcc;
padding:80px 20px;

}

.faq-container{
max-width:1100px;
margin:auto;
}

.faq-title{
text-align:center;
font-size:28px;
margin-bottom:40px;
}

.faq-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.faq-item{
background:#fff;
border:1px solid #e4e4e4;
border-radius:6px;
overflow:hidden;
}

.faq-question{
width:100%;
background:#fff;
border:none;
padding:18px 20px;
font-size:18px;
text-align:left;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
}

.faq-question span{
font-size:18px;
}

.faq-answer{
display:none;
padding:0 20px 18px;
font-size:14px;
color:#555;
}

/* Mobile */

@media(max-width:768px){

.faq-grid{
grid-template-columns:1fr;
}

.faq-title{
font-size:22px;
}

}

.faq-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
align-items:start; /* important */
}

.faq-answer{
display:none;
padding:0 20px 18px;
font-size:14px;
color:#555;
}

.faq-answer.show{
display:block;
}


.contact-section{
padding:80px 20px;
background:#f7f9fc;

}

.contact-container{
max-width:1200px;
margin:auto;
}

/* TOP BOXES */

.contact-boxes{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-bottom:60px;
}

.contact-box{
background:#fff;
padding:35px;
text-align:center;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-box:hover{
transform:translateY(-5px);
}

.contact-box i{
font-size:28px;
color:#0d6efd;
margin-bottom:15px;
}

.contact-box h3{
margin-bottom:8px;
font-size:20px;
}

/* MAIN CONTACT AREA */

.contact-main{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.contact-content h2{
font-size:36px;
margin-bottom:20px;
}

.contact-content p{
margin-bottom:15px;
line-height:1.7;
color:#555;
}

/* FORM */

.contact-form form{
background:#fff;
padding:35px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:5px;
font-size:14px;
}

.contact-form textarea{
height:120px;
resize:none;
}

.contact-form button{
background:#0d6efd;
color:#fff;
border:none;
padding:12px 25px;
font-size:16px;
border-radius:5px;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#084ec1;
}

/* MOBILE RESPONSIVE */

@media(max-width:900px){

.contact-boxes{
grid-template-columns:1fr;
}

.contact-main{
grid-template-columns:1fr;
}

.contact-content h2{
font-size:28px;
}

}







.footer{
background:#ffffff;
padding:60px 80px 30px;
}

.footer-top{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
margin-bottom:40px;
}

.footer-left{
max-width:450px;
}

.footer-left img{
width:90px;
margin-bottom:20px;
}

.footer-left p{
font-size:14px;
line-height:1.6;
color:#555;
margin-bottom:20px;
}

.talk-btn{
background:#2d6cdf;
color:#fff;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
display:inline-block;
font-size:14px;
}

.locations{
display:flex;
gap:40px;
}

.location h4{
font-size:14px;
margin-bottom:8px;
}

.location p{
font-size:13px;
color:#555;
line-height:1.5;
}

.footer-bottom{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
border-top:1px solid #ddd;
padding-top:30px;
}

.footer-col h4{
font-size:14px;
margin-bottom:15px;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
font-size:16px;
color:#555;
}

.footer-col ul li a{
text-decoration:none;
color:#555;
}

.footer-col ul li a:hover{
color:#2d6cdf;
}
.footer-bottom{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
border-top:0px solid #ddd;
padding-top:30px;
}

.footer-col{
padding-right:25px;
border-right:1px solid #ddd;
}

.footer-col:last-child{
border-right:none;
}

/* Mobile */

@media(max-width:900px){

.footer{
padding:40px 25px;
}

.footer-top{
flex-direction:column;
gap:30px;
}

.locations{
flex-direction:column;
gap:20px;
}

.footer-bottom{
grid-template-columns:repeat(2,1fr);
gap:25px;
}

}

@media(max-width:500px){

.footer-bottom{
grid-template-columns:1fr;
}

}

.footer-copyright{
border-top:1px solid #ddd;
margin-top:30px;
padding-top:20px;
text-align:center;
font-size:13px;
color:#777;
}
.center{

    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #1f2937;
}
