:root {
  --primary-blue: #1e3b5f;
  /* Deep blue from background */
  --accent-orange: #31d0b7;
  /* Orange from "VIRTUAL PRODUCTIONS" */
  --charcoal-black: #2c2c2c;
  --soft-white: #fefefe;
  --earth-gray: #f5f5f5;
  --star-white: #ffffff;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --orange: #f7632d;
}
body {
   font-family: var(--font-body);
}


.text-blue {
  color: var(--primary-blue);
}

.btn-blue{background-color: #1e3b5f; color:#fff;}
.btn-blue:hover{color:#1e3b5f;background-color:#fff;}


.text-green {
  color: #31d0b7;
}
.text-orange {
  color: #f7632d;
}

.btn-blue {
  background-color: var(--primary-blue);
  color: #fff;
}
.btn-orange {
  background-color: #f7632d;
  color: #fff;
}
.btn-orange:hover {
  background-color: #fff;
  color: #f7632d;
  border: 1px solid #f7632d;
}
.btn-white {
  background-color: var(--primary-blue);
  color: #fff;
}

.btn-blue:hover {
  background-color: #154177;
  color: #fff;
}

/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing:0!important;
}

html,
body {
  font-family: var(--font-body);
  background-color: var(--soft-white);
  color: var(--charcoal-black);
  line-height: 1.6;
  scroll-behavior: smooth;
}
  .bg-blue {background: #1e3b5f;}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  margin-bottom: 0.5em;
  font-weight: 600;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 24px;
}

p {
  font-size: 1rem;
  color: var(--charcoal-black);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-orange);
}

/* === Buttons === */
.btn-primary {
  background-color: var(--orange);
  color: var(--star-white);
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
  border: 1px solid var(--orange);
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--charcoal-black);
}

.btn-secondary {
  background-color: var(--accent-orange);
  color: var(--charcoal-black);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* === Utility === */
.text-white {
  color: var(--white);
}

.text-dark {
  color: var(--charcoal-black);
}

.bg-dark {
  background-color: var(--charcoal-black);
  color: var(--white);
}

.bg-light {
  background-color: var(--earth-gray);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Responsive Typography === */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
h5{font-size: 18px !important;}
  p {
    font-size: 0.95rem;
  }
}

.bg-danger {
  background: var(--accent-orange) !important;
  color: var(--charcoal-black) !important;
}

.border-danger {
  border-color: var(--accent-orange) !important;
}
.border-orange{
  border-color: var(--orange) !important;}
.bg-orange{background-color: var(--orange);}
.hover-orange:hover i{color: var(--orange);}


.btn-outline-danger {
  color: var(--accent-orange) !important;
  border-color: var(--accent-orange) !important;
  ;
}

/* custom css */

main.main {
  padding: 0 !important;
}


.header .logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--star-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header .logo:hover {
  color: var(--accent-orange);
}

.header nav ul {
  display: flex;
  list-style: none;
  gap: 5px;
}

.header nav a {
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 17px;
}

.header nav a:hover,
.header nav a.active {
  color: var(--orange) !important;
  font-weight: 500;
}

header a.brochure {
  padding: 5px 10px;
  font-size: 15px;
}

header a.brochure:hover {
  color: #fff !important;
  background: #1e3b5ff0;
  border: none !important;
}

/* Hide dropdown by default */
.navbar .dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  min-width: 200px;
}

/* Show dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item:active {
  background-color: #f3f3f3;
}

.slider .hero-slide {
  min-height: 65vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slider .hero-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* dark overlay */
  z-index: 1;
}

.slider .hero-slide .container {
  position: relative;
  z-index: 2;
}

.mybtn {
  background-color: var(--primary-blue);
  color: var(--star-white);
  padding: 6px 20px;
  border-radius: 6px;
  font-weight: 500;
  border: 1px solid var(--primary-blue);
  transition: 0.3s ease;
}

.mybtn:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--earth-gray);
}

