
:root {
    --primary-blue: #1e3b5f; /* Deep blue from background */
    --accent-orange: #ffc107; /* Orange from "VIRTUAL PRODUCTIONS" */
    --charcoal-black: #2c2c2c;
    --soft-white: #fefefe;
    --earth-gray: #f5f5f5;
    --star-white: #ffffff;
    --nav-active: #1e3b5f!important;
    
    /* --font-heading: 'Baloo 2', cursive; */
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Inter', sans-serif;
  }
  
  /* === Base Reset === */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    font-family: var(--font-body);
    background-color: var(--soft-white);
    color: var(--charcoal-black);
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  /* === 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(--primary-blue);
    color: var(--star-white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    border: 1px solid var(--primary-blue);
    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); }
  .text-warning{color: #ffc107!important;}
  .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;
  }

  .text-blue{color:#1e3b5f;}
.text-green{color:#00ffda;}
.bg-green{background: #00ffda;}

.btn-outline-blue{color:#1e3b5f!important;border-color:#1e3b5f!important;}
.bg-blue{background: #1e3b5f;}

  
  /* === Responsive Typography === */
  @media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    p  { font-size: 0.95rem; }
  }
  
  .bg-danger{
    background: var(--accent-orange)!important;
  }
  .border-danger{
    border-color: var(--accent-orange)!important;
  }
  .btn-outline-danger{color: var(--accent-orange)!important; border-color: var(--accent-orange)!important;;}

  /* custom css */

  main.main {padding: 0!important};
.header{z-index: 233;}

.backdrop-blur {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 4;
}

.header-scrolled {
  border-radius: 0 !important;
  margin-top: 0 !important;
  left: 0 !important;
  transform: none !important;
  max-width: 100% !important;
  width: 100% !important;
}
#mainHeader{transition: all 0.3s ease-in-out;}


  .header .logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--star-white);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .header nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
  }
  .header nav a {
    font-size: 18px;
  }
  .header nav a:hover{color: var(--primary-blue);}

  .header nav a.active { color: va(--primary-blue);}
  
  .nav-active{color: var(--nav-active)!important;border-bottom: 1px solid var(--nav-active) !important;;}
header a.brochure{    padding: 5px 10px; font-size: 15px; font-weight:500;}
header a.brochure:hover{color:#fff;}
.hero-video-section {
  height: 65vh;
  width: 100%;
  position: relative;
  min-height: 600px;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}



.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: #fff;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
  }
  .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);}

/* custom footer */


.footer {
  background: #10879b26;
}

.footer .touch {
  padding-right: 70px;
}
.footer .touch a:hover{
  color: var(--accent-orange)!important;
}
.footer .quick a:hover{
  color: var(--accent-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)
}


.vp-video-gallery a::before {
  content: none; /* Remove play icon */
}

.vp-video-gallery a::after {
  content: '▶ Play Video';
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 30px;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1; /* Always visible */
  transition: all 0.3s ease;
  pointer-events: none;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* space between buttons */
  flex-wrap: nowrap;
}

.vision .col-lg-4{padding: 0 8px;}
.custom-checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.custom-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1e3b5f;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    width: 20px;
    height: 20px;
    line-height: 24px;
    text-align: center;
    border-radius: 35px;
}
.g-5, .gx-5{--bs-gutter-x: 0rem;}
#who p{font-size:18px;padding-right: 15px;}



