/* ===============================
   GLOBAL / PAGE LAYOUT
================================ */
html, body {
  height: 100%;
  margin: 0px;
  background-color: #0A0A0A;
  font-family: Inter, sans-serif;
}
body.home,
body.front-page {
    padding: 0;
    margin: 0;
}
body{
      padding-top: 80px;


      

}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.glow { text-shadow: 0 0 10px hsl(210 100% 60% / 0.7), 0 0 40px hsl(210 100% 60% / 0.25); }

.text-gradient {
  background: linear-gradient(
    90deg,
    #3b82f6,   /* from (blue) */
    #00e5ff,   /* via (neon blue) */
    #a855f7    /* to (purple) */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes glowPulse {
  from {
    text-shadow:
      0 0 5px #66b3ff,
      0 0 10px #66b3ff,
      0 0 20px #3399ff;
  }
  to {
    text-shadow:
      0 0 10px #66b3ff,
      0 0 20px #3399ff,
      0 0 40px #0073e6;
  }
}

h1{
  font-size: 72px;
}
.navbar {
  width: 100%;
  padding: 0 40px; 
  box-sizing: border-box;
}
.navbar-brand {
    margin-right: auto;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer {
    width: 100%;        
    background: #000;   
}

.footer-container {
    margin: 0 auto;      

    text-align: center;
}

/* Tablet */
@media (max-width: 1024px) {
    .container,
    .main-content,
    .services-section,
    .about-section {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container,
    .main-content,
    .services-section,
    .about-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
p {
    color: gray;
    font-size: 20px;;
}
.main-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ===============================
header
================================ */
/* RESET */
body {
  margin: 0;
  font-family: Inter, sans-serif;
}

/* HEADER */
#site-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: 0.3s ease;
}

/* SCROLL EFFECT */
#site-header.scrolled {
  background: black;
  backdrop-filter: blur(8px);
}


.contact-section {
  background: #05070d;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Title */
.contact-title {
  font-size: 60px;
  font-weight: 800;
}

.contact-title span {
  color: #3aa0ff;
  font-style: italic;
}

/* Subtitle */
.contact-subtitle {
  letter-spacing: 3px;
  color: #3aa0ff;
  font-size: 12px;
}

/* Icon box */
.icon-box {
  width: 50px;
  height: 50px;
  background: #0d111a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(58, 160, 255, 0.4);
}

/* Form container */
.contact-form-box {
  background: #0b0f19;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(58, 160, 255, 0.2);
}

/* Inputs */
.contact-form-box .form-control {
  background: transparent;
  border: 1px solid #1f2a3a;
  color: #fff;
  border-radius: 10px;
}

.contact-form-box .form-control:focus {
  border-color: #3aa0ff;
  box-shadow: 0 0 10px rgba(58, 160, 255, 0.5);
}

/* Button */
.contact-btn {
  background: linear-gradient(90deg, #3aa0ff, #1c6ed5);
  border: none;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.contact-btn:hover {
  box-shadow: 0 0 20px rgba(58, 160, 255, 0.6);
}

/* HAMBURGER */
.navbar-toggler {
  border: none;
}



.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}




#close-menu {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

#close-menu:hover {
  opacity: 0.6;
}
/* MENU ITEMS */
.menu-list {
  list-style: none;
  padding-left: 30px;
}

.menu-list li {
  margin-bottom: 15px;
}

.menu-list a {
  color: #8aa3b5;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
  display: block;

  text-shadow: 0 0 5px rgba(168,85,247,0.3);
}
/* POPUP MENU */
#popup-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.4s ease;
    font-family: 'Bebas Neue', sans-serif !important;

    z-index: 9999;
}

#popup-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* MENU ITEMS */
/* MENU ITEMS */
.menu-list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
}

.menu-list li {
    margin: 20px 0;
}

.menu-list a {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
    transform-origin: center;
}

.menu-list a:hover {
    color: #3399FF;
    transform: scale(1.15);
}





/* ===============================
   BANNER / CAROUSEL
================================ */
.banner-container {
  position: relative;
}

.banner-img {
  height: 100vh;
  object-fit: cover;
}

/* Dark overlay text background */
.carousel-caption {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* White text helper */
.white-text {
  color: #fff;
}


/* ===============================
   SCROLL INDICATOR
================================ */
.scroll-wrapper {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  letter-spacing: 3px;
  font-size: 14px;
  z-index: 10;
  animation: float 1.8s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #23B7FF, transparent);
  margin: 10px auto 0;
}

/* Scroll animation */
@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ======================
   SECTION BACKGROUND
====================== */
.about-section {
  color: #fff; 
  margin-top: 120px;
}
.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.glow-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    padding: 5px;
}

.glow-wrapper::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 25px;
    background: linear-gradient(135deg, #0B242B);
    filter: blur(25px);
    opacity: 0.7;
    z-index: -1;
}

.about-img {
    border-radius: 15px;
    display: block;
}
/* ======================
   Services
====================== */
.service-card {
  background-color: #111;
  transition: all 0.4s ease;
  overflow: hidden;
        border-color: 
        hsl(210 20% 15% / 1) !important;

}

.service-card:hover {
  transform: scale(1.03);
  border-color: hsl(210 100% 60% / 0.5) !important;
  box-shadow: 0 0 25px rgba(155,92,255,0.3),
              0 0 60px rgba(155,92,255,0.1);
}

.service-card img {
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}


.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #111, rgba(17,17,17,0.5), transparent);
}

