body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	 font-size: 17px;
    letter-spacing: 1px;
    color: #272727;
    padding: 0px;
    line-height: 27px;
	
}

:root {
--light: #fff;
	--dark: #000;
  --primary: #0B2545;
	--background: #0b254512;

  --color-secondary: #1F6F8B;

  --color-surface: #F5F8FA;

  --color-accent: #FFC857;

  --color-neutral: #64748B;
 
/*   --button: linear-gradient(135deg, var(--primary), var(--color-secondary)); */
	
	--button: linear-gradient(135deg, #0B2545 0%, #1F6F8B 50%, #0B0F0D 100%);

  --gradient-accent: linear-gradient(90deg, var(--color-accent), #FFB03B);

}

 
/* :root{
	--light: #fff;
	--dark: #000;
	--primary: #266b29;
	--button:  linear-gradient(180deg, #266b29, #000);
	
} */

section{
	margin: 2rem 0;
	padding: 2rem 0;
}

.main-title h3 {
    font-size: 34px;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 2px;
    color: var(--primary);
    margin-top: 0px;
    font-weight: 900;
    line-height: 30px;
}
.underline1 {
    height: 2px;
    width: 100px;
    background-color: black;
    margin: auto;
    margin-top: 20px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background-color: var(--primary);
    margin: auto;
    margin-top: -3px;
}

.main-title p {
    font-size: 17px;
    letter-spacing: 1px;
    color: #272727;
    padding: 0px;
    line-height: 27px;
    margin: 15px 0px;
    margin-bottom: 25px;
}
.no-margin{
    margin-left: 0px;
 
}
    /* ===== Navbar ===== */
/*     .navbar-box {
      position: fixed;
      top: 30px;
      left: 30px;
      right: 30px;
      z-index: 1000;
		height: 100px;
      background: var(--light);
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    .navbar-box.scrolled {
      top: 0;
      left: 0;
      right: 0;
      border-radius: 0;
      background: var(--light);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

	.navbar-brand img{
		height: 90px;
	}

    .navbar-nav .nav-link{
      color: var(--dark) !important;
      font-weight: 600;
      margin-left: 15px;
		font-size: 18px;
      transition: color 0.3s;
  position: relative;
  padding-bottom: 5px; 
    }
    
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 4px; 
  left: 0;
  bottom: 0;
  background: var(--button); 
	border-radius: 3px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-item.active .nav-link::after {
  width: 100%;
}
.custom-toggler {
    border: 2px solid var(--primary);
    border-radius: 6px;
    padding: 6px 10px;
  }



.nav-link {
	display: inline-block !important;
}

.navbar-nav{
	background: #fff;
}

.navbar-box{
	height: 120px;
}

.nav-contact-icon i{
	color: var(--primary);
}

.nav-contact-text a{
	text-decoration: none;
	font-weight: 600;
}
  .custom-toggler i {
    color: var(--primary); 
	  font-size: 20px;
  }
  .custom-toggler:focus {
    box-shadow: none;         
  } */

.site-header .main-header {
	 position: fixed;
      top: 30px;
      left: 30px;
      right: 30px;
      z-index: 1000;
	padding: 10px 0;
      background: var(--light);
      border-radius: 10px;
      transition: all 0.3s ease;
 
}

.site-header .main-header .logo{
	height: 90px;
}
 .site-header .main-header.scrolled {
      top: 0;
      left: 0;
      right: 0;
      border-radius: 0;
      background: var(--light);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .nav > li {
  position: relative;
}



.site-header .nav > li > a {
  color: #333;
  text-decoration: none;
  padding: 8px 15px;
  font-weight: 800 ;
  transition: all 0.3s ease;
  display: inline-block;
}

.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
  color: var(--primary); 
}
.site-header .nav > li ::after {
  content: "";
  position: absolute;
  width: 0;
  height: 4px; 
  left: 0;
  bottom: 0;
  background: var(--button); 
	border-radius: 3px;
  transition: width 0.3s ease;
}

.site-header .nav > li :hover::after {
  width: 100%;
}
.site-header .nav > li.active::after {
  width: 100%;
}

/* Dropdowns */
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}

.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}

.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}

/* Show dropdown on hover */
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}

/* Align submenu to parent */
.site-header .nav li ul.sub-menu li {
  position: relative;
}

/* Sub-sub menus (flyouts) */
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .site-header .nav {
    display: none; /* hidden, mobile uses side menu */
  }
}


/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-main-menu-1 li {
    padding: 20px 10px;
    border-bottom: 1px solid #fff;
}
#menu-main-menu-1 li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}





    /* ===== Header Section ===== */
    header {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }
    header video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }
    header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(0 0 0 / 40%);
      z-index: -1;
    }
    .header-content {
      height: 100vh;
      display: flex;
      align-items: center;
      color: #fff;
		padding-top: 4rem;
    }

.header-content h5 i{
	color: var(--primary);
}

