/* ---------------- Google fonts ------------------ */

/* -------antonio------- */
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&display=swap');


/* telegraf */
@font-face {
	font-family: 'telegraf';
	src: url(../font/telegraf-bold.otf);
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'telegraf';
	src: url(../font/telegraf-regular.otf);
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'telegraf';
	src: url(../font/telegraf-light.otf);
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}


/* ---------------- Basic css ------------------ */

html {
	font-size: 0.62vw;
}

:root {
	scroll-behavior: unset;

	/* colors */
	--black-color: #000000;
	--dark-black-color: #191919;
	--blue-color: #004aad;
	--white-color: #ffffff;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

a {
	text-decoration: none;
	transition: 200ms;
	color: inherit;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	font-family: 'telegraf';
	font-size: 1.6rem;
	font-weight: 400;
	background: var(--white-color);
	color: var(--black-color);
	/* Ensure no default top margin is present on the body */
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
a {
	font-family: "Antonio", sans-serif;
}

/* Heading */

.title_xxl {
	color: var(--dark-black-color);
	font-size: 12.4rem;
	font-weight: 700;
	line-height: 1.1;
}

.title_xl {
	color: var(--white-color);
	font-size: 9rem;
	font-weight: 700;
	line-height: 1.3;
}

.title_lg {
	color: var(--white-color);
	font-size: 7.5rem;
	font-weight: 700;
	line-height: 1.3;
}

.title_md1 {
	color: var(--black-color);
	font-size: 6.3rem;
	font-weight: 700;
	line-height: 1.3;
}

.title_md {
	color: var(--black-color);
	font-size: 5.7rem;
	font-weight: 700;
	line-height: 1.3;
}

.title_sm {
	font-family: "Antonio", sans-serif;
	color: var(--white-color);
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 1.3;
}

.subtitle_lg {
	color: var(--white-color);
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.3;
}

.subtitle_sm {
	color: var(--white-color);
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.2;
}

/* button */
.button {
	color: var(--white-color);
	background: var(--blue-color);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02rem;
	text-transform: uppercase;
	display: inline-block;
	padding: 1rem 5rem;
}


/* ---------------- Hero Section  ------------------ */

/* CSS Padding Hack for Aspect Ratio:
   Setting padding-top to 50% of the width (100% of viewport) 
   makes the overall height 50vw, matching the 50vw width of the columns.
   This enforces the square look without using the 'height' property. */
.hero_section {
    position: relative; 
    padding-top: 50%; 
    width: 100%;
    display: flex;
    align-items: center;
    /* Ensures the section starts at the very top */
    margin-top: 0; 
    /* The section itself must be transparent */
    background-color: black; 
}

.hero_section .container-fluid {
    /* Absolute positioning makes the content layer stretch over the padding area */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
}

.hero_section .row {
    height: 100%; /* Force row to take 100% height of the section */
    width: 100%;
}

/* Left Column: Video Container */
.col-md-6:first-child {
    /* Set column background to transparent and rely on inner div for color */
    background-color: transparent; 
    height: auto;
    /* Added flex to center the video within the black container padding */
    display: flex; 
    align-items: center;
    justify-content: center;
}

.hero_video {
    /* Applying black background here to ensure it is constrained by the parent absolute-positioned layers */
    background-color: var(--black-color); 
    width: 100%;
    height: 100%; 
    overflow: hidden; 
}

.hero_video video {
	width: 100%;
	height: 100%;
    /* Use 'contain' to ensure video maintains its ratio 
       and hero_video's black background shows as padding */
    object-fit: contain; 
	display: block;
}

/* Right Column: Logo Area */
.col-md-6:last-child {
    background-color: transparent; 
    height: auto; 
}

.hero_logo_area {
    /* Inner container holds the black background and respects the 100% height */
    background-color: var(--black-color); 
    width: 100%;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    padding: 5rem;
}

.hero-logo {
    max-width: 80%; 
    max-height: 200px; 
    margin-bottom: 3rem;
}
/* ---------------- About Section (WHO WE ARE) ------------------ */

.about_section {
	/* UPDATED BACKGROUND: New Cement Texture */
	background-image: url('../img/1a1a.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding: 10.5rem 0;
}

/* Ensure text is readable on the dark background */
.about_section .title_lg, 
.about_section .title_sm,
.about_section .subtitle_sm {
    color: var(--white-color);
}

.about_title {
	margin-bottom: 4.3rem;
}

.about_section .row {
	--bs-gutter-x: 4rem;
}

.about_content_box {
	min-height: 50rem;
	height: 100%;
	padding: 4.5rem 2rem 3.5rem;
	border: 0.2rem solid var(--blue-color);
	display: flex;
	flex-direction: column;
}

.about_heading {
	height: 11rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.about_text {
	padding: 2rem 0rem;
}

.about_btn {
	margin-top: auto;
}

.about_btn a:hover {
	color: var(--white-color);
	background: url(../img/causation-tape.jpeg) no-repeat left top;
	background-size: cover;
}
/* Basic styling for the section */
.about-us-section {
  font-family: sans-serif;
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between cards */
}

/* Individual card styling */
.team-card {
  position: relative; /* This is crucial for positioning the overlay */
  width: 300px;
  border-radius: 10px;
  overflow: hidden; /* Hides parts of the overlay that might stick out */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: scale(1.05); /* Slightly enlarges the card on hover */
}

.team-card img {
  width: 100%;
  display: block;
}

.card-info {
  padding: 15px;
  background-color: white;
}

.card-info h3 {
  margin: 0 0 5px 0;
}

.card-info p {
  margin: 0;
  color: #666;
}

/* The Overlay (Hidden by default) */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 50, 100, 0.85); /* Semi-transparent blue */
  color: white;
  padding: 20px;
  box-sizing: border-box;
  
  /* --- Magic happens here --- */
  opacity: 0; /* Hidden by default */
  transition: opacity 0.4s ease; /* Smooth fade effect */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* The Hover Effect */
.team-card:hover .card-overlay {
  opacity: 1; /* Make it visible on hover */
}

.card-overlay h4 {
    margin-top: 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 10px;
}
/* ---------------- Brilliance Section  ------------------ */

.brilliance_section {
	position: relative;
}

.briliant_title {
	width: 100%;
	position: absolute;
	top: 2rem;
	left: 50%;
	transform: translateX(-50%);
}

.briliant_title h2 {
	text-transform: uppercase;
	letter-spacing: 0.15rem;
}

.brilliance_img {
	width: 100%;
	height: 100%;
	border-right: 1px solid #FFF;
}

.brilliance_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* ---------------- gallery_section (PROJECT GALLERY) ------------------ */

.gallery_section {
	/* UPDATED BACKGROUND: New Cement Texture */
	background-image: url('../img/1a1a.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding: 10rem 0;
}

/* Ensure text is readable on the dark background */
.gallery_section .title_xl, 
.gallery_section .title_md,
.gallery_section .subtitle_lg {
    color: var(--white-color);
}


.gallery_title {
	margin-bottom: 5.5rem;
}

.gallery_img {
	overflow: hidden;
}

.gallery_img img {
	width: 100%;
	height: 28rem;
	object-fit: cover;
	transition: 0.2s all ease;
}

.gallery_img:hover img {
	transform: scale(1.05);
}

.gallery_text {
	padding-top: 4rem;
}

.gallery_text h3 {
	color: var(--white-color);
	text-transform: uppercase;
	margin-bottom: 2.4rem;
}

/* ---------------- Service Section  ------------------ */

.service_section {
	/* ORIGINAL/PREVIOUS BACKGROUND (Dark Brick) */
	background-image: url('../img/download.jpg'); 
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--black-color);
	padding: 8.5rem 0rem;
	text-align: center;
}

.service_title {
	margin-bottom: 7rem;
}

.service_title h2 {
	color: var(--white-color);
	letter-spacing: 0.1rem;
}

.service_section .row {
	--bs-gutter-x: 4.5rem;
	--bs-gutter-y: 6rem;
}


.service_text_box a {
	font-family: 'telegraf';
	font-size: 3.1rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--white-color);
	border: 0.1rem solid var(--white-color);
	display: block;
	text-align: center;
	padding: 4rem 1rem;
	transition: 0.2s all ease;
}

.service_text_box a:hover {
	background: url(../img/causation-tape.jpeg) no-repeat left top;
	background-size: cover;
}


/* ---------------- Footer Section  ------------------ */

.footer_section{
	/* 1. Set the new image as the background for the entire footer */
	background-image: url('../img/Screenshot 2025-10-09 213413.jpg');
	
	/* 2. Configure the background image to fit the container */
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	
	/* 3. Add height/padding to make the image visible */
	padding-top: 15rem; 
	padding-bottom: 5rem;
	
	/* 4. Ensure text is readable over the dark image background */
	color: var(--white-color); 
}

/* The previous .footer_img rule is removed as it's no longer needed */

.footer_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 7rem;
}

/* Ensure the main heading is visible (was .title_md1 which had a black color default) */
.footer_wrapper .title_md1 {
    color: var(--white-color);
}

.footer_button {
	display: flex;
	align-items: center;
	gap: 4rem;
}

.footer_button a {
	/* Update the button to look good on the new dark background */
	color: var(--white-color); 
	letter-spacing: 0.1rem;
	background: transparent;
	border: 0.2rem solid var(--white-color); /* Border color changed to white */
	padding: 1rem 6.5rem;
	transition: 0.2s all ease;
}

.footer_button a:hover {
	/* Set hover colors for good contrast */
	background: var(--blue-color); /* Hover background becomes blue */
	border-color: var(--blue-color);
	color: var(--white-color); 
}