.icon-box {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 10px;
  border-radius: 10px;
background: rgba(51, 151, 253, 0.2);
  backdrop-filter: blur(5px);
  transition: 0.3s;
}
.icon-clock {
  width: 14px;
  height: 14px;
   stroke: #00D4FF;
}
.icon-map {
  width: 14px;
  height: 14px;
}

.text-accent {
  color: purple;
}
.service-card:hover .icon-box {
  background: rgba(51, 151, 253, 0.2);
  box-shadow: 0 0 15px rgba(155,92,255,0.5);
}

.icon-box i {
  font-size: 20px;
}
/* ======================
   LEFT IMAGES
====================== */
.about-img{
    width: 318px;
    height: 318px;
    object-fit: cover;
    margin: auto;
}

.about-img:hover {
  transform: scale(1.05);
}

/* ======================
   RIGHT CONTENT
====================== */
.subtitle {
  color: #23B7FF;
  letter-spacing: 2px;
  font-size: 14px;
}

.title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.desc {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
}

/* ======================
   COUNTERS
====================== */
.counter-section {
  margin-top: 30px;
}

.counter {
  font-size: 35px;
  font-weight: bold;
  color: #23B7FF;
  margin-bottom: 5px;
}
:root {
    --bs-primary: #3399FF;
}

.btn-primary {
    background-color: #3399FF;
    border: 1px solid #3399FF;
    color: #ffffff;

    height: 50px;
    width: auto;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
}

.small{
  font-size: 14px;
}

.btn-primary {
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #3399FF;
    border-color: #3399FF;
    color: white !important;

    transform: scale(1.1); /* makes it bigger */
}
.btn-event {
    background-color: transparent;
    color: #0d6efd; /* Bootstrap primary blue */
    border: 1px solid #0d6efd;
    border-radius: 10px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif !important;
  color: #3399FF;
}
.hero-slider h1 {
  /* font-family: 'Orbitron', sans-serif; */
  font-weight: 900; 
}
/* Hover effect */
.btn-event:hover {
    background-color: #23B7FF;
        transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    color: #fff;
    border-color: #0d6efd;
}


.btn:hover {
    background-color: transparent;
    border-color: #3399FF;
    color: #3399FF;
}
/* small labels */
.counter-section small {
  color: #999;
  letter-spacing: 1px;
}
.stats-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    color: #23B7FF;
  
    margin: 0;
}

.stats-wrapper p {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}
.hero-heading {
    font-size: 3rem;   /* mobile base (~text-5xl) */
    font-weight: 900;
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 4.5rem; /* desktop (~text-7xl equivalent) */
    }
}

@media (min-width: 1250px) {
    .hero-heading {
        font-size: 5.5rem; /* large screens (~text-8xl equivalent) */
    }
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
  .title {
    font-size: 24px;
    text-align: center;
  }

  .desc {
    text-align: center;
  }

  .counter {
    font-size: 28px;
  }
}

.hero-section {
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.hero-rays .ray {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(138, 43, 226, 0.3), transparent);
  animation: sweep 8s ease-in-out infinite;
}