.milestone-section {
  background: linear-gradient(to right, #00000020, #000000a8),
    url('../images/milestone3.png') no-repeat center center fixed;
  background-size: cover;
  min-height: 70vh;
}


.section-title span {
  color: #00bcd4;
}

@media (max-width: 991px) {
  .milestone-image {
    display: none;
  }
}

.glightbox-clean .gslide-title {
  margin-bottom: 0 !important;
}

.work .preview-icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work .card:hover .preview-icon-overlay {
  opacity: 1;
}

.work .preview-icon-overlay i {
  pointer-events: none;
  font-size: 25px;
}

.cta {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 10px;
}

.aboutstats {
  background-color: var(--primary-blue);
}

.footer {
  background: #10879b26;
}

.footer .touch {
  padding-right: 70px;
}

.footer .touch a:hover {
  color: var(--orange) !important;
}

.footer .touch a:hover i{
      color: var(--orange) !important;
}
.footer .quick a:hover {
  color: var(--orange) !important;
}


.footer .touch i {
  font-size: 18px;
}

.footer .touch p {
  font-size: 14px;
}

.footer ul li {
  line-height: 2em;
}

.footer .bottom {
  display: flex;
  justify-content: space-between;
}

.contact p {
  font-size: 15px;
  color: #777;
  font-family: var(--font-body)
}

.projectors img {
  border: 1px solid #eee;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 10px;
  height: 300px;
  width: 400px;
  object-fit: contain;
  background-color: #fafafa;
}
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

#skycinex .btn-orange {
    background: #f7632d;
    border: none;
    transition: background 0.3s ease;
}

#skycinex .btn-orange:hover {
        background: #f7632d;
    color: #000000;
}

#skycinex h2,
#skycinex h4,
#skycinex h5,
#skycinex h6 {
    font-weight: 600;
    letter-spacing: 0.3px;
}

#skycinex p,
#skycinex .text-white-50 {
    font-size: 15px;
    line-height: 1.6;
}

.bi {
    transition: transform 0.3s ease;
}

.glass-card:hover .bi {
    transform: scale(1.1);
}

.ctap{font-size: 16px !important;font-weight:400!important;}
#skycinex .card {background:#10879b26!important;}
#skycinex .icons {color: #000000!important;} 