.header-content h5{
	background: var(--light);
    display: inline-block;
    color: var(--dark);
    padding: 6px 25px;
    border-radius: 30px;
    font-size: 16px;
}
    .header-content h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }
    .header-content p {
      margin-top: 15px;
      font-size: 1.1rem;
      line-height: 1.5;
    }
    .btn-custom {
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: 500;
      margin-right: 15px;
		text-decoration: none;
    }
    .btn-primary-custom {
      background: var(--button);
      color: var(--light);
      border: none;
    }
    .btn-outline-custom {
      border: 2px solid #fff;
      color: #fff;
      background: transparent;
    }
    .btn-outline-custom:hover {
      background: #fff;
      color: #000;
    }
 
.mission{
	background: #ffffffd4;
	padding: 20px;
	border-radius: 15px;
	color: var(--dark);
}

.mission-icon{
	display: flex
;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.mission-icon i{
	font-size: 20px;
}

.mission p{
	font-size: 1rem;
}


/* About Us Section */
.about-us-image img{
	border-radius: 20px;
}

.contact-btn{
	background: var(--button);
	border: 1px solid var(--primary);
	color: var(--light);
	padding: 10px 15px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
}

.contact-btn:hover{
	background: transparent;
	color: var(--primary);
}

.about-us-content ul{
	list-style-type: none;
	padding-left: 0rem;
}

.about-us-content ul li{
	margin-bottom: 10px;
	display: flex;
	align-items: center
}

.about-us-content ul li i{
	color: var(--primary);
	margin-right: 12px;
}


/*Gallery Section*/

 .gallery-section {
      padding: 80px 0;
      background: url(https://webzensys.com/work/closeprotectionteamchong.com/wp-content/uploads/2025/10/gallery-bg.avif);
      background-repeat: no-repeat;
    background-size: cover;
      position: relative;

     
    }

	.gallery-section .container{
		position: relative;	
	}

    
    .gallery-section .main-title{
        z-index:4;
        position: relative;
    }

   .gallery-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fffefeb5 /* semi-transparent dark overlay */
  
}


   
       .gallery-item {
      cursor: pointer;
      transition: transform 0.3s ease;
      object-fit: cover;
      width: 100%;
      height: 300px;
      border-radius: 10px;
      overflow: hidden;
    }
    .gallery-item:hover {
      transform: scale(1.05);
    }

	.lightbox img,
.lightbox video {
  width: auto;        /* Keep original width */
  height: auto;       /* Keep original height */
  max-width: 90vw;    /* Scale down if wider than viewport */
  max-height: 90vh;   /* Scale down if taller than viewport */
  border-radius: 10px;
}

    /* Lightbox styles */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1050;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
      overflow: auto;
    }

    

    .lightbox .close-btn,
    .lightbox .prev-btn,
    .lightbox .next-btn {
      position: absolute;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      user-select: none;
      z-index: 2;
    }

    .lightbox .close-btn { top: 20px; right: 30px; }
    .lightbox .prev-btn { top: 50%; left: 30px; transform: translateY(-50%); }
    .lightbox .next-btn { top: 50%; right: 30px; transform: translateY(-50%); }
/* Service Section */


	.service{
     
/*       background-image: url('https://t3.ftcdn.net/jpg/06/80/09/86/360_F_680098644_8h8DArMVbPhSWkaLDn5S2HoTduvbnTDo.jpg');  */
		background: url(https://webzensys.com/work/closeprotectionteamchong.com/wp-content/uploads/2025/10/service-bg.jpg);
      background-size: cover;
      background-position: center;
      padding: 5rem 0;
	}

/* 	 .service::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #fffdfad9;
      z-index: 1;
    } */

    .service-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.4s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	height: 340px;
		background: var(--background);
		border: 1px solid var(--primary);
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    }

    .icon-box {
      width: 70px;
      height: 70px;
      margin: 0 auto 15px;
      background-color: #0b254557;
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      border-radius: 50%;
      transition: all 0.4s ease;
    }

    .service-card:hover .icon-box {
      background: var(--button);
      color: #fff;
      transform: rotate(10deg) scale(1.1);
    }

    .service-card h5 {
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .service-card p {
      font-size: 15px;
      color: #555;
    }
/* course section */

.course ul{
	padding-left: 0;
}

.course ul li{
	list-style-type: none;
	display: flex;
	margin-bottom: 10px;
	align-items: center;
}

.course ul li i{
	color: var(--primary);
	margin-right: 10px;
}

/* Contact Section */
 .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border-radius: 12px;
      overflow: hidden;
    }

    /* Left: Form Panel */
    .contact-form-side {
      background: var(--background);
      color: #000;
      flex: 1;
      padding: 50px 40px;
    }

    .contact-form-side h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 25px;
      color: var(--primary);
    }

    .contact-form-side .form-control {
      background-color: var(--light);
      border: 1px solid #333;
      color: #000;
      border-radius: 6px;
    }

    .contact-form-side .form-control::placeholder {
      color: #000;
    }

    .contact-form-side .form-control:focus {
      box-shadow: none;
      border-color: var(--primary);
    }