.ray-1 {
  left: 25%;
}

.ray-2 {
  right: 30%;
  animation-delay: 2s;
}

@keyframes sweep {
  0%, 100% { transform: translateY(-100%); }
  50% { transform: translateY(100%); }
}

.hero-title {
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  color: white;
  font-size: 60px;
  font-weight: 900;
}

.hero-subtitle,
.hero-desc {
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.gradient-text {
  background: linear-gradient(to right, #7c4dff, #00d4ff, #ff4d9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-btn {
  transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);

}

.hero-btn:hover {
  transform: scale(1.05);
  background-color: #3399FF;
}

.letter-spacing {
  letter-spacing: 0.3em;
}

.content-card {
  background-color: #111;
  transition: all 0.4s ease;
  overflow: hidden;
   
         width: 300px;
  height: 200px;
  border-radius: 10px;
  border-color: #00D4FF; 
  margin: auto;

}

.content-card:hover {
  transform: scale(1.03);
  border-color: hsl(210 100% 60% / 0.5) !important;
  box-shadow: 0 0 25px rgba(155,92,255,0.3),
              0 0 60px rgba(155,92,255,0.1);
}
/* ===============================
   FOOTER
================================ */
footer {
  min-height: 120px;
  background: #0a0a0a;
}
.site-footer {
  background: #000;
  color: #fff;
  padding: 20px 40px;
}
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px;
}

@media (max-width: 992px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    
    color: #fff;
    padding: 10px;
    
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show on hover */
.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    
    opacity: 0;
    transition: 0.3s ease;
}

.overlay span {
    color: #fff;
    font-size: 14px;
}
@media (max-width: 992px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        column-count: 1;
    }
}
/* Show on hover */
.gallery-item:hover .overlay {
    opacity: 1;
}

/* Footer layout */
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

/* Logo */
.footer-logo img {
  height: 30px;
}

/* Menu reset */
.footer-menu,
.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Center navigation */
.footer-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Horizontal menu */
.footer-menu {
  display: flex;
  gap: 25px;
  flex-direction: row;
}

/* Menu items */
.footer-menu li {
  display: inline-block;
}

/* Links */
.footer-menu li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  /* margin: 0 10px; */
  transition: 0.3s;
}

.footer-menu li a:hover {
  color: #286a90;
}

/* Hide dropdown issues */
.footer-menu li ul {
  display: none;
}

/* Right text */
.footer-copy {
  font-size: 12px;
  color: #aaa;
}


/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    gap: 15px;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

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

/* UPCOMING */
/* Card */
.event-card {
    background: #0b0f1a;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.event-card:hover {
    transform: translateY(-5px);
}

/* Image */
.event-img {
    height: 220px;
}

/* Overlay */
.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.85));
}

/* Content */
.event-content {
    position: relative;
    margin-top: -80px;
}

/* Badge */
.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
background:rgba(42, 135, 185, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
}

/* Heading spacing */
.letter-spacing {
    letter-spacing: 3px;
}

.testimonials {
  background:#0E0E0E;
}

.testimonials .card {
  background: #111827;
  border-radius: 15px;
  transition: 0.3s;
}

.testimonials .card:hover {
  transform: translateY(-5px);
}

.testimonials img {
  height: 200px;
  object-fit: cover;
}

/* Contact */

#contact {
  background-color: #0A0A0A;
}
.ctacard{
  background-color:#0B0C0E ;
 
}
.text-gradient {
    background: linear-gradient(90deg, #00c6ff, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-body {
  text-align: center;
}
.cta-icon {
  height: 44px;
  width: 44px;
  background-color: rgba(0, 123, 255, 0.2);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto;
  border-radius: 10%;
}

.footer-logo img,
.header-logo img {
    width: 150px;
    height: auto;
}

@media (max-width: 768px) {
    .footer-logo img,
    .header-logo img {
        width: 100px;
    }
}



/* BACKGROUND */
.contact-section {
  min-height: 100vh;
  background: url('/wp-content/uploads/contact-bg.jpg') center/cover no-repeat;
  position: relative;
}

/* DARK OVERLAY */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
background: rgba(0,0,0,0.4);}
.contact-section::before {
  pointer-events: none;
}

.animate-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.6s ease forwards;
}