.features .hover-glow {background: #1e3b5f08; border: 1px solid #1e3b5f1f; box-shadow: none !important;}
.features i{color:#1e3b5f;}

@media screen and (max-width: 768px) {
    h4{font-size:20px!important;}
    
    
    .container{padding: 0 10px!important;}
    
    .header button.navbar-toggler {color: #fff;}
  .footer .bottom {flex-direction: column;padding-bottom: 75px !important;}
.mobilep{font-size:15px!important;}
  .footer .touch {padding-right: 5px;}

  .button-mobile a {
    padding: 5px 15px !important;
    align-items: center;
    justify-content: center;
    display: flex;
    line-height: 1.3em;
    height: 40px;
    gap: 7px;
  }
  .header nav a{font-size: 15px;padding: 7px 0px;}
  .header button.enquire{font-size: 12px!important;}
    .header.fixed-top {padding-bottom: 0px;}
    
    /*Homepage */
    
.slider .hero-slide{min-height:70vh!important; height:70vh!important;} 
.homeslider h1{font-size: 30px !important;} 
.homeslider p{font-size: 15px !important;margin-bottom: 20px !important;} 
.homeslider a{padding: 10px 20px !important;font-size: 14px;}
#about  {    padding: 30px 0px !important;}
#about h2{font-size: 24px!important;}   
#about p{font-size: 15px!important;}    
#about a{padding: 10px 15px !important; font-size: 13px;}
.mobile-reverse{flex-direction:column-reverse;}

#business-offerings  {    padding: 30px 0px !important;}
#business-offerings h2{font-size: 26px!important;}   
#business-offerings p{font-size: 13px!important;}    
#business-offerings a{padding: 10px 15px !important; font-size: 13px;}
#business-offerings h5{font-size:16px!important;}
.bo .col-6{padding:0 5px!important;}
.bo .card-body{padding:10px!important;}
.bo .card-body .mb-4{margin-bottom:10px!important;}
.bo .card i{font-size:30px!important;}

#clients  {    padding: 30px 0px !important;}
#clients h2{font-size: 26px!important;}   
#clients p{font-size: 15px!important;margin: 0;}    
#clients a{padding: 10px 15px !important; font-size: 13px;}    

#services  {    padding: 30px 0px !important;}
#services h2{font-size: 26px!important;}   
#services p{font-size: 15px;margin: 0;}    
#services a{padding: 10px 15px !important; font-size: 13px;}    

#skycinex  {    padding: 30px 0px !important;}
#skycinex h2{font-size: 26px!important;}   
#skycinex p{font-size: 15px!important;margin: 0;}    
#skycinex a{padding: 10px 15px !important; font-size: 13px;}       
    
#clients .client-logo {max-height: 40px;}
#clients .marquee-container div {padding: 0 10px !important;}
#clients {padding-bottom: 0px!important;}
#clients .marquee-container{padding-top:10px;}



.servbanner {height:35vh!important;}

.servbanner p{font-size:15px;margin:0!important;}
#services .btn-outline-blue { padding: 3px 6px; font-size: 15px;}
.service-section .darkbg2 {padding: 15px!important;}
.service-section h3{font-size:22px;}
.service-section ul li{font-size:15px;}
.projectors .row>*{margin:0;}

.moviebanner {height:35vh!important;}
.moviebanner h2{font-size: 26px!important;}   
.moviebanner p{font-size: 14px!important;margin-bottom:0px!important;}    

.searchsection .w-50{width:100%!important;}
.movies img.poster{height:400px!important;object-fit:cover}

.offerings {height:35vh!important;}
.offerings h2{font-size: 26px!important;}   
.offerings p{font-size: 14px!important;margin-bottom:0px!important;} 

.cinema-services-grid {padding-top: 30px !important;}
.cinema-services-grid p{font-size: 14px!important;}
.cinema-services-grid ul{padding-left:0!important;}
.cinema-services-grid ul li{font-size:14px!important;}

 .cta_section .box{padding: 22px !important;text-align: center;}
    .cta_section h2{text-align:center;}
    .ctap{font-size: 16px !important;text-align:center; font-weight:400!important;}
    .ctabtn{font-size: 15px; padding: 6px 10px !important;}
    .ctaimg {margin:0!important;max-height: 300px!important;}
    
  


   .mobile-bottom-nav { position: fixed; bottom: 0;left: 0;right: 0;
      height: 64px; background: #fff;border-top: 2px solid #1e3b5f;
      display: flex; justify-content: space-around; align-items: center;
      z-index: 999;box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); overflow: hidden;}
    
    .mobile-bottom-nav .nav-item { text-align: center; font-size: 12px;
      color: #000; text-decoration: none; display: flex;
      flex-direction: column; align-items: center; flex: 1;}
    .mobile-bottom-nav .nav-item i {font-size: 20px; margin-bottom: 4px;}
    
    .mobile-bottom-nav .nav-item:focus, .mobile-bottom-nav .nav-item:hover {color: #1e3b5f;}
    .mobile-bottom-nav .nav-item.active{background: #1e3b5f1c; text-align: center; padding: 12px 0; border-radius: 2px;}
    .mobile-bottom-nav .nav-item.active i {color: #1e3b5f;}
    
.features .col-6{padding: 0 5px;}
.features .hover-glow{padding:10px 15px!important;}
.features .hover-glow p{font-size:12px;}

.aboutbanner {height:35vh!important;}
.sech1{font-size: 26px!important;}
.secp{font-size: 15px!important;margin: 0;}

.aboutstats h3{font-size:20px!important;}
.aboutstats p{font-size:14px!important;}

.aboutsection .box{flex-direction: column; text-align: center;
    width: 50%;}
    
h2{font-size:28px!important;}    
    
h3{font-size:22px!important;}   
p{font-size:15px!important;}


 .aboutsection .box div{flex-flow: wrap;}   
.aboutsection .box div.align-items-center{align-items:baseline!important;justify-content:center!important;}
.vision .card-body{padding:20px!important;}
.vision .p-3{padding:0!important;}
.vision ul li{font-size:15px!important;}
.vision {padding-bottom: 10px !important;}

#team div .mb-5{margin-bottom:20px!important;}
#team h5{font-size:16px!important}
#team  p{font-size: 13px !important;}
#team .col-6{padding: 0 5px!important;}

.contactbanner{height:35vh!important;}
.contactbanner p{margin:0!important;}
.info p{font-size: 14px !important; padding-right: 15px;}
.info .icon{height:40px!important; width:40px!important;}

.g-5{ --bs-gutter-x: 0;}


}
