/* css/styles.css */

/* Global Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
font-family: "alfabet", sans-serif;
font-weight: 400;
font-style: normal;
}

h1, h2, h3 {
    font-family: "degular-display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
}
    :root {
         


               --primary-blue: #1e5ba8;
            --light-blue: #4a90e2;
            --dark-blue: #0a2540;
            --black: #000000;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --cyan: #5dade2;
            --purple: #4a148c;
            --light-sky: #b3e5fc;
        }


        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--black);
            overflow-x: hidden;
        }

        /* Top Bar */
        .refcold-top-bar {
            background: var(--dark-blue);
            color: var(--white);
            padding: 10px 0;
            font-size: 13px;
        }
.refcold-navigation .dropdown-menu {
    display: none;
}

.refcold-navigation .dropdown-menu.show {
    display: block;
}li.nav-item.dropdown:hover ul.dropdown-menu {
    display: block;
}
        .refcold-top-bar a {
            color: var(--white);
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .refcold-top-bar a:hover {
            color: var(--light-blue);
        }

        .refcold-top-bar .social-links a {
            margin: 0 8px;
        }

        /* Header */
        .refcold-header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

       .refcold-header .main-header {
    padding: 15px 0;
    background: #e9f6fe;
}

        .refcold-header .logo {
            max-height: 60px;
        }

       .refcold-header .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
}

        .refcold-header .action-btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid;
        }

        .refcold-header .btn-register {
            background: var(--primary-blue);
            color: var(--white);
            border-color: var(--primary-blue);
        }

        .refcold-header .btn-register:hover {
            background: var(--light-blue);
            border-color: var(--light-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 91, 168, 0.3);
        }

        .refcold-header .btn-book {
            background: var(--white);
            color: var(--primary-blue);
            border-color: var(--primary-blue);
        }

        .refcold-header .btn-book:hover {
            background: var(--primary-blue);
            color: var(--white);
        }

        /* Navigation */
        .refcold-navigation {
            background: var(--primary-blue);
            padding: 0;
        }

        .refcold-navigation .navbar {
            padding: 0;
        }

        .refcold-navigation .navbar-nav {
            width: 100%;
            justify-content: center;
        }

        .refcold-navigation .nav-link {
            color: var(--white) !important;
            padding: 16px 20px !important;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .refcold-navigation .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .refcold-navigation .dropdown-toggle::after {
            margin-left: 6px;
        }

        .refcold-navigation .dropdown-menu {
            background: var(--white);
            border: none;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 10px 0;
            margin-top: 0;
        }

        .refcold-navigation .dropdown-item {
            padding: 10px 25px;
            font-size: 14px;
            color: var(--black);
            transition: all 0.3s ease;
        }

        .refcold-navigation .dropdown-item:hover {
            background: var(--light-gray);
            color: var(--primary-blue);
            padding-left: 30px;
        }

        /* Hero Section */
      .refcold-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    padding: 39px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.refcold-hero img {
    width: 341px;
}  .refcold-hero{
          
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('assets/img/bg.jpeg');
            opacity:1;
            background-size: cover;
            
        }
       .refcold-hero::before

 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1677ffa6;
    opacity: 1;
}

        .refcold-hero .hero-content {
            position: relative;
            z-index: 1;
        }
         .refcold-hero .container{
          position: relative;z-index: 3;
         }

      .refcold-hero h1 {
    font-size: 37px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

        .refcold-hero .hero-subtitle {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .refcold-hero .hero-details {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .refcold-hero .hero-btn {
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 700;
            background: var(--white);
            color: var(--primary-blue);
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .refcold-hero .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
.refcold-section {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    background: #fff;
    padding: 50px 0;
    overflow: hidden;
}

        .refcold-section .section-header {
            position: relative;
            margin-bottom: 20px;
        }
.refcold-section .section-title {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

        .refcold-section .section-subtitle {
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 22px;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .refcold-section .section-subtitle::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
            border-radius: 2px;
        }

     .refcold-section .content-text {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 25px;
    height: 158px;
    overflow: auto;
    padding-right: 10px;
}
        .refcold-section .content-text strong {
            color: var(--primary-blue);
            font-weight: 600;
        }

       
        .refcold-section .know-more-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            border: none;
            padding: 14px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(30, 91, 168, 0.3);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .refcold-section .know-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .refcold-section .know-more-btn:hover::before {
            left: 100%;
        }

        .refcold-section .know-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(30, 91, 168, 0.4);
        }

        .refcold-section .know-more-btn i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .refcold-section .know-more-btn:hover i {
            transform: translateX(5px);
        }

        .refcold-section .video-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            background: var(--dark-blue);
            transition: transform 0.3s ease;
        }

        .refcold-section .video-container:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .refcold-section .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .refcold-section .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .refcold-section .video-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(30, 91, 168, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .refcold-section .icon-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 20px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .refcold-section .icon-feature:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(30, 91, 168, 0.15);
        }

        .refcold-section .icon-feature i {
            color: var(--primary-blue);
            font-size: 2rem;
            margin-right: 20px;
            min-width: 40px;
        }

        .refcold-section .icon-feature-text {
            flex: 1;
        }

        .refcold-section .icon-feature-title {
            color: var(--dark-blue);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .refcold-section .icon-feature-desc {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

      .refcold-section .content-box {
    background: var(--white);
    padding: 23px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

        @media (max-width: 768px) {
            .refcold-section {
                padding: 50px 0;
            }

            .refcold-section .section-title {
                font-size: 2rem;
            }

            .refcold-section .section-subtitle {
                font-size: 1.5rem;
            }

            .refcold-section .content-text {
                font-size: 1rem;
            }

            .refcold-section .video-container {
                margin-top: 30px;
            }

            .refcold-section .content-box {
                padding: 25px;
            }
        }

         .video-wrapper {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 50px 0;
}

        .video-wrapper .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .video-wrapper .section-title {
            color: var(--dark-blue);
            font-weight: 700;
            font-size: 2.8rem;
            letter-spacing: 2px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .video-wrapper .title-underline {
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
            margin: 0 auto;
            border-radius: 2px;
        }

        

        .video-wrapper .view-all-btn {
            text-align: center;
            margin-top: 50px;
        }

        .video-wrapper .btn-view-all {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            border: none;
            padding: 14px 45px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(30, 91, 168, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .video-wrapper .btn-view-all:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(30, 91, 168, 0.4);
        }

        .video-wrapper .btn-view-all i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .video-wrapper .btn-view-all:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .video-wrapper {
                padding: 50px 0;
            }

            .video-wrapper .section-title {
                font-size: 2rem;
            }

            .video-wrapper .video-title {
                font-size: 0.95rem;
            }
        }

          /* ============= STATS SECTION ============= */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

       

       .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #167ac6c2;
    opacity: 1;
} .stats-section .container {
  position: relative;
  z-index: 9;
}

        .stats-section .container {
            position: relative;
            z-index: 1;
        }

        .stats-section .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .stats-section .stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgb(255 255 255);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s 
ease;
}
        .stats-section .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .stats-section .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--cyan), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--white);
            box-shadow: 0 10px 30px rgba(93, 173, 226, 0.4);
        }

      .stats-section .stat-number {
    font-size: 35px;
    font-weight: 700;
    color: #131414;
    margin-bottom: 10px;
    line-height: 1;
}
        .stats-section .stat-label {
            font-size: 1rem;
            color:#000;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
        }

        .stats-section .cta-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

     .stats-section .cta-card {
    background: #084a7d;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s 
ease;
    cursor: pointer;
    border: 2px solid transparent;
}

        .stats-section .cta-card:hover {
            background: var(--light-blue);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--white);
        }

        .stats-section .cta-icon {
            font-size: 3rem;
            color: var(--white);
            min-width: 60px;
        }

        .stats-section .cta-text {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            text-align: left;
        }

        /* ============= INFO CARDS SECTION ============= */
        .info-cards-section {
            background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
            padding: 80px 0;
            position: relative;
        }

        .info-cards-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 300px;
            background: linear-gradient(180deg, var(--dark-blue) 0%, transparent 100%);
            opacity: 0.05;
        }

        .info-cards-section .container {
            position: relative;
            z-index: 1;
        }

        .info-cards-section .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .info-cards-section .info-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .info-cards-section .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
        }

        .info-cards-section .info-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(30, 91, 168, 0.2);
            border-color: var(--primary-blue);
        }

        .info-cards-section .card-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--white);
            box-shadow: 0 10px 30px rgba(30, 91, 168, 0.3);
            transition: all 0.3s ease;
        }

        .info-cards-section .info-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .info-cards-section .card-title {
            color: var(--dark-blue);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .info-cards-section .card-description {
            color: #555;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .info-cards-section .card-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            border: none;
            padding: 12px 35px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(30, 91, 168, 0.3);
            text-transform: capitalize;
            cursor: pointer;
        }

        .info-cards-section .card-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(30, 91, 168, 0.4);
        }

        .info-cards-section .card-btn.btn-warning {
            background: linear-gradient(135deg, #f39c12, #f1c40f);
            box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);
        }

        .info-cards-section .card-btn.btn-warning:hover {
            box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
        }

        @media (max-width: 768px) {
            .stats-section {
                padding: 50px 0;
            }

            .stats-section .stats-grid {
                gap: 25px;
            }

            .stats-section .stat-number {
                font-size: 2.5rem;
            }

            .stats-section .cta-buttons {
                gap: 20px;
            }

            .info-cards-section {
                padding: 50px 0;
            }

            .info-cards-section .cards-grid {
                gap: 20px;
            }
        }

        .show-highlights {
            padding: 50px 0;
            background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
        }

        .show-highlights .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
            margin-bottom: 60px;
        }

        .show-highlights .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-blue);
            border-radius: 2px;
        }

      .show-highlights .highlight-card {
    background: var(--white);
    border-radius: 16px;
    padding: 23px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(30, 91, 168, 0.08);
    transition: all 0.4s 
ease;
    border: 1px solid rgba(77, 144, 226, 0.1);
}

        .show-highlights .highlight-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(30, 91, 168, 0.15);
        }

        .show-highlights .card-icon {
    font-size: 27px;
    color: var(--primary-blue);
    margin-bottom: 2px;
}

      .show-highlights .card-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

       .show-highlights .card-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

        .show-highlights .btn-primary-custom {
            background-color: var(--primary-blue);
            border: none;
            color: var(--white);
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .show-highlights .btn-primary-custom:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(30, 91, 168, 0.3);
        }

        .show-highlights .image-col {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .show-highlights .image-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .show-highlights .image-col:hover img {
            transform: scale(1.08);
        }

        @media (max-width: 992px) {
            .show-highlights .section-title {
                font-size: 2.25rem;
            }
            
            .show-highlights .image-col {
                margin-top: 40px;
            }
        }


        .testimonials {
            padding: 50px 0;
            background: linear-gradient(to bottom, #ffffff 0%, var(--light-gray) 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://cdn-ilaeadh.nitrocdn.com/UnAFfTqfoHKRwMhikRtSYtATXULTzYKf/assets/images/optimized/rev-863aedd/www.amsc-usa.com/wp-content/uploads/2023/05/a-large-cold-storage-warehouse.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.07;
            z-index: 0;
        }

        .testimonials .container {
            position: relative;
            z-index: 1;
        }

        .testimonials .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
            margin-bottom: 60px;
        }

        .testimonials .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-blue);
            border-radius: 2px;
        }

        .testimonials .testimonial-slide {
            padding: 0 15px;
            outline: none;
        }

        .testimonials .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(30, 91, 168, 0.12);
            transition: all 0.4s ease;
            height: 100%;
        }

        .testimonials .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(30, 91, 168, 0.2);
        }

        .testimonials .client-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid var(--primary-blue);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .testimonials .stars {
            margin-bottom: 20px;
        }

        .testimonials .stars i {
            color: #ffd700;
            font-size: 1.4rem;
            margin: 0 3px;
        }

        .testimonials .quote {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonials .client-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 8px;
        }

        .testimonials .client-position {
            color: var(--primary-blue);
            font-size: 1rem;
        }

        .testimonials .slick-dots li button:before {
            font-size: 14px;
            color: var(--primary-blue);
            opacity: 0.4;
        }

        .testimonials .slick-dots li.slick-active button:before {
            opacity: 1;
            color: var(--primary-blue);
        }

        .testimonials .slick-prev,
        .testimonials .slick-next {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .testimonials .slick-prev:hover,
        .testimonials .slick-next:hover {
            background: var(--primary-blue);
        }

        .testimonials .slick-prev:before,
        .testimonials .slick-next:before {
            color: var(--dark-blue);
            font-size: 24px;
        }

        .testimonials .slick-prev:hover:before,
        .testimonials .slick-next:hover:before {
            color: var(--white);
        }

        @media (max-width: 992px) {
            .testimonials .section-title {
                font-size: 2.25rem;
            }
        }


        /* Key Partners Section */
        .key-partners {
            padding: 50px 0;
            background: var(--white);
        }
.key-partners .partner-item {
    text-align: center;
    margin: 0px 10px;
    padding: 20px 30px;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    /* box-shadow: 0 10px 30px rgba(30, 91, 168, 0.08); */
    border: 1px solid #ddd;
}
        .key-partners .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
            margin-bottom: 60px;
        }

        .key-partners .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-blue);
            border-radius: 2px;
        }

       .key-partners .partner-item {
    text-align: center;
    padding: 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

       .key-partners .partner-logo img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: all 0.4s 
ease;
}

        .key-partners .partner-item:hover .partner-logo img {
            filter: grayscale(0%);
        }

      .key-partners .partner-name {
    margin-top: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    opacity: 0.8;
    transition: all 0.4s 
ease;
}
        .key-partners .partner-item:hover .partner-name {
            opacity: 1;
        }

        /* Supporting Associations Section */
        .supporting-associations {
            padding: 50px 0;
            background: linear-gradient(to bottom, var(--light-gray) 0%, var(--white) 100%);
        }

        .supporting-associations .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
            margin-bottom: 60px;
        }

        .supporting-associations .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-blue);
            border-radius: 2px;
        }