.wpcf7-submit{
	background: var(--button);
    border: none;
    color: #fff;
    border-radius: 7px;
    padding: 6px 15px;
}

.wpcf7-submit:hover{
	background: transparent;
	border: 1px solid var(--primary);
	color: var(--primary);
}
   

    /* Right: Info Panel */
    .contact-info-side {
      background: linear-gradient(rgb(0 0 0), rgb(0 0 0 / 25%)), url(https://webzensys.com/work/closeprotectionteamchong.com/wp-content/uploads/2025/10/Sniper-1.jpg) center / cover no-repeat;
      color: #fff;
      flex: 1;
      padding: 50px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

   

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

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

    .info-item i {
      font-size: 1.5rem;
      color: var(--primary);
      margin-right: 15px;
      background: #9e9e9e;
      padding: 10px;
      border-radius: 50%;
    }

    .info-item .info-text {
      line-height: 1.4;
    }

	.contact-info-side .underline1{
		background: #fff;
	}

    .info-item .info-text strong {
      display: block;
      font-weight: 600;
      color: #fff;
    }

    .info-item .info-text span {
      font-size: 0.95rem;
      color: #ccc;
    }

    @media (max-width: 768px) {
      .contact-wrapper {
        flex-direction: column;
      }
    }
/* Footer Section */
footer{
	background: var(--button);
	color: var(--light);
	padding: 2rem 0;
}

.footer-content{
	text-align: right;
	
}

footer p{
	margin: 0;
	padding: 0;
}


/* Courses Page */

.breadcrumb-section {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      height: 50vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .breadcrumb-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .breadcrumb-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* adjust opacity as needed */
      z-index: 2;
    }

    .breadcrumb-content {
      position: relative;
      z-index: 3;
     	text-align: left;
		top: 30%;
    }

    .breadcrumb-content h2 {
      font-size: 2.5rem;
      font-weight: 600;
    }

    .breadcrumb-nav {
      display: inline-block;
      margin-top: 10px;
      font-size: 1rem;
    }

    .breadcrumb-nav a {
      color: #fff;
      text-decoration: none;
      opacity: 0.9;
    }

    .breadcrumb-nav a:hover {
      text-decoration: underline;
      opacity: 1;
    }

    .breadcrumb-nav span {
      margin: 0 5px;
      color: #ccc;
    }

/* Courses Section */
    .courses-section {
      padding: 50px 0;
    }

    .course-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s;
      margin-bottom: 30px;
		height: 580px;
    }

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

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

    .course-card-body {
      padding: 20px;
    }

    .course-card-body h5 {
      margin-bottom: 15px;
      font-weight: 600;
		color: var(--primary);
		line-height: 30px;
		text-transform: capitalize;
    }

    .course-card-body p {
      color: #555;
      font-size: 14px;
    }


/* Responsive */
@media (max-width: 1399px){
	.service-card h5{
		font-size: 17px;
	}
}
@media (max-width: 1199px){
	.breadcrumb-section{
		height: 40vh;
	}
	.service-card {
		height: 280px;
	}
	.service-card h5 {
        font-size: 20px;
    }
	.mission{
		display: none;
	}
	
	header .col-lg-6 {
       
        width: 90%;
    }
}
@media (max-width: 1024px){
	
	.breadcrumb-section{
		height: 30vh;
	}
	.course-card img{
		height: 300px;
	}
	
	.course-card{
	    height: 655px;
	}
	.nav-contact-info{
		display: none !important;
	}
	
}

@media (max-width: 991px){
	#menu-primary-1 a {
		color: #fff;
		text-decoration: none;
	}
	
	.header-content{
		padding-top: 2rem;	
	}
	
	section {
    	margin: 1.5rem 0;
    	padding: 1.5rem 0;
	}
	.service-card{
		height: auto;
	}
	.course-card{
		height: auto;
	}
	
	header .col-lg-6 {
        width: 100%;
    }
	
	.header-content h1 {
    	font-size: 2rem;
	}
	
}

@media (max-width: 767px){
	.footer-content{
		text-align: left;	
		margin-top: 1rem;
	}
	
	

	
	footer .justify-content-end {
    justify-content: flex-start !important;

	}
}

@media (max-width: 568px){
	.service-card {
        height: 250px;
    }
	.mission{
		display: none;
	}
	
	.gallery-item {
		height: auto !important;
		width: 100%;
	}
	
	    .header-content h1 {
        font-size: 1.8rem;
    }
	
}
@media (max-width: 479px){
/* 	.header-content p{
		display: none;
	} */
	.gallery-section{
		padding: 40px 0;
	}
}
@media(max-width: 414px){
	.header-content h1 {
    	font-size: 1.5rem;
	}
	
	
	
	.service-card {
        height: 280px;
    }
	
	
}

@media (max-width: 375px){
	header{
		height: 100vh;
	}
}

@media (max-width: 323px){
		.header-content p{
		display: none;
	}
}