/*==========================
 HERO SECTION
===========================*/

.hero {
    position: relative;
    width: 100%;
    height: 480px; /* Reduced from 720px to fit on one screen */
    overflow: hidden;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 2;
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Heading */
.hero-content h1 {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 40px; /* Slightly reduced to save space */
    font-weight: 700;
    line-height:48px;
    margin-bottom: 15px; /* Tightened spacing */
}

/* Subtitle */
.hero-subtitle {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height:24px;
    max-width: 900px;
    margin-bottom: 25px; /* Tightened spacing */
}

/* Hero Info Box */
.hero-info-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 850px;
    border: 1.5px solid #ffffff;
    border-radius: 8px;
    padding: 20px 40px; /* Reduced vertical padding */
    background: transparent;
    text-align: left;
    margin-bottom: 15px; /* Tightened spacing */
}

.info-col {
    flex: 1;
}

.info-col:last-child {
    padding-left: 30px; 
}

.info-title {
    color: #ffca05; 
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
     line-height:29px;
}

.info-desc {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height:27px;
    margin: 0;
}

/* Yellow Note Box */
.hero-note-box {
    width: 100%;
    max-width: 800px; 
    background-color: #fdf3d1; 
    color: #5c4700; 
    padding: 14px 20px;
    border-radius: 4px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-left: 8px solid #ffca05; 
}


/*==========================
 STATISTICS SECTION
===========================*/

.stats-section {
    background: #ffffff;
    padding: 30px 0 45px; /* Reduced top padding to pull cards up closer to the video */
}