.supporting-associations .association-item {
    text-align: center;   
    padding: 0px 9px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(30, 91, 168, 0.08);
    transition: all 0.4s 
ease;
    margin: 0 15px; margin-bottom: 30px;
}
        .supporting-associations .association-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(30, 91, 168, 0.15);
        }


.supporting-associations .association-logo img {
    max-height: max-content;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 0;
    /* filter: grayscale(100%); */
    transition: all 0.4s 
ease;
}

        .supporting-associations .association-item:hover .association-logo img {
            filter: grayscale(0%);
        }

        .supporting-associations .association-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-blue);
        }

        @media (max-width: 992px) {
            .key-partners .section-title,
            .supporting-associations .section-title {
                font-size: 2.25rem;
            }
        }
.refcold-header .header-actions a.action-btn:nth-child(1) {
    background: #f56d2a;
    BORDER: NONE;
}

.refcold-header .header-actions a.action-btn:nth-child(3) {
    background: #489629;
    BORDER: NONE;
}
.event-location {
    padding: 50px 0;
    background: #084995;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
        .event-location::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(90, 173, 226, 0.15) 0%, transparent 70%);
            z-index: 0;
        }

        .event-location .container {
            position: relative;
            z-index: 2;
        }

        .event-location .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            position: relative;
            display: inline-block;
            margin-bottom: 70px;
            letter-spacing: 1px;
        }

        .event-location .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(to right, var(--cyan), var(--light-blue));
            border-radius: 5px;
        }

      .event-location .map-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    height: 429px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

        .event-location .map-card iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: brightness(1.05) contrast(1.1);
        }

        .event-location .info-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 24px;
            padding: 40px;
            height: 100%;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }

        .event-location .info-box:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
            background: rgba(255, 255, 255, 0.15);
        }

        .event-location .box-icon {
            font-size: 3rem;
            color: var(--cyan);
            margin-bottom: 25px;
            display: block;
        }

      .event-location .box-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

        .event-location .box-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
        }

       .event-location .venue-details {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 10px;
}
       .event-location .dates {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0;
}

        @media (max-width: 1200px) {
            .event-location .map-card {
                height: 450px;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 992px) {
            .event-location .section-title {
                font-size: 2.5rem;
            }

            .event-location .info-box {
                margin-bottom: 30px;
            }

            .event-location {
                padding: 100px 0;
            }
        }

        @media (max-width: 768px) {
            .event-location .map-card {
                height: 350px;
            }
        }


      .site-footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0a1f3a 50%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300" preserveAspectRatio="none"><path d="M0,100 C150,200 850,0 1000,100 L1000,300 L0,300 Z" fill="rgba(90,173,226,0.08)"></path></svg>') no-repeat bottom;
            background-size: cover;
            pointer-events: none;
        }

        .site-footer .container {
            position: relative;
            z-index: 2;
        }

      .site-footer .top-section {
    margin-bottom: 18px;
}

.site-footer .event-logo {
    max-width: 248px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    border: 3px solid rgba(90, 173, 226, 0.3);
    background: #fff;
    margin: 0 !important;
    padding: 0;
}
        .site-footer .event-logo:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
        }

        .site-footer .contact-phone {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--cyan);
            margin-top: 30px;
        }

        .site-footer .contact-phone i {
            font-size: 2.2rem;
            margin-right: 15px;
            color: var(--white);
        }

      .site-footer .footer-columns h5 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #7fc8ff;
    margin-bottom: 17px;
    position: relative;
    padding-bottom: 10px;
}
        .site-footer .footer-columns h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--cyan), transparent);
            border-radius: 2px;
        }

        .site-footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-links ul li {
            margin-bottom: 16px;
        }

      .site-footer .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s 
