/* Reset & base */
body {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	background: #252128;
	color: #ccc;
  }
  
  a {
	color: inherit;
	text-decoration: none;
  }
  
  /* Header */
  .site-header {
	background: #005596;
	padding: 10px 20px;
	display: flex;
	justify-content: center;
  }
  
  .header-content {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .logo {
	height: 50px;
  }
  
  .call-box {
	background: #1c76bc;
	padding: 10px 20px;
	border-radius: 6px;
	color: #fff;
	text-align: right;
	font-size: 0.95em;
	font-family: 'Montserrat', sans-serif;
  }
  
  .call-box span {
	display: block;
	font-weight: 700;
	margin-bottom: 2px;
  }
  
  .call-box a {
	color: #fff;
	font-size: 1.1em;
  }
  
  /* Media containers */
  .media-box {
	width: 600px;
	height: 400px;
	margin: 20px auto;
	border-radius: 16px;
	overflow: hidden;
	background-color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .media-box video,
  .media-box img {
	height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
  }
  
  /* Description */
  .description {
	text-align: center;
	padding: 40px 20px;
  }
  
  .description h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2em;
	color: #fff;
  }
  
  .description p {
	max-width: 600px;
	margin: 10px auto;
	font-size: 1.1em;
  }
  
  /* Carousel */
  .carousel-container {
	width: 600px;
	height: 400px;
	margin: 20px auto;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
  }
  
  .carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	height: 100%;
  }
  
  .carousel-track img {
	width: 600px;
	height: 400px;
	object-fit: cover;
	flex-shrink: 0;
	border-radius: 16px;
  }
  
  /* Carousel Buttons */
  .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	border: none;
	color: white;
	font-size: 2rem;
	padding: 0 15px;
	cursor: pointer;
	z-index: 1;
  }
  
  .carousel-btn.prev {
	left: 0;
  }
  
  .carousel-btn.next {
	right: 0;
  }
  
  /* Contact */
  .contact {
	background: linear-gradient(135deg, #1c76bc, #51c5db);
	padding: 30px 20px;
	border-radius: 8px;
	margin: 40px auto;
	max-width: 500px;
	color: #fff;
	text-align: center;
  }
  
  .contact h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2em;
	margin-bottom: 10px;
  }
  
  .contact p {
	margin: 8px 0;
	font-size: 1em;
  }
  
  /* Footer */
  footer {
	text-align: center;
	padding: 20px;
	background: #1f1f1f;
	color: #999;
	font-size: 0.9em;
  }
  body::before {
	content: "";
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: -1;
	padding: 20px;
	background: linear-gradient(135deg, #1c76bc, #51c5db);
	box-sizing: border-box;
  }
  
  body > * {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
  }

  .company-name {
	text-align: center;
	max-width: 600px;
	margin: 10px auto;
	font-size: 2.1em;
	color: #fff;
  }

  .main-content {
	background: #6f6a6a;
	border-radius: 20px;
	padding: 0; /* remove inner spacing so video reaches edges */
	overflow: hidden; /* key to clip anything that overflows the rounded corners */
	margin: 40px auto;
	max-width: 1200px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  }
  
  .video-full {
	width: 100%;
  }
  
  .video-full video {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
  }
  