.stats-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: #092135; /* Dark blue matching the screenshot */
    color: #ffffff;
    border-radius: 8px;
    padding: 35px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card strong {
    font-family: "Roboto", sans-serif;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card span {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/*==========================
 RESPONSIVE MEDIA QUERIES
===========================*/

/* Tablet */
@media(max-width: 991px) {
    .hero {
        height: 600px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-info-box {
        padding: 20px 25px;
    }
    .info-title {
        font-size: 22px;
    }
    .info-desc {
        font-size: 16px;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media(max-width: 768px) {
    .hero {
        height: auto;
        min-height: 550px;
        padding: 80px 0 50px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-info-box {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    .info-col:last-child {
        padding-left: 0;
    }
    .hero-note-box {
        font-size: 14px;
        padding: 15px;
    }
    .stats-section {
        padding: 35px 0 40px;
    }
    .stats-container {
        grid-template-columns: 1fr;
    }
    .stat-card {
        padding: 25px 15px;
    }
    .stat-card strong {
        font-size: 38px;
    }
}


/*=========================
WHY VISIT SECTION
=========================*/
.why-visit{
    background:linear-gradient(90deg,#0a3b7c 0%, #68005f 100%);
    padding:50px 0;
}
.why-visit .container{
    max-width: 1540px;
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
}
.why-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/*=========================
LEFT
=========================*/
.why-left h2{
    font-family:"Roboto",sans-serif;
    font-size:40px;
    font-weight:700;
    line-height:44px;
    color:#fff;
    margin-bottom:18px;
}
.why-left p{
    font-family:"Roboto",sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:24px;
    color:#fff;
    margin-bottom:16px;
}
.visit-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:230px;
    height:50px;
    background:#ffc400;
    color:#111;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}
.visit-btn:hover{
    background:#ffd633;
    color:#111;
    transform:translateY(-2px);
}

/*=========================
RIGHT — icon list with hover
=========================*/
.why-right{
    display:flex;
    flex-direction:column;
}
.visit-item{
    display:flex;
    align-items:center;
    gap:22px;
    padding:16px 20px;
    border-bottom:1px solid rgba(255,255,255,.15);
    border-left:3px solid transparent;
    border-radius:0 14px 14px 0;
    cursor:pointer;
    transition:all .35s ease;
    position:relative;
}
.visit-item:last-child{
    border-bottom:none;
}

/* icon circle */
.visit-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    min-width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.25);
    transition:all .35s ease;
}
.visit-icon i{
    font-size:19px;
    color:#fff;
    transition:all .35s ease;
}

.visit-item p{
    color:#fff;
    margin:0;
    line-height:26px;
    font-family:"Roboto",sans-serif;
    font-size:16px;
    transition:.3s;
}
.visit-item p strong{
    color:#ffd54a;
    transition:.3s;
}

/* HOVER — gold accent bar + filled icon circle + shift */
.visit-item:hover{
    background:rgba(255,255,255,.06);
    border-left:3px solid #ffc400;
    transform:translateX(6px);
}
.visit-item:hover .visit-icon{
    background:#ffc400;
    border-color:#ffc400;
    box-shadow:0 0 0 6px rgba(255,196,0,.15);
}
.visit-item:hover .visit-icon i{
    color:#0a3b7c;
    transform:scale(1.1);
}
.visit-item:hover p strong{
    color:#fff;
}

/*=========================
TABLET
=========================*/
@media(max-width:991px){
    .why-visit{ padding:30px 0; }
    .why-grid{ grid-template-columns:1fr; gap:35px; }
    .why-left h2{ font-size:32px; }
    .visit-item{ padding:12px 14px; }
}

/*=========================
MOBILE
=========================*/
@media(max-width:768px){
    .why-visit{ padding:25px 0; }
    .why-visit .container{ width:92%; }
    .why-left h2{ font-size:28px; line-height:36px; }
    .why-left p{ font-size:15px; line-height:1.7; }
    .visit-item{ gap:15px; padding:12px 10px; }
    .visit-icon{ width:42px; min-width:42px; height:42px; }
    .visit-icon i{ font-size:17px; }
    .visit-item p{ font-size:15px; line-height:1.6; }
    .visit-btn{ width:210px; height:46px; font-size:16px; }
}



/* ==========================================
   EXHIBITORS PROFILE SECTION
========================================== */
.exhibitors-profile-section {
  padding: 56px 0 58px;
  background: #f4f8fa;
}

.exhibitors-container {
  width: min(100% - 80px, 1540px);
  margin: 0 auto;
}

.exhibitors-title {
  margin: 0 0 40px;
  color: #092b59;
  text-align: center;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 700;
  line-height: 1.15;
}

.exhibitors-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 28px;
}

.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: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibitor-card h3 {
  margin: 15px 0 0;
  color: #0b2c58;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.exhibitor-card:hover img {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 14px 25px rgba(4, 35, 74, 0.2);
}

.exhibitor-card:hover h3 {
  color: #65005e;
}

/* Center registration button */
.exhibitors-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.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;
}

/* Laptop */
@media (max-width: 1200px) {
  .exhibitors-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 850px) {
  .exhibitors-container {
    width: min(100% - 48px, 760px);
  }

  .exhibitors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px 20px;
  }
}

/* Mobile */
@media (max-width: 580px) {
  .exhibitors-profile-section {
    padding: 42px 0 46px;
  }

  .exhibitors-container {
    width: min(100% - 30px, 500px);
  }

  .exhibitors-title {
    margin-bottom: 28px;
    font-size: 31px;
  }

  .exhibitors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 15px;
  }

  .exhibitor-card img {
    border-radius: 9px;
  }

  .exhibitor-card h3 {
    margin-top: 10px;
    font-size: 14px;
  }

  .exhibitors-button-wrap {
    margin-top: 35px;
  }

  .exhibitors-register-btn {
    width: 100%;
    min-width: 0;
    padding: 17px 20px;
    font-size: 16px;
  }
}




/*=================================
Who Should Attend?
=================================*/

.visitor-profile {
    background: #fff;
    padding: 60px 0;
}

.visitor-profile .container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

/* Title */
.vp-title {
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 40px; /* Updated to match screenshot */
    font-weight: 700;
    line-height: 48px; /* Updated to match screenshot */
    color: #102147; /* Exact hex for rgb(16, 33, 71) */
    margin-bottom: 35px;
}

/* Grid */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 28px;
}

/* Card */
.vp-card {
    background: #082d49;
    border-radius: 14px;
    min-height: 75px; /* Reduced from 92px */
    padding: 12px 20px; /* Reduced vertical padding from 20px to 12px */
    display: flex;
    align-items: center;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0,0,0,.10);
}