ease;
    display: inline-block;
    position: relative;
}

        .site-footer .footer-links ul li a::before {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--cyan);
            transition: width 0.4s ease;
        }

        .site-footer .footer-links ul li a:hover {
            color: var(--cyan);
            transform: translateX(8px);
        }

        .site-footer .footer-links ul li a:hover::before {
            width: 100%;
        }

        .site-footer .social-section h5 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--cyan);
            margin-bottom: 30px;
        }

        .site-footer .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            font-size: 1.6rem;
            border-radius: 16px;
            margin: 0 12px;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .site-footer .social-icons a:hover {
            background: var(--cyan);
            color: var(--dark-blue);
            transform: translateY(-12px) scale(1.1);
            box-shadow: 0 15px 30px rgba(90, 173, 226, 0.4);
        }

     .site-footer .copyright {
    text-align: center;
    margin-top: 16px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

        @media (max-width: 992px) {
            .site-footer .top-section {
                margin-bottom: 60px;
            }

            .site-footer .footer-columns {
                margin-bottom: 50px;
                text-align: center;
            }

            .site-footer .footer-columns h5::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .site-footer .social-section {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 100px 0 40px;
            }

            .site-footer .event-logo {
                max-width: 300px;
            }

            .site-footer .contact-phone {
                font-size: 1.5rem;
            }
        }
   .cta-section {
            padding: 40px 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 91, 168, 0.03) 0%, rgba(77, 144, 226, 0.05) 100%);
            z-index: 0;
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-section .cta-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .cta-section .cta-subtitle {
            font-size: 1.4rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .cta-section .btn-cta-primary {
            background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
            border: none;
            color: var(--white);
            padding: 16px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(30, 91, 168, 0.3);
            transition: all 0.4s ease;
            margin: 0 15px;
        }

        .cta-section .btn-cta-primary:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(30, 91, 168, 0.4);
            background: linear-gradient(to right, var(--light-blue), var(--primary-blue));
        }

        .cta-section .btn-cta-secondary {
            background: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 16px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            margin: 0 15px;
        }

        .cta-section .btn-cta-secondary:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(30, 91, 168, 0.2);
        }

        @media (max-width: 992px) {
            .cta-section .cta-title {
                font-size: 2.5rem;
            }

            .cta-section .cta-subtitle {
                font-size: 1.2rem;
            }

            .cta-section .btn-cta-primary,
            .cta-section .btn-cta-secondary {
                padding: 14px 32px;
                font-size: 1.1rem;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .cta-section {
                padding: 80px 0;
            }

            .cta-section .cta-title {
                font-size: 2.2rem;
            }

            .cta-section .btn-cta-primary,
            .cta-section .btn-cta-secondary {
                width: 100%;
                margin: 10px 0;
            }
        }











          .tabs-container {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .tabs-header {
            display: flex;
            background-color: var(--light-blue);
            border-bottom: 1px solid var(--border-color);
        }

        .tab-button {
            flex: 1;
            padding: 18px 20px;
            background: none;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gray);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .tab-button i {
            font-size: 1.2rem;
        }

        .tab-button:hover {
            background-color: rgba(255, 255, 255, 0.7);
        }

        .tab-button.active {
            color: var(--primary-blue);
            background-color: var(--white);
            border-bottom: 3px solid var(--primary-blue);
        }

        .tab-content {
            display: none;
            padding: 30px;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .video-item {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .video-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .video-thumbnail {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .video-item:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.7);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transition: background-color 0.3s ease;
        }

        .video-item:hover .play-button {
            background-color: rgba(230, 0, 0, 0.9);
        }

        .video-info {
            padding: 20px;
        }

        .video-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--black);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 3.2em;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 15px;
        }

        .load-more-container {
            text-align: center;
            margin-top: 20px;
        }

        .load-more-btn {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .load-more-btn:hover {
            background-color: #0d62d9;
        }

        .load-more-btn:disabled {
            background-color: var(--gray);
            cursor: not-allowed;
        }

        .no-videos {
            text-align: center;
            padding: 40px 20px;
            color: var(--gray);
            font-size: 1.1rem;
        }

      

        /* Responsive styles */
        @media (max-width: 768px) {
           
            
            .tab-button {
                padding: 15px 10px;
                font-size: 1rem;
            }
            
            .videos-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
            }
            
            .tab-content {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .tabs-header {
                flex-direction: column;
            }
            
            .tab-button {
                padding: 15px;
                justify-content: flex-start;
                border-bottom: 1px solid var(--border-color);
            }
            
            .tab-button.active {
                border-bottom: 3px solid var(--primary-blue);
            }
            
            .videos-grid {
                grid-template-columns: 1fr;
            }
         
        }

         /* Parent class for all styles */
        .refcold-why-visit {
            background-color: var(--light-gray);
            padding: 0;
            overflow-x: hidden;
        }

        .refcold-why-visit .hero-banner {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .refcold-why-visit .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/assets/img/Rectangle-13-1.jpg') center/cover;
            opacity: 0.1;
        }

        .refcold-why-visit .hero-banner h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease;
        }

        .refcold-why-visit .hero-banner p {
            font-size: 1.3rem;
            position: relative;
            z-index: 1;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

     .refcold-why-visit .intro-section {
    background-color: var(--white);
    padding: 80px 0;
    padding-bottom: 0;
}

        .refcold-why-visit .intro-section h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.3;
        }

        .refcold-why-visit .intro-section p {
            color: var(--dark-blue);
            font-size: 1.2rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .refcold-why-visit .reasons-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
        }

        .refcold-why-visit .reason-item {
            margin-bottom: 80px;
            position: relative;
        }

        .refcold-why-visit .reason-item:last-child {
            margin-bottom: 0;
        }

        .refcold-why-visit .reason-content {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .refcold-why-visit .reason-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-blue), var(--cyan));
            transition: width 0.4s ease;
        }

        .refcold-why-visit .reason-content:hover::before {
            width: 10px;
        }

        .refcold-why-visit .reason-content:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(30, 91, 168, 0.15);
        }

        .refcold-why-visit .reason-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
            position: relative;
            height: 100%;
            min-height: 400px;
        }

        .refcold-why-visit .reason-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .refcold-why-visit .reason-image:hover img {
            transform: scale(1.08);
        }

        .refcold-why-visit .reason-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 91, 168, 0.3), rgba(93, 173, 226, 0.2));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .refcold-why-visit .reason-image:hover::after {
            opacity: 1;
        }

        .refcold-why-visit .reason-number {
            position: absolute;
            top: -15px;
            left: 40px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            box-shadow: 0 5px 20px rgba(30, 91, 168, 0.4);
            z-index: 10;
        }

        .refcold-why-visit .icon-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
            border-radius: 20px;
            font-size: 2.2rem;
            color: var(--white);
            margin-bottom: 25px;
            box-shadow: 0 8px 25px rgba(30, 91, 168, 0.3);
            transition: all 0.3s ease;
        }

        .refcold-why-visit .reason-content:hover .icon-badge {
            transform: rotate(5deg) scale(1.1);
        }

        .refcold-why-visit .reason-content h3 {
            color: var(--dark-blue);
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
        }

        .refcold-why-visit .reason-content p {
            color: #555;
            line-height: 1.8;
            font-size: 1.05rem;
            margin: 0;
        }

        .refcold-why-visit .cta-section {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .refcold-why-visit .cta-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(93, 173, 226, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -200px;
        }

        .refcold-why-visit .cta-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
        }

        .refcold-why-visit .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .refcold-why-visit .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .refcold-why-visit .btn-custom {
            background-color: var(--cyan);
            color: var(--white);
            padding: 18px 50px;
            font-size: 1.2rem;
            border: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(93, 173, 226, 0.4);
            position: relative;
            z-index: 1;
        }

        .refcold-why-visit .btn-custom:hover {
            background-color: var(--white);
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        /* Mobile responsiveness */
        @media (max-width: 991px) {
            .refcold-why-visit .reason-image {
                min-height: 350px;
                margin-bottom: 30px;
            }

            .refcold-why-visit .reason-content {
                padding: 40px 30px;
            }

            .refcold-why-visit .reason-number {
                top: -20px;
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .refcold-why-visit .hero-banner {
                padding: 60px 0;
            }

            .refcold-why-visit .hero-banner h1 {
                font-size: 2rem;
            }

            .refcold-why-visit .hero-banner p {
                font-size: 1.1rem;
            }

            .refcold-why-visit .intro-section h2 {
                font-size: 1.8rem;
            }

            .refcold-why-visit .intro-section p {
                font-size: 1rem;
            }

            .refcold-why-visit .intro-section,
            .refcold-why-visit .reasons-section,
            .refcold-why-visit .cta-section {
                padding: 50px 0;
            }

            .refcold-why-visit .reason-item {
                margin-bottom: 50px;
            }

            .refcold-why-visit .reason-content h3 {
                font-size: 1.5rem;
            }

            .refcold-why-visit .reason-content p {
                font-size: 0.95rem;
            }

            .refcold-why-visit .icon-badge {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .refcold-why-visit .reason-image {
                min-height: 280px;
            }

            .refcold-why-visit .cta-section h2 {
                font-size: 2rem;
            }

            .refcold-why-visit .cta-section p {
                font-size: 1rem;
            }

            .refcold-why-visit .btn-custom {
                padding: 15px 35px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .refcold-why-visit .hero-banner h1 {
                font-size: 1.6rem;
            }

            .refcold-why-visit .intro-section h2 {
                font-size: 1.5rem;
            }

            .refcold-why-visit .reason-content {
                padding: 30px 20px;
            }

            .refcold-why-visit .reason-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }.refcold-why-visit .reason-number {
    display: none;
}

  /* Parent class for all styles */
        .refcold-exhibition {
            background-color: var(--light-gray);
            padding: 0;
            overflow-x: hidden;
        }

        /* Hero Banner */
        .refcold-exhibition .hero-banner {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .refcold-exhibition .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1200') center/cover;
            opacity: 0.1;
        }

        .refcold-exhibition .hero-banner h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease;
        }

        .refcold-exhibition .hero-banner p {
            font-size: 1.3rem;
            position: relative;
            z-index: 1;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Intro Section */
        .refcold-exhibition .intro-section {
            background-color: var(--white);
            padding: 80px 0;
        }

        .refcold-exhibition .intro-section h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.3;
        }

        .refcold-exhibition .intro-section p {
            color: var(--dark-blue);
            font-size: 1.2rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Reasons Section */
        .refcold-exhibition .reasons-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
        }

        .refcold-exhibition .reason-item {
            margin-bottom: 80px;
            position: relative;
        }

        .refcold-exhibition .reason-item:last-child {
            margin-bottom: 0;
        }

        .refcold-exhibition .reason-content {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .refcold-exhibition .reason-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-blue), var(--cyan));
            transition: width 0.4s ease;
        }

        .refcold-exhibition .reason-content:hover::before {
            width: 10px;
        }

        .refcold-exhibition .reason-content:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(30, 91, 168, 0.15);
        }

        .refcold-exhibition .reason-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
            position: relative;
            height: 100%;
            min-height: 400px;
        }

        .refcold-exhibition .reason-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .refcold-exhibition .reason-image:hover img {
            transform: scale(1.08);
        }

        .refcold-exhibition .reason-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 91, 168, 0.3), rgba(93, 173, 226, 0.2));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .refcold-exhibition .reason-image:hover::after {
            opacity: 1;
        }

        .refcold-exhibition .reason-number {
            position: absolute;
            top: -15px;
            left: 40px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            box-shadow: 0 5px 20px rgba(30, 91, 168, 0.4);
            z-index: 10;
        }

        .refcold-exhibition .icon-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
            border-radius: 20px;
            font-size: 2.2rem;
            color: var(--white);
            margin-bottom: 25px;
            box-shadow: 0 8px 25px rgba(30, 91, 168, 0.3);
            transition: all 0.3s ease;
        }

        .refcold-exhibition .reason-content:hover .icon-badge {
            transform: rotate(5deg) scale(1.1);
        }

        .refcold-exhibition .reason-content h3 {
            color: var(--dark-blue);
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
        }

        .refcold-exhibition .reason-content p {
            color: #555;
            line-height: 1.8;
            font-size: 1.05rem;
            margin: 0;
        }

        /* Industrial Refrigeration Section */
        .refcold-exhibition .industrial-section {
            background: var(--white);
            padding: 80px 0;
        }

        .refcold-exhibition .industrial-section h2 {
            color: var(--primary-blue);
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 20px;
        }

        .refcold-exhibition .industrial-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--cyan));
            border-radius: 2px;
        }

        .refcold-exhibition .industry-slider {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .refcold-exhibition .industry-slide {
            padding: 20px;
            text-align: center;
            outline: none;
        }

        .refcold-exhibition .industry-slide-inner {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .refcold-exhibition .industry-slide-inner:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(30, 91, 168, 0.15);
            border-color: var(--light-blue);
        }

        .refcold-exhibition .industry-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
        }

        .refcold-exhibition .industry-icon svg {
            width: 100%;
            height: 100%;
            fill: var(--primary-blue);
            transition: fill 0.3s ease;
        }

        .refcold-exhibition .industry-slide-inner:hover .industry-icon svg {
            fill: var(--cyan);
        }

        .refcold-exhibition .industry-slide h4 {
            color: var(--dark-blue);
            font-size: 1.3rem;
            margin-top: 15px;
        }

        /* Slick Slider Custom Styles */
        .refcold-exhibition .slick-prev,
        .refcold-exhibition .slick-next {
            width: 50px;
            height: 50px;
            background: var(--primary-blue) !important;
            border-radius: 50%;
            z-index: 10;
        }

        .refcold-exhibition .slick-prev:hover,
        .refcold-exhibition .slick-next:hover {
            background: var(--cyan) !important;
        }

        .refcold-exhibition .slick-prev {
            left: -60px;
        }

        .refcold-exhibition .slick-next {
            right: -60px;
        }

        .refcold-exhibition .slick-prev:before,
        .refcold-exhibition .slick-next:before {
            font-size: 24px;
        }

        .refcold-exhibition .slick-dots {
            bottom: -50px;
        }

        .refcold-exhibition .slick-dots li button:before {
            font-size: 12px;
            color: var(--primary-blue);
        }

        .refcold-exhibition .slick-dots li.slick-active button:before {
            color: var(--cyan);
        }

        /* Segments Section */
        .refcold-exhibition .segments-section {
            background: linear-gradient(135deg, var(--purple) 0%, #6a1b9a 100%);
            padding: 80px 0;
        }

        .refcold-exhibition .segments-section h2 {
            color: var(--white);
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 20px;
        }

        .refcold-exhibition .segments-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--white);
            border-radius: 2px;
        }

        .refcold-exhibition .segment-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 20px;
        }

        .refcold-exhibition .segment-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .refcold-exhibition .segment-icon {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 15px;
        }

        .refcold-exhibition .segment-card h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin: 0;
        }

        /* Transportation Section */
        .refcold-exhibition .transportation-section {
            background: var(--light-sky);
            padding: 80px 0;
        }

        .refcold-exhibition .transportation-section h2 {
            color: var(--primary-blue);
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
        }

        .refcold-exhibition .transport-content {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .refcold-exhibition .transport-list {
            list-style: none;
            padding: 0;
        }

        .refcold-exhibition .transport-list li {
            padding: 12px 0;
            color: var(--dark-blue);
            font-size: 1.1rem;
            position: relative;
            padding-left: 30px;
        }

        .refcold-exhibition .transport-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-blue);
        }

        .refcold-exhibition .transport-image {
            text-align: center;
        }

        .refcold-exhibition .transport-image img {
            max-width: 100%;
            height: auto;
        }

        /* Categories Section */
        .refcold-exhibition .categories-section {
            background: var(--white);
            padding: 80px 0;
        }

        .refcold-exhibition .categories-section h2 {
            color: var(--primary-blue);
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
        }

        .refcold-exhibition .category-columns {
            column-count: 3;
            column-gap: 30px;
        }

        .refcold-exhibition .category-item {
            break-inside: avoid;
            padding: 8px 0;
            color: var(--dark-blue);
            font-size: 0.95rem;
            position: relative;
            padding-left: 20px;
        }

        .refcold-exhibition .category-item::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--cyan);
            font-size: 0.7rem;
        }

        /* CTA Section */
        .refcold-exhibition .cta-section {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .refcold-exhibition .cta-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(93, 173, 226, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -200px;
        }

        .refcold-exhibition .cta-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
        }

        .refcold-exhibition .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .refcold-exhibition .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .refcold-exhibition .btn-custom {
            background-color: var(--cyan);
            color: var(--white);
            padding: 18px 50px;
            font-size: 1.2rem;
            border: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(93, 173, 226, 0.4);
            position: relative;
            z-index: 1;
        }

        .refcold-exhibition .btn-custom:hover {
            background-color: var(--white);
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        /* Mobile responsiveness */
        @media (max-width: 991px) {
            .refcold-exhibition .reason-image {
                min-height: 350px;
                margin-bottom: 30px;
            }

            .refcold-exhibition .reason-content {
                padding: 40px 30px;
            }

            .refcold-exhibition .reason-number {
                top: -20px;
                left: 50%;
                transform: translateX(-50%);
            }

            .refcold-exhibition .category-columns {
                column-count: 2;
            }

            .refcold-exhibition .slick-prev {
                left: -40px;
            }

            .refcold-exhibition .slick-next {
                right: -40px;
            }
        }

        @media (max-width: 768px) {
            .refcold-exhibition .hero-banner {
                padding: 60px 0;
            }

            .refcold-exhibition .hero-banner h1 {
                font-size: 2rem;
            }

            .refcold-exhibition .hero-banner p {
                font-size: 1.1rem;
            }

            .refcold-exhibition .intro-section h2,
            .refcold-exhibition .industrial-section h2,
            .refcold-exhibition .segments-section h2,
            .refcold-exhibition .transportation-section h2,
            .refcold-exhibition .categories-section h2 {
                font-size: 1.8rem;
            }

            .refcold-exhibition .intro-section p {
                font-size: 1rem;
            }

            .refcold-exhibition .intro-section,
            .refcold-exhibition .reasons-section,
            .refcold-exhibition .industrial-section,
            .refcold-exhibition .segments-section,
            .refcold-exhibition .transportation-section,
            .refcold-exhibition .categories-section,
            .refcold-exhibition .cta-section {
                padding: 50px 0;
            }

            .refcold-exhibition .reason-item {
                margin-bottom: 50px;
            }

            .refcold-exhibition .reason-content h3 {
                font-size: 1.5rem;
            }

            .refcold-exhibition .reason-content p {
                font-size: 0.95rem;
            }

            .refcold-exhibition .icon-badge {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .refcold-exhibition .reason-image {
                min-height: 280px;
            }

            .refcold-exhibition .category-columns {
                column-count: 1;
            }

            .refcold-exhibition .slick-prev,
            .refcold-exhibition .slick-next {
                width: 40px;
                height: 40px;
            }

            .refcold-exhibition .slick-prev {
                left: -20px;
            }

            .refcold-exhibition .slick-next {
                right: -20px;
            }

            .refcold-exhibition .cta-section h2 {
                font-size: 2rem;
            }

            .refcold-exhibition .cta-section p {
                font-size: 1rem;
            }

            .refcold-exhibition .btn-custom {
                padding: 15px 35px;
                font-size: 1rem;
            }

            .refcold-exhibition .segment-card {
                margin-bottom: 15px;
            }

            .refcold-exhibition .transport-content {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .refcold-exhibition .hero-banner h1 {
                font-size: 1.6rem;
            }

            .refcold-exhibition .intro-section h2 {
                font-size: 1.5rem;
            }

            .refcold-exhibition .reason-content {
                padding: 30px 20px;
            }

            .refcold-exhibition .reason-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .refcold-exhibition .industry-icon {
                width: 100px;
                height: 100px;
            }
        }

        section.segments-section .col-lg-3.col-md-4.col-sm-6 {
    margin-bottom: 20px;
}

.cold-chain-section {
            background: linear-gradient(135deg, var(--light-gray) 0%, #e9f2ff 100%);
            padding: 60px 0;
            font-family: 'Segoe UI', sans-serif;
        }

        .cold-chain-section .section-title {
            color: var(--dark-blue);
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .cold-chain-section .section-subtitle {
            color: var(--primary-blue);
            font-weight: 600;
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.4rem;
        }

        .cold-chain-section .sector-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(10, 37, 64, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .cold-chain-section .sector-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(10, 37, 64, 0.15);
        }

        .cold-chain-section .sector-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 4px solid var(--primary-blue);
        }

   .cold-chain-section .sector-title {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    height: 73px;
}   

        @media (max-width: 767px) {
            .cold-chain-section .section-title {
                font-size: 2rem;
            }
            .cold-chain-section .section-subtitle {
                font-size: 1.2rem;
            }
            .cold-chain-section .sector-img {
                height: 180px;
            }
        }


      .why-exhibit-wrapper .section-intro {
    background: var(--white);
    padding: 80px 53px;
    box-shadow: 0 5px 20px rgba(10, 37, 64, 0.08);
    margin: 60px 0;
    border-radius: 20px;
}

        .why-exhibit-wrapper .section-title {
            color: var(--dark-blue);
            font-size: 2.4rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
        }

        .why-exhibit-wrapper .section-subtitle {
            color: var(--primary-blue);
            font-size: 1.4rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px;
        }

        .why-exhibit-wrapper .benefits-list {
            list-style: none;
            padding: 0;
        }

        .why-exhibit-wrapper .benefits-list li {
            font-size: 1.1rem;
            line-height: 2;
            position: relative;
            padding-left: 40px;
            margin-bottom: 20px;
        }

        .why-exhibit-wrapper .benefits-list li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--cyan);
            font-size: 1.4rem;
        }

        .why-exhibit-wrapper .intro-img {
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            width: 100%;
            height: auto;
        }

     .why-exhibit-wrapper .cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-radius: 20px;
    margin: 0px 0;
}
.why-exhibit-wrapper .stats-section:before {
    display:none;
}
        .why-exhibit-wrapper .cta-banner p {
            font-size: 1.2rem;
            max-width: 1000px;
            margin: 0 auto 30px;
        }

        .why-exhibit-wrapper .btn-know-more {
            background: #ffd700;
            color: var(--dark-blue);
            font-weight: 700;
            padding: 12px 40px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .why-exhibit-wrapper .btn-know-more:hover {
            background: #ffed4e;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .why-exhibit-wrapper .impact-section {
            padding: 80px 0;
        }

        .why-exhibit-wrapper .impact-title {
            color: var(--dark-blue);
            font-size: 2.6rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .why-exhibit-wrapper .impact-title::after {
            content: '';
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--cyan), var(--light-blue));
            display: block;
            margin: 20px auto 0;
            border-radius: 2px;
        }

        .why-exhibit-wrapper .impact-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(10,37,64,0.1);
            transition: transform 0.4s ease;
            height: 100%;
        }

        .why-exhibit-wrapper .impact-card:hover {
            transform: translateY(-15px);
        }

        .why-exhibit-wrapper .impact-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .why-exhibit-wrapper .impact-text {
            padding: 30px;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #333;
        }

     .why-exhibit-wrapper .bottom-cta {
    background: linear-gradient(to bottom, var(--light-blue), var(--primary-blue));
    color: var(--white);
    padding: 70px 0;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0 0;
    margin-top: 0;
}img.stats-map.img-fluid {
    width: 100%;
    max-width: 100%;
    padding: 31px;
}