/* stagger effect */
.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.3s; }
.animate-card:nth-child(3) { animation-delay: 0.5s; }
.animate-card:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CENTER CONTENT */
.overlay-center {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: block;
}

/* LEFT SIDE */
.small-heading {
  color: #3ea6ff;
  letter-spacing: 3px;
  font-size: 14px;
}





/* CONTACT INFO */
.contact-info {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* ROW */
.info-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ICON */
.info-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(62,166,255,0.1);
  border: 1px solid rgba(62,166,255,0.3);

  box-shadow: 0 0 25px rgba(62,166,255,0.15);
  transition: 0.3s;
}

.info-icon svg {
  color: #3ea6ff;
}

.info-icon:hover {
  transform: scale(1.08);
  background: rgba(62,166,255,0.2);
}

/* TEXT */
.info-text {
  display: flex;
  flex-direction: column;
}

.info-text span {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 2px;
}

.info-text h4 {
  font-size: 20px;
  margin-top: 6px;
  font-weight: 600;
}

.info-text a {
  color: #fff;
  text-decoration: none;
}

/* FORM */
.custom-form-box {
  background: rgba(15,15,25,0.92);
  border-radius: 22px;
  padding: 40px;
  border: 1px solid rgba(62,166,255,0.12);
  box-shadow: 0 0 40px rgba(62,166,255,0.12);
}

/* TITLE */
.form-title {
  color: #3ea6ff;
  font-size: 20px;
  margin-bottom: 25px;
}

/* INPUT */
.custom-input {
  width: 100%;
  background: #000;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px;
  border-radius: 10px;
  color: #fff;
}

.custom-input:focus {
  border-color: #3ea6ff;
  box-shadow: 0 0 12px rgba(62,166,255,0.4);
  outline: none;
}

/* LABEL */
label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 6px;
  display: block;
}

/* BUTTON */
.custom-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #3ea6ff, #1e90ff);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.custom-btn:hover {
  box-shadow: 0 0 25px rgba(62,166,255,0.6);
  transform: translateY(-2px);
}
.textarea{
  height: 150px;
}


.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-section.active {
  opacity: 1;
  transform: translateY(0);
}
.experience-section .icon svg {
    width: 20px;
    height: 20px;
    stroke: #3399FF;
    fill: none; /* important if it's line icons */
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(51, 153, 255, 0.15); /* transparent #3399FF */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg {
    width: 20px;
    height: 20px;
    stroke: #3399FF;
    fill: none;
}


/* =====================
   ANIMATION (same as Events)
===================== */
.animate-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   CARD SIZE CONTROL
===================== */
.service-card {
  height: 100%;
  min-height: 340px;
  border-radius: 12px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.service-item {
  display: flex;
}

.service-card {
  flex: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}
#services {
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  #services {
    padding-bottom: 80px;
  }
}


/* ===== CTA SECTION WRAPPER ===== */
.cta-section {
    padding: 80px 0;
}

/* ===== CTA CONTAINER BOX ===== */
.cta-box {
    background: #308DEA;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);

}

/* ===== BASE BUTTON STYLE ===== */
.cta-box .btn {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary-cta {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid transparent;
}

.btn-primary-cta:hover {
    background: white;
    border: 2px solid #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline-cta {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: transparent;
}

.btn-outline-cta:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

    /* GRID */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    /* ITEM */
    .gallery-item {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .gallery-item img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 10px;
        transition: transform 0.4s ease;
    }

    /* HOVER ZOOM */
    .gallery-item:hover img {
        transform: scale(1.05);
    }
.hidden {
    display: none !important;
}
    /* CAPTION */
    .gallery-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        color: #fff;
        padding: 10px;

        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-caption {
        opacity: 1;
    }

    /* FILTER BUTTONS */
    .filter-btn {
        margin: 5px;
        padding: 8px 16px;
        border: 1px solid #3399FF;
        border-radius: 10px;
        background: transparent;
        color: white;
        cursor: pointer;
        transition: 0.3s;
    }

    .filter-btn.active,
    .filter-btn:hover {
        background: #3399FF;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: 1fr;
        }
    }



.image-box {
  width: 500px;
  height: 500px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* crops from center */
  object-position: center; /* ensures center crop */
}

