@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================
   GLOBAL MOBILE SAFETY FIX
========================================== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Roboto", Arial, sans-serif;
  background: #ffffff;
}

/* ==========================================
   HERO SLIDER
========================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: min(36vw, 650px);
  min-height: 400px;
  overflow: hidden;
  background: #06162f;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slide img {
  object-fit: cover;
  object-position: center;
}

/* ==========================================
   HERO SLIDER ARROWS
========================================== */
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #1671c5;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
  color: #08275a;
  background: #ffca05;
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 34px;
}

.hero-next {
  right: 34px;
}

/* ==========================================
   HERO SLIDER DOTS
========================================== */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 30px;
  background: #ffca05;
  border-radius: 20px;
}

/* ==========================================
   WELCOME SECTION
========================================== */
.home-intro {
  padding: 40px 0; /* Reduced padding */
  background: #ffffff;
}

.home-container {
  width: min(1480px, calc(100% - 110px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 0 auto;
}

.intro-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #06162f;
}

.intro-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.intro-content {
  padding-right: 10px;
}

.intro-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #156dbd;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.intro-content h1 {
  max-width: 620px;
  margin-bottom: 15px;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}

.intro-content p {
  max-width: 660px;
  margin-bottom: 20px;
  color: #5a6475;
  font-size: 16px;
  line-height: 25px;
}

.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  color: #08275a;
  background: #ffca05;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.intro-btn:hover {
  background: #ffd633;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.stats-container {
  width: min(1480px, calc(100% - 110px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px auto 0;
}

.stat-card {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  color: #ffffff;
  background: #042e4a;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 13px 24px rgba(0, 32, 59, 0.2);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 700;
  line-height: 1;
}

.stat-card span {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1300px) {
  .home-container,
  .stats-container { width: min(1320px, calc(100% - 70px)); }
  .home-container { gap: 40px; }
  .intro-image { height: 340px; }
}

@media (max-width: 900px) {
  .hero-slider { height: 52vw; min-height: 350px; }
  .hero-arrow { width: 54px; height: 54px; font-size: 16px; }
  .hero-prev { left: 18px; }
  .hero-next { right: 18px; }
  .home-intro { padding: 35px 0; }
  .home-container { width: min(100% - 50px, 900px); grid-template-columns: 1fr; gap: 30px; }
  .intro-image { height: 350px; }
  .intro-content { padding-right: 0; }
  .stats-container { width: min(100% - 50px, 900px); grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 35px; }
}

@media (max-width: 600px) {
  .hero-slider { height: 130vw; min-height: 480px; max-height: 670px; }
  .hero-arrow { width: 42px; height: 42px; font-size: 14px; }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
  .hero-dots { bottom: 12px; gap: 7px; }
  .hero-dot { width: 8px; height: 8px; }
  .hero-dot.active { width: 23px; }
  .home-intro { padding: 30px 0; }
  .home-container { width: calc(100% - 32px); gap: 25px; }
  .intro-image { height: 210px; border-radius: 8px; }
  .intro-tag { margin-bottom: 10px; font-size: 13px; }
  .intro-content h1 { margin-bottom: 12px; font-size: 26px; }
  .intro-content p { font-size: 15px; margin-bottom: 15px; line-height: 1.5; }
  .intro-btn { padding: 12px 20px; font-size: 14px; }
  .stats-container { width: calc(100% - 32px); gap: 14px; margin-top: 25px; }
  .stat-card { min-height: 100px; padding: 12px 8px; border-radius: 9px; }
  .stat-card strong { margin-bottom: 6px; font-size: 28px; }
  .stat-card span { font-size: 13px; }
}

/* ==========================================
   THEME SECTION
========================================== */
.theme-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px; /* Reduced height */
  background: #062d49;
}

.theme-image {
  min-height: 380px;
  overflow: hidden;
}

.theme-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.theme-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 7%; /* Reduced padding */
  background: #062d49;
  color: #fff;
}

