@font-face {
  font-family: "Cardo";
  src: url("Google fonts/Cardo-Regular.ttf");
  display: block;
}
@font-face {
  font-family: "Titilum";
  src: url("Google fonts/TitilliumWeb-Regular.ttf");
  display: block;
}
@font-face {
  font-family: "Glory";
  src: url("Google fonts/Glory-VariableFont_wght.ttf");
  display: block;
}
@font-face {
  font-family: "Oswald";
  src: url("Google fonts/Oswald-VariableFont_wght.ttf");
  display: block;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  
}
:root {
  --primary-1: #FF8C00;   /* Yellowish Orange*/
  --primary-2: #0A1D3C;   /* Navy Blue */
  --secondary-1: #F5E9D0; 
  --secondary-2: #4A5568;
  --primary-font: "Glory";
}
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  background: #0d0f16;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  overflow-x: hidden;
}

.logo img {
  /* margin-left: 60%; */
  width: 190px;
}

.nav-links {
  display: flex;
  gap: 40px;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  list-style-type: none;
  font-family: "Oswald";
}

.nav-links li a {
  text-decoration: none;
  color: white;
  transition: color 0.2s;
  font-size: 1.4rem;
}

.nav-links li a:hover {
  color: var(--primary-1);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  font-size: 1.5rem;

}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.cart {
  position: relative;
}

.badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #d7002e;
  color: #fff;
  padding: 3px 7px;
  border-radius: 50%;
  font-size: 12px;
}
.hero-bg {
  border: 2px solid black;
  padding: 80px;
  height: 50vh;
  background-image: url("IMAGES/brbg1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  top: 20%;
  left: 0;
  z-index: -1;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 29, 60, 0.8),
    rgba(5,15, 35)
  );
}
.hero-overlay {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 20%;
  transform: translate(-80%, -50%); 
}
.hero-overlay p {
  font-family: "Oswald";
  font-size: 3.5rem;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}
/* Services Section */
.services-section {
  background: #0d0f16;
  padding: 120px 40px;
  color: #fff;
  font-family: "Oswald";
}

.services-box {
  max-width: 1200px;
  margin: auto;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 80px 60px;
  box-shadow: 4px 10px 12px black;
}
.main-txt {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;

}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.service h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service ul {
  list-style: none;
}

.service ul li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.service ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff4d1c;
}

.skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

.skill {
  position: relative;
}

.skill span {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.skill .percent {
  position: absolute;
  right: 0;
  color: #ff4d1c;
}

.bar {
  margin-top: 14px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  position: relative;
}

.bar div {
  height: 100%;
  background: #ff4d1c;
}
/* CONTACT SECTION */
.contact-section {
  background: #0d0f16;
  padding: 120px 40px;
  color: #fff;
  font-family: "Oswald";
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.contact-header p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: auto;
  font-size: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-box h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.info-box p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-size: 1.2rem;
}
.info-box {
  padding-left: 20px;
  border-left: 2px solid rgba(255,255,255,0.15);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.info-box:hover {
  border-left-color: #ff4d1c;
  transform: translateX(6px);
}


.contact-form {
  border: 2px solid #0d0f16;
  box-shadow: 4px 10px 12px black;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 14px 0;
  color: white;
  font-size: 1.2rem;
  outline: none;
  font-family: "Oswald";
  transition: border-color 0.4s ease;
}
.contact-form textarea {
  min-height: 120px;
  resize: none;
}
.contact-form input:hover,
.contact-form textarea:hover {
  border-bottom-color: rgba(255,255,255,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--primary-1);
}

.contact-form button {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--primary-1);
  padding: 16px;
  color: var(--primary-1);
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.4s ease;
}
.contact-form button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff4d1c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.contact-form button:hover {
  background: #e84418;
  color: white;
}
.contact-form button:hover::before {
  transform: scaleX(1);
}
/* MAP SECITON */
.map-section {
  height: 400px;
  filter: grayscale(100%) brightness(0.6) contrast(1.2);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-section {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FOOTER */
.site-footer {
  background-color: #0d0f16;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 60px 40px;
  background-color: #0d0f16;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: auto;
}

.footer-col h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  font-family: "Oswald";
  color: white;
}

.footer-col h3::after {
  content: "";
  width: 120px;
  height: 3px;
  background: var(--primary-1);
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  font-family: "Oswald";
}

.footer-col ul li a:hover {
  color: var(--primary-1);
  padding-left: 6px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald";
  color: white;
}

.contact-list i {
  color: var(--primary-1);
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  color: white;
  font-family: "Oswald";
  padding-bottom: 10px;
}