/* =========================================
   GENESIS ENT - MOBILE RESPONSIVE FIXES
   ========================================= */

/* 1. PREVENT HORIZONTAL SCROLLING (Most common issue) */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* 2. FORCE IMAGES TO BE RESPONSIVE */
img {
    max-width: 100% !important;
    height: auto !important;
    display: block; /* removes weird space under images */
}

/* 3. FIX TEXT OVERFLOW & BREAKING OUT OF BOXES */
h1, h2, h3, h4, h5, h6, p, span, a, li {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important; /* Forces long URLs/emails to break */
    white-space: normal !important;
}

/* 4. FIX VIDEOS / IFRAMES / GOOGLE MAPS */
iframe, video, embed {
    max-width: 100% !important;
    height: auto !important;
}

/* -----------------------------------------
   MOBILE SPECIFIC FIXES (Screens < 768px)
   ----------------------------------------- */
@media (max-width: 768px) {
    
    /* Make sure sections don't have fixed heights on mobile */
    section, div {
        min-height: auto !important;
        height: auto !important;
    }

    /* Standardize padding so content doesn't touch screen edges */
    .container, .elementor-section, main {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Force typical 2-column or 3-column grids to stack to 1 column */
    /* (You may need to change '.grid' to your specific class like '.services-grid') */
    .elementor-widget-wrap, 
    .wp-block-columns, 
    [class*="grid"], 
    [class*="columns"] {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 20px;
    }
    
    /* Make sure inner columns take up full width when stacked */
    .elementor-column, 
    .wp-block-column {
        width: 100% !important;
        margin: 0 !important;
    }

    /* Adjust Hero/Slider text for mobile */
    h1 {
        font-size: 2rem !important; /* 32px */
        line-height: 1.2 !important;
    }
    h2 {
        font-size: 1.5rem !important; /* 24px */
        line-height: 1.3 !important;
    }
    
    /* Hide complex sliders on very small screens if they are breaking (Uncomment if needed) */
    /* .your-slider-class { display: none !important; } */
}

/* -----------------------------------------
   SMALL MOBILE SPECIFIC FIXES (Screens < 480px)
   ----------------------------------------- */
@media (max-width: 480px) {
    h1 { font-size: 1.75rem !important; } /* 28px */
    h2 { font-size: 1.25rem !important; } /* 20px */
    p { font-size: 0.95rem !important; }  /* ~15px */
}


/* =========================================
   FIX: HERO TEXT CROPPING ON MOBILE
   ========================================= */

/* 1. Target the main hero section and force it to grow with the text */
/* This targets the top section of the site */
.elementor-top-section:first-of-type,
body > div:first-of-type section {
    height: auto !important;
    min-height: unset !important; /* Removes the forced desktop height */
    overflow: visible !important; /* Stops the text from being chopped off */
}

/* 2. Target the inner column holding the text specifically */
.elementor-top-section:first-of-type .elementor-widget-wrap,
.elementor-top-section:first-of-type .elementor-column {
    height: auto !important;
    overflow: visible !important;
}

/* 3. Ensure the text editor/heading widgets aren't restricted */
.elementor-top-section:first-of-type .elementor-widget-text-editor,
.elementor-top-section:first-of-type .elementor-widget-heading {
    overflow: visible !important;
    height: auto !important;
    -webkit-line-clamp: unset !important; /* Prevents any line-limiting */
}

/* --- MOBILE SPECIFIC ADJUSTMENTS --- */
@media (max-width: 768px) {
    
    /* Add a little breathing room at the bottom so it doesn't look cut off */
    .elementor-top-section:first-of-type {
        padding-bottom: 60px !important;
        margin-bottom: 0px !important;
    }

    /* Make sure the "25+ YEARS" stats and "READ MORE" button push down naturally */
    .elementor-top-section:first-of-type .elementor-widget {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }
}
/* --- Desktop/Base Styles --- */
.image-box {
    width: 500px;
    overflow: hidden;
	
}

/* --- Desktop/Base Styles --- */
.image-box {
    width: 500px;
    overflow: hidden;
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 768px) {
    .image-box {
        width: 100% !important;
        height: unset !important;
        aspect-ratio: unset !important;
    }

    section, div {
        min-height: auto !important;
        height: auto !important;
    }
}