.why-exhibit-wrapper .stats-section {
    padding: 60px 0;
    background: #ffffff;
    margin-top: 50px;
}
        .why-exhibit-wrapper .stats-map {
            max-width: 600px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
          
        }

        .why-exhibit-wrapper .stat-item {
            background: var(--white);
            padding: 25px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .why-exhibit-wrapper .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        @media (max-width: 992px) {
            .why-exhibit-wrapper .hero-title { font-size: 2.5rem; }
            .why-exhibit-wrapper .hero-subtitle { font-size: 1.5rem; }
            .why-exhibit-wrapper .impact-title { font-size: 2.2rem; }
        }

        @media (max-width: 768px) {
            .why-exhibit-wrapper .hero-title { font-size: 2.2rem; }
            .why-exhibit-wrapper .hero-subtitle { font-size: 1.3rem; }
            .why-exhibit-wrapper .section-title { font-size: 2rem; }
            .why-exhibit-wrapper .impact-title { font-size: 2rem; }
            .why-exhibit-wrapper .benefits-list li { font-size: 1rem; padding-left: 35px; }
        }


     .exhibitor-form-wrapper {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 60px 0;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
}
        .exhibitor-form-wrapper .hero-banner {
            background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.8)), url('https://tigertrailers.co.uk/wp-content/uploads/2024/10/TCSD-Cold-Chain-Hub-Tiger-Stand.jpg') center/cover no-repeat;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
            border-radius: 0 0 30px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            margin-bottom: 80px;
        }

        .exhibitor-form-wrapper .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 3px 15px rgba(0,0,0,0.6);
        }

        .exhibitor-form-wrapper .hero-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            max-width: 800px;
            margin: 0 auto;
        }

        .exhibitor-form-wrapper .form-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(10, 37, 64, 0.15);
            max-width: 900px;
            margin: 0 auto;
        }

        .exhibitor-form-wrapper .form-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            padding: 40px;
            text-align: center;
        }

        .exhibitor-form-wrapper .form-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .exhibitor-form-wrapper .form-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .exhibitor-form-wrapper .form-body {
            padding: 50px;
        }

        .exhibitor-form-wrapper .form-label {
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 8px;
        }

        .exhibitor-form-wrapper .form-control,
        .exhibitor-form-wrapper .form-select {
            border-radius: 12px;
            border: 1px solid #ced4da;
            padding: 12px 16px;
            font-size: 1.05rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .exhibitor-form-wrapper .form-control:focus,
        .exhibitor-form-wrapper .form-select:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 0.25rem rgba(93, 173, 226, 0.25);
        }

        .exhibitor-form-wrapper .radio-group {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
        }

        .exhibitor-form-wrapper .radio-item {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .exhibitor-form-wrapper .radio-item input[type="radio"] {
            margin-right: 10px;
            accent-color: var(--primary-blue);
            transform: scale(1.3);
        }

        .exhibitor-form-wrapper .btn-submit {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            font-weight: 700;
            padding: 15px 50px;
            border-radius: 50px;
            border: none;
            font-size: 1.2rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(30, 91, 168, 0.3);
        }

        .exhibitor-form-wrapper .btn-submit:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(30, 91, 168, 0.4);
            background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
        }

        .exhibitor-form-wrapper .side-images {
            margin-top: 80px;
        }

        .exhibitor-form-wrapper .side-img {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            height: 300px;
            object-fit: cover;
            width: 100%;
        }

        @media (max-width: 992px) {
            .exhibitor-form-wrapper .hero-title { font-size: 2.8rem; }
            .exhibitor-form-wrapper .hero-subtitle { font-size: 1.5rem; }
            .exhibitor-form-wrapper .radio-group { flex-direction: column; gap: 15px; }
        }

        @media (max-width: 768px) {
            .exhibitor-form-wrapper .hero-title { font-size: 2.3rem; }
            .exhibitor-form-wrapper .form-body { padding: 30px; }
            .exhibitor-form-wrapper .form-header { padding: 30px; }
            .exhibitor-form-wrapper .hero-banner { padding: 80px 0; }
        }

     .about-wrapper {
    background: #f9fcff;
    padding: 0;
    
}section.Our-Key-Highlights {
    padding-bottom: 60px;
}
        .about-wrapper .hero-banner {
            background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('https://refcold.in/wp-content/uploads/2024/06/REFCOLD-Booth-1024x683.jpg') center/cover no-repeat;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
            border-radius: 0 0 30px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-bottom: 80px;
        }

        .about-wrapper .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .about-wrapper .hero-subtitle {
            font-size: 1.6rem;
            font-weight: 600;
        }

        .about-wrapper .section-title {
            color: var(--dark-blue);
            font-size: 2.4rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .about-wrapper .section-title::after {
            content: '';
            width: 120px;
            height: 5px;
            background: linear-gradient(to right, var(--cyan), var(--light-blue));
            display: block;
            margin: 20px auto 0;
            border-radius: 3px;
        }

        .about-wrapper .feature-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(10,37,64,0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }

        .about-wrapper .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 45px rgba(10,37,64,0.15);
        }

        .about-wrapper .feature-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-bottom: 5px solid var(--primary-blue);
        }

        .about-wrapper .feature-body {
            padding: 40px;
        }

        .about-wrapper .feature-subtitle {
            color: var(--primary-blue);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-wrapper .feature-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }

       .about-wrapper .welcome-section {
    background: #ffffff;
    padding: 60px 0;
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    margin-bottom: 0;
}
        .about-wrapper .welcome-title {
            color: var(--primary-blue);
            font-size: 2.6rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
        }

        .about-wrapper .closing-text {
            font-size: 1.2rem;
            line-height: 1.9;
            text-align: center;
            max-width: 1000px;
            margin: 80px auto 0;
            color: #333;
            font-style: italic;
        }

        @media (max-width: 992px) {
            .about-wrapper .hero-title { font-size: 2.8rem; }
            .about-wrapper .hero-subtitle { font-size: 1.4rem; }
            .about-wrapper .section-title { font-size: 2.2rem; }
            .about-wrapper .welcome-title { font-size: 2.3rem; }
        }

        @media (max-width: 768px) {
            .about-wrapper .hero-title { font-size: 2.4rem; }
            .about-wrapper .feature-img { height: 250px; }
            .about-wrapper .feature-body { padding: 30px; }
            .about-wrapper .welcome-section { padding: 60px 20px; }
        }

       .travel-partner-wrapper {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    padding: 50px 0;
    font-family: 'Segoe UI', sans-serif;
}

        .travel-partner-wrapper .section-title {
            color: var(--primary-blue);
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
        }

        .travel-partner-wrapper .partner-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15);
            max-width: 800px;
            margin: 0 auto;
            padding: 50px;
            text-align: center;
            transition: transform 0.4s ease;
        }

        .travel-partner-wrapper .partner-card:hover {
            transform: translateY(-10px);
        }

        .travel-partner-wrapper .partner-logo {
            max-width: 300px;
            height: auto;
            margin-bottom: 30px;
        }

        .travel-partner-wrapper .partner-name {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }

        .travel-partner-wrapper .info-label {
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 10px;
            text-align: left;
        }

        .travel-partner-wrapper .info-text {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 25px;
            text-align: left;
        }

        .travel-partner-wrapper .info-text a {
            color: var(--primary-blue);
            text-decoration: underline;
        }

        .travel-partner-wrapper .info-text a:hover {
            color: var(--light-blue);
        }

        .travel-partner-wrapper .contact-list {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .travel-partner-wrapper .contact-list li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .travel-partner-wrapper .contact-list li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--cyan);
            font-size: 1.3rem;
        }

        @media (max-width: 768px) {
            .travel-partner-wrapper .section-title {
                font-size: 2.3rem;
            }
            .travel-partner-wrapper .partner-name {
                font-size: 2rem;
            }
            .travel-partner-wrapper .partner-card {
                padding: 30px;
            }
            .travel-partner-wrapper .partner-logo {
                max-width: 250px;
            }
        }




       .video-gallery-wrapper {
  
    padding: 0px 0;
    padding-bottom: 50px;
    
}
        .video-gallery-wrapper .section-title {
            color: var(--dark-blue);
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
        }

        .video-gallery-wrapper .section-subtitle {
            color: var(--primary-blue);
            font-size: 1.6rem;
            text-align: center;
            margin-bottom: 80px;
            font-weight: 600;
        }

        .video-gallery-wrapper .year-title {
            color: var(--primary-blue);
            font-size: 2.4rem;
            font-weight: 700;
            text-align: center;
            margin: 50px 0 50px;
            position: relative;
        }

        .video-gallery-wrapper .year-title::after {
            content: '';
            width: 120px;
            height: 5px;
            background: linear-gradient(to right, var(--cyan), var(--light-blue));
            display: block;
            margin: 15px auto 0;
            border-radius: 3px;
        }

        .video-gallery-wrapper .video-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .video-gallery-wrapper .video-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(10, 37, 64, 0.2);
        }

        .video-gallery-wrapper .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            background: #000;
        }

        .video-gallery-wrapper .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

     .video-gallery-wrapper .video-title

 {
    padding: 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: center;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

        .video-gallery-wrapper .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            color: rgba(255,255,255,0.8);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .video-gallery-wrapper .video-card:hover .play-icon {
            opacity: 1;
        }

        @media (max-width: 992px) {
            .video-gallery-wrapper .section-title { font-size: 2.6rem; }
            .video-gallery-wrapper .year-title { font-size: 2.2rem; }
        }

        @media (max-width: 768px) {
            .video-gallery-wrapper .section-title { font-size: 2.3rem; }
            .video-gallery-wrapper .section-subtitle { font-size: 1.4rem; }
            .video-gallery-wrapper .year-title { font-size: 2rem; margin: 60px 0 40px; }
            .video-gallery-wrapper .video-title { font-size: 1.05rem; padding: 20px; }
        }


        .articles-wrapper {
         
            padding: 50px 0;
         
        }

        .articles-wrapper .section-title {
            color: var(--dark-blue);
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
        }

        .articles-wrapper .section-subtitle {
            color: var(--primary-blue);
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 80px;
        }

        .articles-wrapper .article-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .articles-wrapper .article-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(10, 37, 64, 0.2);
        }

        .articles-wrapper .article-title {
            color: var(--dark-blue);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .articles-wrapper .article-author {
            color: var(--primary-blue);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .articles-wrapper .article-excerpt {
            color: #444;
            font-size: 1.05rem;
            line-height: 1.7;
            flex-grow: 1;
        }

        .articles-wrapper .btn-read-more {
            background: var(--cyan);
            color: var(--white);
            font-weight: 700;
            padding: 10px 30px;
            border-radius: 50px;
            align-self: flex-end;
            margin-top: 25px;
            transition: all 0.3s ease;
        }

        .articles-wrapper .btn-read-more:hover {
            background: var(--light-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(93, 173, 226, 0.3);
        }

        @media (max-width: 992px) {
            .articles-wrapper .section-title { font-size: 2.6rem; }
            .articles-wrapper .section-subtitle { font-size: 1.6rem; }
            .articles-wrapper .article-title { font-size: 1.4rem; }
        }

        @media (max-width: 768px) {
            .articles-wrapper .section-title { font-size: 2.3rem; }
            .articles-wrapper .section-subtitle { font-size: 1.4rem; }
            .articles-wrapper .article-title { font-size: 1.3rem; }
            .articles-wrapper .article-card { padding: 20px; }
        }

        .blog-wrapper {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 50px 0;
           
        }

        .blog-wrapper .section-title {
            color: var(--dark-blue);
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
        }

        .blog-wrapper .section-subtitle {
            color: var(--primary-blue);
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 80px;
        }

        .blog-wrapper .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }

        .blog-wrapper .blog-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(10, 37, 64, 0.2);
        }

        .blog-wrapper .blog-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .blog-wrapper .blog-body {
            padding: 30px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .blog-wrapper .blog-title {
            color: var(--dark-blue);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-wrapper .blog-excerpt {
            color: #444;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .blog-wrapper .blog-meta {
            font-size: 0.95rem;
            color: #777;
            margin-bottom: 20px;
        }

        .blog-wrapper .btn-read-more {
            background: var(--cyan);
            color: var(--white);
            font-weight: 700;
            padding: 10px 30px;
            border-radius: 50px;
            align-self: flex-start;
            transition: all 0.3s ease;
        }

        .blog-wrapper .btn-read-more:hover {
            background: var(--light-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(93, 173, 226, 0.3);
        }

        @media (max-width: 992px) {
            .blog-wrapper .section-title { font-size: 2.6rem; }
            .blog-wrapper .section-subtitle { font-size: 1.6rem; }
            .blog-wrapper .blog-title { font-size: 1.3rem; }
        }

        @media (max-width: 768px) {
            .blog-wrapper .section-title { font-size: 2.3rem; }
            .blog-wrapper .section-subtitle { font-size: 1.4rem; }
            .blog-wrapper .blog-img { height: 200px; }
            .blog-wrapper .blog-body { padding: 20px; }
        }

     .blog-detail-wrapper {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 50px 0;
    font-family: 'Segoe UI', sans-serif;
}

        .blog-detail-wrapper .blog-header {
            background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('https://via.placeholder.com/1920x600/0a2540/ffffff?text=Green+Refrigerants+Banner') center/cover no-repeat;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
            border-radius: 0 0 30px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            margin-bottom: 80px;
        }

        .blog-detail-wrapper .blog-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 3px 10px rgba(0,0,0,0.6);
        }

        .blog-detail-wrapper .blog-subtitle {
            font-size: 2rem;
            font-weight: 600;
        }

      .blog-detail-wrapper .article-content {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15);
    max-width: 100%;
    margin: 0 auto;
}

        .blog-detail-wrapper .article-content h1,
        .blog-detail-wrapper .article-content h2,
        .blog-detail-wrapper .article-content h3 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .blog-detail-wrapper .article-content h1 {
            font-size: 2.8rem;
        }

        .blog-detail-wrapper .article-content h2 {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
        }

        .blog-detail-wrapper .article-content h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--cyan), var(--light-blue));
            display: block;
            margin-top: 10px;
            border-radius: 2px;
        }

        .blog-detail-wrapper .article-content p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #444;
            margin-bottom: 25px;
        }

        .blog-detail-wrapper .article-content ul {
            padding-left: 30px;
            margin-bottom: 30px;
        }

        .blog-detail-wrapper .article-content ul li {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 12px;
            position: relative;
        }

        .blog-detail-wrapper .article-content ul li::marker {
            color: var(--cyan);
            font-weight: bold;
        }

        .blog-detail-wrapper .article-img {
            width: 100%;
            border-radius: 16px;
           
            margin: 20px 0;
        }

        .blog-detail-wrapper .cta-link {
            display: inline-block;
            background: var(--primary-blue);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 30px;
            transition: all 0.3s ease;
        }

        .blog-detail-wrapper .cta-link:hover {
            background: var(--light-blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(74,144,226,0.3);
        }

        @media (max-width: 992px) {
            .blog-detail-wrapper .blog-title { font-size: 2.8rem; }
            .blog-detail-wrapper .blog-subtitle { font-size: 1.7rem; }
            .blog-detail-wrapper .article-content { padding: 40px; }
            .blog-detail-wrapper .article-content h1 { font-size: 2.4rem; }
        }

        @media (max-width: 768px) {
            .blog-detail-wrapper .blog-title { font-size: 2.4rem; }
            .blog-detail-wrapper .blog-subtitle { font-size: 1.5rem; }
            .blog-detail-wrapper .blog-header { padding: 80px 0; }
            .blog-detail-wrapper .article-content { padding: 30px; }
            .blog-detail-wrapper .article-content h1 { font-size: 2.1rem; }
            .blog-detail-wrapper .article-content h2 { font-size: 1.8rem; }
        }


      .sessions-wrapper {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 50px 0;
    font-family: 'Segoe UI', sans-serif;
}
        .sessions-wrapper .section-title {
            color: var(--dark-blue);
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom:40px;
        }

       .sessions-wrapper .nav-tabs {
    /* border-bottom: 3px solid var(--light-blue); */
    justify-content: center;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 15px;
}

        .sessions-wrapper .nav-tabs .nav-link {
            background: var(--white);
            color: var(--dark-blue);
            font-weight: 700;
            font-size: 1.3rem;
            padding: 15px 40px;
            border-radius: 50px;
            border: none;
            box-shadow: 0 5px 15px rgba(10,37,64,0.1);
            transition: all 0.3s ease;
        }

        .sessions-wrapper .nav-tabs .nav-link:hover {
            background: var(--light-gray);
            transform: translateY(-5px);
        }

        .sessions-wrapper .nav-tabs .nav-link.active {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            box-shadow: 0 10px 25px rgba(30,91,168,0.3);
        }

        .sessions-wrapper .tab-pane {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(10,37,64,0.15);
            text-align: center;
        }

        .sessions-wrapper .session-img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        @media (max-width: 992px) {
            .sessions-wrapper .section-title { font-size: 2.6rem; }
            .sessions-wrapper .nav-tabs .nav-link { font-size: 1.1rem; padding: 12px 30px; }
        }

        @media (max-width: 768px) {
            .sessions-wrapper .section-title { font-size: 2.3rem; }
            .sessions-wrapper .nav-tabs { flex-direction: column; align-items: center; }
            .sessions-wrapper .nav-tabs .nav-link { width: 80%; text-align: center; }
            .sessions-wrapper .tab-pane { padding: 20px; }
        }

       .sessions-wrapper  .tab-content {
    display: block;
    padding: 0;
}

.committee-wrapper {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 50px 0;
    
}

        .committee-wrapper .section-title {
            color: var(--dark-blue);
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
        }

       .committee-wrapper .section-subtitle {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

        .committee-wrapper .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .committee-wrapper .member-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15);
            transition: all 0.4s ease;
            position: relative;
            text-align: center;
        }

        .committee-wrapper .member-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 25px 60px rgba(10, 37, 64, 0.25);
        }

        .committee-wrapper .member-img {
        }

        .committee-wrapper .member-card:hover .member-img {
        }

        .committee-wrapper .member-overlay {
        }

        .committee-wrapper .member-card:hover .member-overlay {
            opacity: 1;
        }

        .committee-wrapper .member-body {
            padding: 1rem;
        }

        .committee-wrapper .member-name {
            color: var(--dark-blue);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0;
        }

        .committee-wrapper .member-role {
            color: var(--primary-blue);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .committee-wrapper .member-year {
            color: #666;
            font-size: 1rem;
        }

        @media (max-width: 992px) {
            .committee-wrapper .section-title { font-size: 2.6rem; }
            .committee-wrapper .section-subtitle { font-size: 1.6rem; }
            .committee-wrapper .members-grid {grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));gap: 25px;}
        }

        @media (max-width: 768px) {
            .committee-wrapper .section-title { font-size: 2.3rem; }
            .committee-wrapper .section-subtitle { font-size: 1.4rem; }
            .committee-wrapper .member-img { height: 280px; }
            .committee-wrapper .member-body {padding: 10px !IMPORTANT;}
            .committee-wrapper .member-name { font-size: 1.4rem; }
        }


        @media(max-width:767px){
            .refcold-header .logo {
    max-height: 60px;
    width: 100%;
}.refcold-header .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}.refcold-header .action-btn {
    padding: 7px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}.refcold-header .main-header {
    padding: 5px 0;
    background: #e9f6fe;
}button.navbar-toggler {
    background: #fff;
    margin: 6px;
}.refcold-hero h1 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}.refcold-hero .hero-details {
    font-size: 13px;
    margin-bottom: 17px;
    opacity: 1;
}.refcold-hero .hero-subtitle {
    font-size: 17px;
    margin-bottom: 5px;
    font-weight: 600;
}.refcold-hero img {
    width: 341px;
    display: none;
}.refcold-section .section-title {
        font-size: 25px;
    }    .refcold-section .content-box {
        padding: 0;
    }