.vp-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.vp-card i {
    width: 44px;
    font-size: 30px;
    color: #fff;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Text */
.vp-card span {
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 20px; /* Updated to match screenshot */
    font-weight: 500;
    line-height: 24px; /* Updated to match screenshot */
}

/*=========================
   Responsive
=========================*/

/* Tablet */
@media(max-width:992px) {
    .vp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:768px) {
    .visitor-profile {
        padding: 45px 0;
    }

    .vp-title {
        font-size: 32px; /* Scaled down for mobile */
        line-height: 40px;
    }

    .vp-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vp-card {
        min-height: 80px;
        padding: 18px;
    }

    .vp-card i {
        font-size: 28px;
        width: 42px;
    }

    .vp-card span {
        font-size: 18px; /* Scaled down for mobile */
        line-height: 22px;
    }
}




/*==========================================
   GETTING TO EXPO SECTION
==========================================*/

.getting-to-expo {
    background-color: #f4f7f9;
    padding: 60px 0;
    font-family: 'Roboto', sans-serif;
}

.section-main-title {
    text-align: center;
    color: #0b2240;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

.getting-to-expo .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.expo-travel-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    align-items: start;
}

/*==========================================
   LEFT COLUMN: MEDIA ELEMENTS
==========================================*/
.expo-media-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.media-box {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background-color: #ffffff;
    border: 1px solid #e7eaee;
}

.hall-layout-box {
    height: 230px;
}

.hall-layout-box img,
.hall-layout-box video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.google-map-box {
    height: 420px;
}

/*==========================================
   RIGHT COLUMN: TRAVEL CARDS
==========================================*/
.expo-info-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* WHITE card — Travel & Accommodation Info */
.travel-card-info:nth-of-type(1) {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* GREY card — Venue Details & Parking */
.travel-card-info:nth-of-type(2) {
    background-color: #eef1f4;
}

.travel-card-info {
    border-radius: 10px;
    padding: 22px 28px;
}

.travel-card-info h3 {
    color: #072247;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.travel-card-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.travel-card-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #556275;
    font-size: 14px;
    line-height: 1.5;
}

.travel-card-info ul li i {
    color: #65758c;
    font-size: 16px;
    margin-top: 2px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.travel-card-info ul li strong {
    color: #2c3e57;
}

.travel-card-info ul li span {
    color: #8894a6;
}

/* WHITE box with solid blue left border — Travel Partner */
.travel-partner-box {
    background-color: #ffffff;
    border-radius: 10px;
    border-left: 4px solid #0b57c9;
    padding: 26px 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: relative;
}

.travel-partner-box h3 {
    color: #072247;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
}

.partner-sub {
    color: #8391a5;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.partner-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 14px;
}

.contact-item {
    color: #556275;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-item i,
.partner-meta i {
    color: #65758c;
}

.partner-meta {
    display: flex;
    gap: 26px;
    margin-bottom: 22px;
    color: #334155;
    font-weight: 500;
    font-size: 14px;
}

.partner-meta p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* SOLID navy-blue pill button, no gradient */
.partner-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 42px;
    border-radius: 25px;
    background: #0b57c9;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.25s, transform 0.25s;
}

.partner-read-btn:hover {
    background: #0947a3;
    transform: translateY(-2px);
    color: #ffffff;
}

/*==========================================
   RESPONSIVE
==========================================*/

@media (max-width: 991px) {
    .expo-travel-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hall-layout-box { height: 260px; }
    .google-map-box { height: 320px; }
}

@media (max-width: 576px) {
    .section-main-title { font-size: 26px; margin-bottom: 26px; }
    .travel-card-info { padding: 18px 20px; }
    .travel-card-info h3,
    .travel-partner-box h3 { font-size: 18px; }
    .travel-partner-box { padding: 20px; }
    .partner-meta { flex-direction: column; gap: 10px; }
}



/*==================================
BE PART OF INDIA'S AUTOMATION REVOLUTION
==================================*/
.revolution-cta {
    position: relative;
    background: url('../image/visit_bg.webp') center center/cover no-repeat;
    padding: 45px 0; /* Reduced from 90px to cut the height in half */
    overflow: hidden;
}

/* Dark overlay so text stays readable over the photo */
.revolution-overlay {
    position: absolute;
    inset: 0;
   
    z-index: 1;
}

.revolution-cta .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.revolution-content h2 {
    font-family: "Roboto", sans-serif;
    font-size: 32px; /* Slightly reduced from 38px to look cleaner in a small section */
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px; /* Reduced from 22px */
    line-height: 1.2;
}

.revolution-content p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #e6e6e6;
    margin-bottom: 10px; /* Reduced from 16px */
}

.revolution-sub {
    margin-bottom:20px !important;
}

.revolution-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    height: 50px;
    padding: 0 30px;
    /* FIXED: Using explicit background-image property for optimal gradient rendering */
    background-image: linear-gradient(90deg, #68005f 0%, #7a1fa2 50%, #0a3b7c 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.revolution-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(104, 0, 95, 0.4);
    color: #fff;
}

/*=========================
TABLET RESPONSIVE
=========================*/
@media(max-width: 991px) {
    .revolution-cta { 
        padding: 35px 0; /* Shrunk from 70px */
    } 
    .revolution-content h2 { 
        font-size: 26px; 
    }
}

/*=========================
MOBILE RESPONSIVE
=========================*/
@media(max-width: 768px) {
    .revolution-cta { 
        padding: 30px 0; /* Shrunk from 50px */
    } 
    .revolution-content h2 { 
        font-size: 22px; 
    }
    .revolution-sub {
        margin-bottom: 15px !important;
    }
}