@media screen and (max-width:768px)
{
    *{outline:none!important;{overflow-x: hidden!important;}
    .container {padding: 0 10px;}
    .navbar-toggler:focus{box-shadow:none!important;}
    .header a.brochure{width: fit-content;}
    .nav-active{width:fit-content;}
    
    .mobilehide{display:none!important;}
    
     #mainHeader {left: 50%; transform: translateX(-50%); max-width:95%!important; border-radius: 12px;}
     .header-scrolled{width: 95% !important; left: 2% !important; top:1% !important; border-radius: 10px !important;}
    
    .mobilep{font-size:15px!important;}
    .mobilebtn{font-size: 15px; padding: 8px 15px !important;}
    .homeslider h1{padding-top:75px!important; font-size: 28px;}
    .homeslider .hero-slide {height:65vh!important;}
    .homeslider .carousel-control-next, .carousel-control-prev{display:none;}
    
    #about img{height:100%; width:100%; min-height: 100% !important;}
    .hits {padding: 25px 0!important;}
    .hits .box{padding: 20px 10px !important;}
    .hits .mobcol{padding: 0 5px;}
    .hits .g-4{--bs-gutter-y:15px;}
    
    #support {padding: 25px 0!important;}
    #presence {padding: 25px 0!important;}
    #presence .col-6{width:100%;}
    
    .platforms{padding: 25px 0!important;}
    .platform-logo{    border-radius: 10px;}

    .cta_section .box{padding: 22px !important;text-align: center;}
    .cta_section h2{text-align:center;}
    .ctap{font-size: 16px !important;text-align:center;}
    .ctabtn{font-size: 15px; padding: 6px 10px !important;}
    .ctaimg {margin:0!important;max-height: 300px!important;}
    .footer .bottom {flex-direction: column-reverse;padding-bottom:70px!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;}
    
    .workbanner{height:40vh!important;}
    .workbanner .bannerbadge{margin-top:110px!important;}
    .workp{width:100%!important; font-size:16px!important;}
    
    .work .mobtab li{margin:0 5px!important;font-size: 13px;}
    .work .mobtab li button {    padding: 3px 10px !important;}
    .work img{height:250px!important;}
     
    .hero-video-section {height: 75vh !important;}
    .hero-video-section .video-bg {height: 90vh !important;}
    
    #services .mobcol .icon-wrapper {width: 50px; height: 50px;}
    #services .mobcol .icon-wrapper i{font-size: 24px !important;}
    #services .mobcol h5{font-size: 18px!important;}
        #services .mobcol p{font-size:14px!important;}
        #services .mobcol  {padding: 0 5px;}
    
    .milestone .mobcol h3{font-size: 22px!important;}
    .milestone .p-4 {padding: 18px !important;}
        .milestone .mobcol p{font-size:14px!important;}
        .milestone .mobcol  {padding: 0 5px;}
    .studio-section img{width:40px!important;}
    .equipment-filters .btn{font-size:14px;}
    .workmob .subp{margin-bottom: 20px !important;padding: 0 25px;}
    .workmob .workcard{background: #daecef;}
    
    .team-section .card img{max-width:100%!important;}
    .team-section .card h5{font-size:18px!important;}
    .team-section .card p{font-size:14px!important;}
    .team-section .card .p-4{padding: 10px 20px !important;}
    .team-section .col-6{padding:0 5px;!important;}
    
    .vpcta{padding-bottom: 22px !important;}
    .vpcta .display-4{font-size:24px!important;padding:0 20px;}
    .vpcta .cta-feature-card{padding:0!important;}
    .vpcta .cta-feature-card h6{font-size:18px;!important;}
    .vpcta .cta-feature-card p{font-size:14px;!important;}
    .vpcta .social{padding:0!important;margin-top:25px;}
    .schedulebtn{    padding: 15px 20px !important; font-size: 18px; margin: auto;}
    
    .aboutbanner .hero-stats{margin-top: 0px !important;}
     .aboutbanner h1{padding-top:0px!important;}
     .aboutbanner {height: 65vh;}
    .imagecol{margin:0;}
    #who .content-wrapper {padding:0;}
    
    #features .feature-card h5{font-size:17px!important;}
    #features .feature-card p{font-size:14px!important;}
    #features .mb-5{margin: 10px 0 !important;}
    #features .feature-card{padding: 10px !important;}
    
    #features .feature-icon {width: 50px; height: 50px;}
    #features .feature-icon i{font-size: 21px !important;}
    
    .vision h3{font-size:26px;}
    .connector {width:2px!important;}
    .timeline-item::before{top:-2px;height:10px; width:10px;}
    
    .groupc{padding-bottom: 0 !important;}
     .groupc h2{font-size:26px;}
    .groupc .partner-card {padding: 15px 18px !important;}
    .contactbanner p{width:100%!important;}
     .hero-cta { flex-direction: row; gap: 8px;}

  .hero-cta .btn { font-size: 14px; padding: 8px; margin:0!important;}
  .connect{padding: auto 30px;}
  .map-section  h3{font-size:26px;}
    .contact-section .g-5,.gy-5{--bs-gutter-x: 0;}
      .g-5{ --bs-gutter-x: 0;}
    .social-section h6{text-align:center;} 
    .mobmap{width:100%!important;}
    .mobileheading{margin-top:00px!important; margin-bottom:15px!important;}
    .g-5, .gx-5{--bs-gutter-x: 0rem;}
    .projects .col-6{padding: 0 5px;}
    #who p{font-size:15px;padding-right: 0px;}
    .hero-stats .col-6 {margin-top: 11px;}
    #contactForm{width:100%;}
    .map{    padding-top: 0px !important;}
    .map .row{    flex-direction: column-reverse;}
}