.theme-content h2 {
  max-width: 620px;
  margin-bottom: 15px;
  color: #fff;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}

.theme-content p {
  max-width: 620px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.theme-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 20px;
  padding-left: 20px;
}

.theme-list li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.theme-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  color: #062d49;
  background: #ffca05;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

@media (max-width: 900px) {
  .theme-section { grid-template-columns: 1fr; }
  .theme-image { min-height: 280px; }
  .theme-content { padding: 30px 25px; }
}

@media (max-width: 600px) {
  .theme-image { min-height: 200px; }
  .theme-content { padding: 25px 20px; }
  .theme-content h2 { font-size: 24px; margin-bottom: 12px; }
  .theme-content p { font-size: 14px; margin-bottom: 14px; }
  .theme-list { gap: 6px; margin-bottom: 18px; }
  .theme-list li { font-size: 14px; }
  .theme-btn { padding: 10px 18px; font-size: 14px; }
}

/* ==========================================
   EXHIBITORS PROFILE SECTION
========================================== */
.exhibitors-profile-section {
  padding: 35px 0; /* Reduced padding */
  background: #f4f8fa;
}

.exhibitors-container {
  width: min(100% - 80px, 1540px);
  margin: 0 auto;
}

.exhibitors-title {
  margin: 0 0 30px;
  color: #092b59;
  text-align: center;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.15;
}

.exhibitors-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.exhibitor-card {
  display: block;
  color: #0b2c58;
  text-align: center;
  text-decoration: none;
}

.exhibitor-card img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibitor-card h3 {
  margin: 12px 0 0;
  color: #0b2c58;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.exhibitor-card:hover img {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 20px rgba(4, 35, 74, 0.15);
}

.exhibitor-card:hover h3 {
  color: #65005e;
}

.exhibitors-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.exhibitors-register-btn {
  /* Removed min-width so it hugs the text */
  width: max-content; 
  padding: 16px 45px; /* Slightly wider padding looks better on auto-width buttons */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(to right, #63005d, #01316f); /* Colors from your image */
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(30, 29, 91, 0.15);
  transition: all 0.5s ease; /* 0.5s transition from your image */
}

.exhibitors-register-btn:hover {
  background: linear-gradient(to left, #63005d, #01316f); /* Reversed for hover effect */
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(30, 29, 91, 0.25);
  color: #ffffff;
}

@media (max-width: 1200px) { .exhibitors-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 850px) {
  .exhibitors-container { width: min(100% - 48px, 760px); }
  .exhibitors-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}
@media (max-width: 580px) {
  .exhibitors-profile-section { padding: 25px 0; }
  .exhibitors-container { width: min(100% - 30px, 500px); }
  .exhibitors-title { margin-bottom: 22px; font-size: 28px; }
  .exhibitors-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
  .exhibitor-card img { border-radius: 8px; }
  .exhibitor-card h3 { margin-top: 8px; font-size: 13px; }
  .exhibitors-button-wrap { margin-top: 25px; }
  .exhibitors-register-btn { 
    width: max-content; /* Removed width: 100% */
    padding: 14px 30px; 
    font-size: 15px; 
  }
}

/* ==========================================
   REASONS TO EXHIBIT SECTION
========================================== */
.reasons-exhibit-section {
  padding: 35px 0; /* Reduced */
  background: #062e49;
}

.reasons-exhibit-container {
  width: min(100% - 120px, 1620px);
  margin: auto;
}

.reasons-exhibit-title {
  margin: 0 0 30px;
  color: #fff;
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.15;
}

.reasons-exhibit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}

.reasons-exhibit-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  min-height: 105px;
  overflow: hidden;
  background: #02263e;
  border-radius: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.reasons-exhibit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

.reasons-exhibit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.reasons-exhibit-card:hover::before { left: 150%; }

.reasons-exhibit-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  font-size: 24px;
  color: #111;
  position: relative;
  z-index: 2;
}

.reasons-exhibit-icon img { width: 30px; height: 30px; }

.reasons-exhibit-text { position: relative; z-index: 2; }
.reasons-exhibit-text h3 { margin: 0 0 6px; color: #fff; font-size: 18px; font-weight: 700; line-height: 1.3; }
.reasons-exhibit-text p { margin: 0; color: #fff; font-size: 14px; line-height: 1.5; }


/* ADDED BUTTON STYLES FOR REASONS TO EXHIBIT */
.reasons-exhibit-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.reasons-exhibit-register-btn {
  width: max-content; 
  padding: 16px 45px; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(to right, #63005d, #01316f); 
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease; 
}

.reasons-exhibit-register-btn:hover {
  background: linear-gradient(to left, #63005d, #01316f); 
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

@media(max-width: 1000px) {
  .reasons-exhibit-container { width: min(100% - 60px, 900px); }
  .reasons-exhibit-grid { grid-template-columns: 1fr; }
}

@media(max-width: 680px) {
  .reasons-exhibit-section { padding: 28px 0; }
  .reasons-exhibit-container { width: calc(100% - 32px); }
  .reasons-exhibit-title { font-size: 28px; margin-bottom: 20px; }
  .reasons-exhibit-card { padding: 15px; gap: 14px; }
  .reasons-exhibit-icon { width: 50px; height: 50px; min-width: 50px; font-size: 20px; }
  .reasons-exhibit-text h3 { font-size: 16px; }
  .reasons-exhibit-text p { font-size: 13px; }
  
  .reasons-exhibit-button-wrap {
    margin-top: 25px;
  }
  
  .reasons-exhibit-register-btn { 
    padding: 14px 30px; 
    font-size: 15px; 
  }
  
  
}

/* ==========================================
   SPECIAL ZONE — FEATURED
========================================== */
/* ==========================================
   SPECIAL ZONE — FEATURED
========================================== */

.sz-featured-section{
    position:relative;
    padding:35px 0;
    background:#fff;
    font-family:"Roboto",Arial,sans-serif;
    overflow:hidden;
}

/* Top Dots */
.sz-featured-section::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:320px;
    height:220px;
    background-image:radial-gradient(#1560bd 1.7px,transparent 1.7px);
    background-size:15px 15px;
    opacity:.16;
    pointer-events:none;
}

/* Gear Background */
.sz-featured-section::after{
    content:"\f013";
    position:absolute;
    right:-70px;
    bottom:70px;
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:320px;
    color:#0a1650;
    opacity:.05;
    pointer-events:none;
}

.sz-featured-container{
    width:100%;
    position:relative;
    z-index:2;
}

/* ===========================
   HEADER
=========================== */

.sz-featured-header{
    width:min(1450px,calc(100% - 40px));
    margin:0 auto 30px;
    text-align:center;
}

.sz-sub-title,
.sz-main-title{
    display:inline-block;
    margin:0 8px;
    color:#0a1650;
    font-size:clamp(28px,3vw,48px);
    font-weight:700;
    line-height:1.2;
}

/* ===========================
   FLEX LAYOUT
=========================== */

.sz-featured-content{
    width:100%;
    display:flex;
    align-items:stretch;
    justify-content:center;
    gap:40px;
}

/* ===========================
   IMAGE
=========================== */

.sz-image-wrapper{
    flex:0 0 44%;
    display:flex;
    padding:8px;
    background:#0a1650;
    clip-path:polygon(0 0,87% 0,100% 50%,87% 100%,0 100%);
}

.sz-image-wrapper img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    clip-path:polygon(0 0,87.4% 0,100% 50%,87.4% 100%,0 100%);
}

/* ===========================
   TEXT
=========================== */

.sz-text-box{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-right:5vw;
}

.sz-tag{
    margin-bottom:14px;
    color:#1560bd;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
}

.sz-title{
    margin-bottom:22px;
    color:#0a1650;
    font-size:clamp(28px,2.4vw,44px);
    font-weight:700;
    line-height:1.2;
}

/* ===========================
   SEPARATOR
=========================== */

.sz-gear-separator{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:28px;
    color:#1560bd;
}

.sz-line{
    width:65px;
    height:1px;
    background:#d3dce8;
}

.sz-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#1560bd;
}

.sz-gear-separator i{
    font-size:24px;
    animation:spinGear 4s linear infinite;
}

@keyframes spinGear{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

/* ===========================
   DESCRIPTION
=========================== */

.sz-desc{
    max-width:650px;
    margin-bottom:35px;
    color:#475569;
    font-size:16px;
    line-height:1.8;
}

/* ===========================
   FEATURES
=========================== */

.sz-features-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px 50px;
    margin-bottom:35px;
}

.sz-feature-item{
    display:flex;
    align-items:center;
    gap:14px;
}

.sz-icon{
    width:50px;
    height:50px;
    flex-shrink:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:linear-gradient(90deg,#6d006a,#003f90);
    font-size:18px;
}

.sz-feature-item span{
    color:#0a1650;
    font-size:15px;
    font-weight:600;
    line-height:1.4;
}

/* ===========================
   BUTTON
=========================== */

.sz-explore-btn{
    width:max-content;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 32px;
    color:#fff;
    background:linear-gradient(90deg,#6d006a,#003f90);
    border-radius:4px;
    text-decoration:none;
    text-transform:uppercase;
    font-size:16px;
    font-weight:700;
    transition:.35s;
}

.sz-explore-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 24px rgba(0,0,0,.18);
}

.sz-explore-btn i{
    transition:.35s;
}

.sz-explore-btn:hover i{
    transform:translateX(6px);
}

/* ===========================
   TABLET
=========================== */

@media(max-width:1050px){

    .sz-featured-content{
        flex-direction:column;
        gap:30px;
    }

    .sz-image-wrapper{
        width:min(100% - 40px,720px);
        margin:auto;
        clip-path:none;
        border-radius:14px;
    }

    .sz-image-wrapper img{
        clip-path:none;
        border-radius:10px;
    }

    .sz-text-box{
        width:min(100% - 40px,720px);
        margin:auto;
        padding:0;
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:620px){

    .sz-featured-section{
        padding:28px 0;
    }

    .sz-sub-title,
    .sz-main-title{
        display:block;
        font-size:24px;
    }

    .sz-image-wrapper{
        width:calc(100% - 32px);
    }

    .sz-text-box{
        width:calc(100% - 32px);
    }

    .sz-title{
        font-size:28px;
    }

    .sz-features-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .sz-explore-btn{
        width:100%;
        justify-content:center;
    }

}
/* ==========================================
   WHAT TO EXPECT SECTION
========================================== */
.what-expect-section {
  width: 100%;
  padding: 35px 20px 45px; /* Reduced */
  background: #f4f8fa;
  font-family: "Roboto", Arial, sans-serif;
  overflow: hidden;
}

.what-expect-container { width: 100%; max-width: 1320px; margin: 0 auto; }
.what-expect-title { margin: 0 0 35px; color: #112b5a; text-align: center; font-size: clamp(32px, 3vw, 42px); font-weight: 700; line-height: 1.15; }
.what-expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; align-items: stretch; }

.expect-card {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expect-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1); }
.expect-image { width: 100%; height: 210px; position: relative; overflow: hidden; }
.expect-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
.expect-card:hover .expect-image img { transform: scale(1.05); }

.expect-content {
  position: relative;
  background: #ffffff;
  padding: 45px 25px 30px;
  margin-top: -25px;
  border-radius: 18px 18px 0 0;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.expect-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #002d72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  box-shadow: 0 4px 10px rgba(0, 45, 114, 0.2);
}

.expect-icon::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
  background: #ffca05;
  border-radius: 2px;
}

.expect-content h3 { margin: 0 0 12px; color: #002d72; font-size: 20px; font-weight: 700; }
.expect-content p { margin: 0 0 20px; color: #666666; font-size: 14px; line-height: 1.5; flex-grow: 1; }

.expect-action { display: inline-flex; align-items: center; gap: 8px; color: #002d72; font-size: 15px; font-weight: 700; text-decoration: none; transition: color 0.3s ease; }
.expect-action span { position: relative; }
.expect-action span::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px; background: #ffca05; }
.expect-action i { font-size: 14px; transition: transform 0.3s ease; }
.expect-action:hover { color: #0a1650; }
.expect-action:hover i { transform: translateX(4px); }

@media (max-width: 1024px) { .what-expect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .what-expect-section { padding: 30px 16px; }
  .what-expect-title { font-size: 28px; margin-bottom: 28px; }
  .what-expect-grid { grid-template-columns: 1fr; gap: 28px; }
  .expect-image { height: 190px; }
}

/* ==========================================
   LATEST POST SECTION
========================================== */
.latest-post-section { width: 100%; padding: 30px 20px; background: #ffffff; }
.latest-post-container { width: 100%; max-width: 1180px; margin: 0 auto; }
.latest-post-title { margin: 0 0 35px; text-align: center; color: #0a1650; font-family: "Roboto", Arial, sans-serif; font-size: clamp(32px, 3vw, 42px); font-weight: 700; line-height: 1.15; }
.latest-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.latest-post-card { min-width: 0; overflow: hidden; background: #ffffff; font-family: "Roboto", Arial, sans-serif; transition: transform 0.35s ease; }
.latest-post-card:hover { transform: translateY(-6px); }

.latest-post-image { display: block; width: 100%; height: 240px; overflow: hidden; border-radius: 10px; background: #e9edf2; }
.latest-post-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.latest-post-card:hover .latest-post-image img { transform: scale(1.05); }

.latest-post-date { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin: 20px 15px 20px; color: #808080; font-size: 15px; font-weight: 400; }
.latest-post-date i { color: #777777; font-size: 16px; }
.latest-post-card h3 { margin: 0 15px 22px; min-height: 68px; font-size: 20px; font-weight: 600; line-height: 1.3; }
.latest-post-card h3 a { color: #001d5b; text-decoration: none; transition: color 0.3s ease; }
.latest-post-card:hover h3 a { color: #0068d7; }
.latest-post-card p { margin: 0 15px 20px; min-height: 72px; color: #777777; font-size: 16px; font-weight: 400; line-height: 1.5; }

.latest-post-button-wrap { width: 100%; display: flex; justify-content: center; align-items: center; margin-top: 35px; }
.latest-post-main-btn { display: inline-flex; align-items: center; justify-content: center; width: 160px; height: 50px; border-radius: 50px; background: linear-gradient(100deg, #71006f 0%, #063d8d 100%); color: #fff; font-family: "Roboto", Arial, sans-serif; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.35s ease; }
.latest-post-main-btn:hover { background: linear-gradient(100deg, #063d8d 0%, #71006f 100%); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(6,61,141,0.30); }

@media (max-width: 1000px) { .latest-post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) {
  .latest-post-section { padding: 25px 16px; }
  .latest-post-title { margin-bottom: 25px; font-size: 28px; }
  .latest-post-grid { grid-template-columns: 1fr; gap: 25px; }
  .latest-post-image { height: 210px; }
  .latest-post-date { margin-top: 15px; margin-bottom: 15px; font-size: 14px; }
  .latest-post-card h3 { min-height: auto; margin-bottom: 14px; font-size: 18px; }
  .latest-post-card p { min-height: auto; font-size: 15px; }
}

/* =====================================================
   TESTIMONIAL SECTION
===================================================== */
.testimonials-section { width: 100%; padding: 30px 0; background: #072848; overflow: hidden; }
.testimonials-container { width: 100%; max-width: 1400px; margin: auto; padding: 0 20px; }
.testimonials-title { text-align: center; color: #ffffff; font-family: "Roboto", sans-serif; font-size: clamp(32px, 3vw, 42px); font-weight: 700; margin-bottom: 30px; }
.testimonialSwiper { position: relative; overflow: hidden; padding: 10px 5px 25px; }
.testimonialSwiper .swiper-slide { height: auto; display: flex; }

.testimonial-card { width: 100%; min-height: 240px; background: #ffffff; border-radius: 12px; padding: 20px; display: flex; flex-direction: column; transition: 0.35s; box-shadow: 0 8px 22px rgba(0,0,0,0.1); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.18); }
.testimonial-company { color: #0A1650; font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; font-family: "Roboto", sans-serif; }
.testimonial-name { color: #4f4f4f; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.testimonial-designation { color: #808080; font-size: 13px; line-height: 1.5; margin-bottom: 15px; }
.testimonial-text { color: #666666; font-size: 14px; line-height: 1.6; margin-top: 15px; }

.testimonial-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: #2b6ecf; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 100; transition: 0.3s; color: #fff; font-size: 14px; box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
.testimonial-prev { left: -5px; }
.testimonial-next { right: -5px; }
.testimonial-arrow:hover { background: #0A1650; transform: translateY(-50%) scale(1.08); }

@media(max-width: 991px) { .testimonial-card { min-height: 280px; } }
@media(max-width: 767px) {
  .testimonials-section { padding: 30px 0; }
  .testimonials-title { font-size: 28px; margin-bottom: 25px; }
  .testimonial-card { min-height: auto; padding: 18px; }
  .testimonial-company { font-size: 18px; }
  .testimonial-name { font-size: 15px; }
  .testimonial-text { font-size: 14px; line-height: 1.6; }
  .testimonial-arrow { width: 38px; height: 38px; }
}

/* =====================================
   GALLERY
===================================== */
.section-padding { padding: 30px 0; background: #f4f8fa; }
.home-heading-center-wrapper { text-align: center; margin-bottom: 24px; }
.home-heading-center { font-family: "Roboto", Arial, sans-serif; font-size: clamp(30px, 3vw, 42px); font-weight: 700; color: #0A1650; line-height: 1.15; text-align: center; margin: 0; }
.custom-bento-gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 12vw; gap: 8px; max-width: 100%; }
.bento-item { position: relative; border-radius: 8px; overflow: hidden; background-color: #111; }
.bento-item.tall { grid-row: span 2; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.3s ease; }
.bento-item a { display: block; width: 100%; height: 100%; }
.bento-item:hover img { transform: scale(1.07); filter: brightness(0.80); }
.bento-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,9,26,0.45), transparent); opacity: 0; transition: opacity 0.35s; pointer-events: none; }
.bento-item:hover::after { opacity: 1; }

@media (max-width: 1200px) { .custom-bento-gallery { grid-auto-rows: 14vw; } }
@media (max-width: 991px)  { .custom-bento-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 24vw; } }
@media (max-width: 575px)  { .custom-bento-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 34vw; } }

/* ==========================================
            CONTACT SECTION
========================================== */
.contact-section {
  width: 100%;
  padding: 60px 0; 
  background: #ffffff;
}

.contact-container {
  width: 100%;
  max-width: 1200px; /* Perfect sweet spot for desktop */
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center; /* Centers image and form vertically */
  gap: 60px; /* Better breathing room */
}

/* ==========================================
            LEFT IMAGE
========================================== */
.contact-image {
  flex: 0 0 45%; 
}

.contact-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.5; /* Forces a nice professional portrait shape */
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); /* Adds premium depth */
}

/* ==========================================
            RIGHT SIDE
========================================== */
.contact-form-wrapper {
  flex: 1;
}

.contact-title {
  margin: 0 0 10px;
  color: #0A1650;
  font-family: "Roboto", sans-serif;
  font-size: 38px; 
  font-weight: 700;
  line-height: 1.2;
}

.contact-subtitle {
  margin: 0 0 30px;
  color: #155dc9; /* Adds a pop of brand color */
  font-family: "Roboto", sans-serif;
  font-size: 20px; 
  font-weight: 600;
}

/* ==========================================
            FORM GRID
========================================== */
.contact-form { width: 100%; }
.contact-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 18px; }
.contact-row-full { margin-bottom: 18px; }

/* ==========================================
            INPUT FIELDS
========================================== */
.contact-field input,
.contact-row-full input,
.contact-row-full textarea {
  width: 100%;
  border: 1px solid #cfd7e3; /* Softer, more elegant border */
  border-radius: 8px; 
  background: #f8fafc; /* Very subtle grey/blue tint to stand out from white background */
  padding: 16px 18px; 
  font-size: 16px; 
  font-family: "Roboto", sans-serif;
  color: #333;
  outline: none;
  transition: 0.3s;
}

.contact-row-full textarea {
  resize: none;
  height: 120px; 
}

.contact-field input::placeholder,
.contact-row-full input::placeholder,
.contact-row-full textarea::placeholder { 
    color: #94a3b8; 
}

.contact-field input:focus,
.contact-row-full input:focus,
.contact-row-full textarea:focus { 
    background: #ffffff;
    border-color: #155dc9; 
    box-shadow: 0 0 0 4px rgba(21,93,201,0.12); 
}

/*==========================================
   CHECKBOX
==========================================*/
.contact-checkbox { display: flex; align-items: flex-start; gap: 14px; margin: 15px 0 30px; cursor: pointer; }
.contact-checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: #0A1650; cursor: pointer; flex-shrink: 0; }
.contact-checkbox span { color: #4b5563; font-family: "Roboto", sans-serif; font-size: 14px; line-height: 1.5; font-weight: 500; }

/*==========================================
   SUBMIT BUTTON
==========================================*/
.contact-submit-btn {
  width: 100%;
  height: 54px; 
  border: none;
  outline: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 17px; 
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #760070 0%, #083c93 100%);
  transition: 0.35s ease;
  box-shadow: 0 6px 15px rgba(8,60,147,0.2);
}

.contact-submit-btn:hover { 
    background: linear-gradient(90deg, #083c93 0%, #760070 100%); 
    transform: translateY(-3px); 
    box-shadow: 0 12px 25px rgba(8,60,147,0.3); 
}

/*==========================================
   RESPONSIVE (Contact)
==========================================*/
@media(max-width:991px){
  .contact-container { flex-direction: column; gap: 40px; }
  .contact-image { width: 100%; }
  .contact-image img { aspect-ratio: 16/9; } /* Changes to landscape on tablets */
  .contact-title { font-size: 34px; }
  .contact-row { grid-template-columns: 1fr; }
}

@media(max-width:768px){
  .contact-section { padding: 40px 0; }
  .contact-title { font-size: 30px; }
  .contact-subtitle { font-size: 18px; margin-bottom: 20px;}
  .contact-field input, .contact-row-full input, .contact-row-full textarea { font-size: 15px; padding: 15px; }
  .contact-checkbox span { font-size: 13px; }
  .contact-submit-btn { height: 50px; font-size: 16px; }
}

@media(max-width:576px){
  .contact-container { padding: 0 15px; gap: 30px;}
  .contact-image img { aspect-ratio: 4/3; } /* Slightly taller on mobile */
  .contact-title { font-size: 28px; }
  .contact-subtitle { font-size: 16px; }
  .contact-submit-btn { height: 48px; font-size: 15px; }
}










/* ==========================================
   CUSTOM GALLERY LIGHTBOX (POPUP)
========================================== */
.gallery-modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 999999; /* Sit on top of everything including navbar */
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.85); /* Black with opacity */
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh; /* Prevents it from touching the top/bottom */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: modalZoom 0.3s ease;
}

@keyframes modalZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
    color: #ffca05; /* Changes to yellow on hover */
    text-decoration: none;
    cursor: pointer;
}