.refcold-section .content-box {
    background: var(--white);
    padding: 23px;
    border-radius: 20px;
    box-shadow: none;
    height: 100%;
}    .refcold-section .section-title {
        font-size: 19px;
    }.refcold-section .section-subtitle {
        font-size: 20px;
    }.refcold-section .content-text {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 25px;
    height: auto;
    overflow: auto;
    padding-right: 0;
}.refcold-section .know-more-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    border: none;
    padding: 11px 27px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 91, 168, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}.refcold-section .icon-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 10px;
}    .video-wrapper .section-title {
        font-size: 25px;
    }    .tab-button {
        padding: 15px;
        justify-content: flex-start;
        border-bottom: 1px solid var(--border-color);
        color: #fff;
    }.stats-section .stat-number {
        font-size: 20px;
    }.testimonials .slick-prev, .testimonials .slick-next {
        display: none;
    }
        }

        .privacy-wrapper {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 100px 0;
            font-family: 'Segoe UI', sans-serif;
        }

        .privacy-wrapper .section-title {
            color: var(--dark-blue);
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
        }

        .privacy-wrapper .last-updated {
            color: var(--primary-blue);
            font-size: 1.4rem;
            text-align: center;
            margin-bottom: 80px;
            font-weight: 600;
        }

      .privacy-wrapper .privacy-content {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    max-width: 100%;
    margin: 0 auto;
}.privacy-wrapper {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 100px 0;
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
}.privacy-wrapper .privacy-content ul li {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    color: #000;
}.privacy-wrapper .privacy-content {
    background: var(--white) !important;
    border-radius: 20px;
    padding: 60px;
    max-width: 100%;
    margin: 0 auto;
    opacity: 1;
}.privacy-wrapper {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 40px 0;
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
}

        .privacy-wrapper .privacy-content h1,
        .privacy-wrapper .privacy-content h2,
        .privacy-wrapper .privacy-content h3 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-top: 50px;
            margin-bottom: 20px;
        }

        .privacy-wrapper .privacy-content h1 {
            font-size: 2.8rem;
            text-align: center;
        }

        .privacy-wrapper .privacy-content h2 {
            font-size: 2rem;
            position: relative;
            padding-bottom: 15px;
        }

        .privacy-wrapper .privacy-content h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--cyan), var(--light-blue));
            display: block;
            margin-top: 10px;
            border-radius: 2px;
        }

        .privacy-wrapper .privacy-content p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #444;
            margin-bottom: 25px;
        }

        .privacy-wrapper .privacy-content ul {
            padding-left: 30px;
            margin-bottom: 30px;
        }

        .privacy-wrapper .privacy-content ul li {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 12px;
            position: relative;
        }

        .privacy-wrapper .privacy-content ul li::marker {
            color: var(--cyan);
            font-weight: bold;
        }

        .privacy-wrapper .contact-info {
            background: var(--light-gray);
            border-radius: 16px;
            padding: 30px;
            margin-top: 50px;
            font-size: 1.1rem;
        }

        .privacy-wrapper .contact-info strong {
            color: var(--dark-blue);
        }

        .privacy-wrapper .cta-link {
            display: inline-block;
            background: var(--primary-blue);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .privacy-wrapper .cta-link:hover {
            background: var(--light-blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(74,144,226,0.3);
        }

        @media (max-width: 992px) {
            .privacy-wrapper .section-title { font-size: 2.6rem; }
            .privacy-wrapper .privacy-content { padding: 40px; }
            .privacy-wrapper .privacy-content h1 { font-size: 2.4rem; }
        }

        @media (max-width: 768px) {
            .privacy-wrapper .section-title { font-size: 2.3rem; }
            .privacy-wrapper .last-updated { font-size: 1.2rem; }
            .privacy-wrapper .privacy-content { padding: 30px; }
            .privacy-wrapper .privacy-content h1 { font-size: 2.1rem; }
            .privacy-wrapper .privacy-content h2 { font-size: 1.8rem; }
        }

       section.key-partners img.keypartner {
    display: flex;
    width: 100%;
}.contact-phone a {
    color: #fff;
    text-decoration: none;
}
.site-footer .footer-links ul li a {
    font-size: 15px;
}
.site-footer .footer-links ul li {
    margin-bottom: 5px;
}

 .contact-page-wrapper {
            --primary-blue: #1e40af;
            --light-blue: #3b82f6;
            --sky-blue: #60a5fa;
            --white: #ffffff;
            --black: #1f2937;
            --gray-light: #f3f4f6;
            --gray-border: #e5e7eb;
        }

        .contact-page-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .contact-page-wrapper {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
            min-height: 100vh;
            padding: 60px 0;
        }

        .contact-page-wrapper .hero-section {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease;
        }

        .contact-page-wrapper .hero-section h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .contact-page-wrapper .hero-section p {
            font-size: 1.2rem;
            color: var(--black);
            opacity: 0.7;
        }

        .contact-page-wrapper .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-page-wrapper .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .contact-page-wrapper .contact-info-card {
            background: var(--white);
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInLeft 0.8s ease;
        }

        .contact-page-wrapper .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
        }

        .contact-page-wrapper .info-section {
            margin-bottom: 40px;
        }

        .contact-page-wrapper .info-section:last-child {
            margin-bottom: 0;
        }

        .contact-page-wrapper .section-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--gray-border);
        }

        .contact-page-wrapper .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
        }

        .contact-page-wrapper .section-title h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin: 0;
        }

        .contact-page-wrapper .contact-person {
            background: var(--gray-light);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .contact-page-wrapper .contact-person:hover {
            background: #e0f2fe;
            border-left-color: var(--light-blue);
            transform: translateX(5px);
        }

        .contact-page-wrapper .contact-person:last-child {
            margin-bottom: 0;
        }

        .contact-page-wrapper .person-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-page-wrapper .person-name i {
            color: var(--light-blue);
            font-size: 0.9rem;
        }

        .contact-page-wrapper .contact-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 8px 0;
            color: var(--black);
            opacity: 0.8;
        }

        .contact-page-wrapper .contact-detail i {
            color: var(--light-blue);
            width: 18px;
        }

        .contact-page-wrapper .contact-detail a {
            color: var(--light-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-page-wrapper .contact-detail a:hover {
            color: var(--primary-blue);
            text-decoration: underline;
        }

        .contact-page-wrapper .form-card {
            background: var(--white);
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.08);
            animation: fadeInRight 0.8s ease;
        }

        .contact-page-wrapper .form-card h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .contact-page-wrapper .form-card .subtitle {
            color: var(--black);
            opacity: 0.7;
            margin-bottom: 35px;
        }

        .contact-page-wrapper .form-group {
            margin-bottom: 25px;
        }

        .contact-page-wrapper .form-label {
            font-weight: 600;
            color: var(--black);
            margin-bottom: 10px;
            display: block;
        }

        .contact-page-wrapper .form-control {
            border: 2px solid var(--gray-border);
            border-radius: 12px;
            padding: 14px 18px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .contact-page-wrapper .form-control:focus {
            border-color: var(--light-blue);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            outline: none;
        }

        .contact-page-wrapper textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .contact-page-wrapper .submit-btn {
            background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
            color: var(--white);
            border: none;
            border-radius: 12px;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .contact-page-wrapper .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }

        .contact-page-wrapper .submit-btn:active {
            transform: translateY(0);
        }

        .contact-page-wrapper .map-section {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.08);
            animation: fadeInUp 0.8s ease;
        }

        .contact-page-wrapper .map-section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 25px;
            text-align: center;
        }

        .contact-page-wrapper .map-container {
            border-radius: 16px;
            overflow: hidden;
            height: 450px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-page-wrapper .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1024px) {
            .contact-page-wrapper .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-page-wrapper .hero-section h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .contact-page-wrapper {
                padding: 40px 0;
            }

            .contact-page-wrapper .hero-section h1 {
                font-size: 2rem;
            }

            .contact-page-wrapper .hero-section p {
                font-size: 1rem;
            }

            .contact-page-wrapper .contact-info-card,
            .contact-page-wrapper .form-card,
            .contact-page-wrapper .map-section {
                padding: 30px 20px;
            }

            .contact-page-wrapper .map-container {
                height: 350px;
            }
        }
        
        
                .registration-form-wrapper {
            --primary-blue: #0047AB;
            --light-blue: #4A90E2;
            --sky-blue: #87CEEB;
            --white: #ffffff;
            --black: #000000;
            --dark-gray: #333333;
            --light-gray: #f5f8fc;
        }

        .registration-form-wrapper * {
          
            box-sizing: border-box;
        }

        .registration-form-wrapper {
        
            padding: 30px 15px;
        }

        .registration-form-wrapper .main-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Logo Section */
        .registration-form-wrapper .logo-section {
            text-align: center;
            margin-bottom: 30px;
            background: var(--white);
            padding: 40px 20px;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -5px 20px rgba(0, 71, 171, 0.1);
        }

        .registration-form-wrapper .logo-box {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            padding: 25px 60px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 71, 171, 0.3);
            margin-bottom: 20px;
        }

        .registration-form-wrapper .logo-text {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--white);
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .registration-form-wrapper .logo-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .registration-form-wrapper .logo-section p {
            font-size: 1.2rem;
            color: var(--dark-gray);
        }

        /* Form Container */
      .registration-form-wrapper .form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 0 0 20px 20px;
    border: 1px solid #ddd;
    border-radius: 40px;
}

        .registration-form-wrapper .section-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            padding: 15px 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .registration-form-wrapper .section-header i {
            font-size: 1.5rem;
        }

        .registration-form-wrapper .section-header h3 {
            margin: 0;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .registration-form-wrapper .form-group {
            margin-bottom: 25px;
        }

        .registration-form-wrapper .form-label {
            font-weight: 600;
            color: var(--black);
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .registration-form-wrapper .required {
            color: #dc3545;
        }

        .registration-form-wrapper .form-control {
            border: 2px solid #d1d5db;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .registration-form-wrapper .form-control:focus {
            border-color: var(--light-blue);
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
            outline: none;
        }

        /* Custom Select Dropdown */
        .registration-form-wrapper .custom-select {
            position: relative;
        }

        .registration-form-wrapper .custom-select select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background: var(--white);
            border: 2px solid #d1d5db;
            border-radius: 8px;
            padding: 12px 40px 12px 15px;
            font-size: 1rem;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .registration-form-wrapper .custom-select select:focus {
            border-color: var(--light-blue);
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
            outline: none;
        }

        .registration-form-wrapper .custom-select::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--light-blue);
            pointer-events: none;
            font-size: 1.2rem;
        }

        /* Consent Box */
        .registration-form-wrapper .consent-box {
            background: var(--light-gray);
            border: 2px solid var(--light-blue);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0 30px;
        }

        .registration-form-wrapper .consent-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            color: var(--primary-blue);
        }

        .registration-form-wrapper .consent-header i {
            font-size: 1.8rem;
        }

        .registration-form-wrapper .consent-header h4 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .registration-form-wrapper .consent-text {
            max-height: 350px;
            overflow-y: auto;
            padding: 20px;
            background: var(--white);
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        .registration-form-wrapper .consent-text::-webkit-scrollbar {
            width: 10px;
        }

        .registration-form-wrapper .consent-text::-webkit-scrollbar-track {
            background: #e5e7eb;
            border-radius: 10px;
        }

        .registration-form-wrapper .consent-text::-webkit-scrollbar-thumb {
            background: var(--light-blue);
            border-radius: 10px;
        }

        .registration-form-wrapper .consent-text h5 {
            color: var(--primary-blue);
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .registration-form-wrapper .consent-text h5:first-child {
            margin-top: 0;
        }

        .registration-form-wrapper .consent-text strong {
            color: var(--black);
        }

        .registration-form-wrapper .consent-check {
            display: flex;
            align-items: start;
            gap: 15px;
            padding: 20px;
            background: var(--white);
            border: 2px solid var(--light-blue);
            border-radius: 8px;
        }

        .registration-form-wrapper .consent-check input[type="checkbox"] {
            width: 24px;
            height: 24px;
            cursor: pointer;
            accent-color: var(--primary-blue);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .registration-form-wrapper .consent-check label {
            font-weight: 600;
            color: var(--black);
            cursor: pointer;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Submit Button */
        .registration-form-wrapper .submit-container {
            text-align: center;
            margin-top: 40px;
        }

        .registration-form-wrapper .btn-submit {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            border: none;
            border-radius: 50px;
            padding: 18px 80px;
            font-size: 1.3rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 71, 171, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .registration-form-wrapper .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 71, 171, 0.4);
        }

        .registration-form-wrapper .btn-submit i {
            margin-right: 10px;
        }

        /* Footer */
        .registration-form-wrapper .footer-info {
            text-align: center;
            margin-top: 30px;
            padding: 25px;
            background: var(--light-gray);
            border-radius: 10px;
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .registration-form-wrapper .footer-info strong {
            color: var(--primary-blue);
            font-size: 1.1rem;
            display: block;
            margin-bottom: 10px;
        }

        /* Success Message */
        .registration-form-wrapper .success-alert {
            display: none;
            background: #10b981;
            color: var(--white);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .registration-form-wrapper .success-alert.show {
            display: block;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .registration-form-wrapper .logo-text {
                font-size: 2.5rem;
            }

            .registration-form-wrapper .logo-section h1 {
                font-size: 1.8rem;
            }

            .registration-form-wrapper .form-box {
                padding: 30px 20px;
            }

            .registration-form-wrapper .btn-submit {
                padding: 16px 50px;
                font-size: 1.1rem;
                width: 100%;
            }
        }.registration-form-wrapper img {
    width: 220px;
    margin: 0 auto;
    display: flex;
    margin-bottom: 20px;
}
/* Hero Banner */
.hero-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-banner h1 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Committee Wrapper */
.committee-wrapper {
    padding: 0;
    margin: 0;
}

.section-title {
    color: white;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Category Section */
.category-section {
    margin-bottom: 60px;
}

.category-title {
    color: #1e5ba8;
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgb(30 91 168);
    text-align: center;
}

/* Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Member Card */
.member-card {
    position: relative;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.member-img-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #0585b9;
    overflow: hidden;
}

.member-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90% !important;
    height: 90% !important;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.member-body {
    padding: 25px;
    text-align: center;
}

.member-name {
}

.member-role {
}

.member-year {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Loading State */
.loading {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    padding: 60px 20px;
    font-weight: 500;
}

/* Error State */
.error-message {
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .member-img {
        width: 150px;
        height: 150px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .members-grid {
    }
}