@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --color-primary: #dfbf34;
  --color-dark: #111;
  --color-light: #fafafa;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--color-light);
  color: var(--color-dark);
}

a {
  text-decoration:none;
  color:inherit;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-light);
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  border: 0;
  font-family: var(--font-body);
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-primary);
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  font-family: var(--font-body);
}

button:hover {
  background: #d4b31c;
  color: var(--color-light);
  cursor: pointer;
}

input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-family: var(--font-body);
  outline: none;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--color-light);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.site-header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.header-nav {
  display: flex;
  gap: 1.5rem;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 2rem 3rem;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: var(--color-dark);
  background: var(--color-light);
}

/* Mobile */
@media (max-width: 600px) {
  .site-footer {
    padding: 1.5rem 1.5rem;
    font-size: 1.1rem;
  }
}

/* HERO SECTION */
.hero {
  min-height: 90vh;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main hero wrapper */
.hero-video {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

/* Video styling */
.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay for better text visibility */
.hero-video .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjustable */
  z-index: 1;
}

/* Content centered & responsive */
.hero-video .content {
  position: absolute;
  top: 30%;              /* vertical center */
  left: 50%;             /* horizontal center */
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--color-light);
  text-align: center;
  padding: 1rem;
  width: 90%;
  max-width: 700px;
}

/* Headline */
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); 
  font-weight: 800;
  line-height: 1.2;
}

/* Subtitle */
.hero p {
  margin: 1rem 0 2rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.4;
}

/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* EXPERIENCE SECTION */
.experience {
  background-color: var(--color-light);
  width: 100%;
  padding: 10rem 1.5rem; /* more balanced spacing */
  display: flex;
  justify-content: center;
  align-items: center;
}

.experience .content {
  max-width: 900px;
  text-align: center;
}

.experience .content p {
  color: var(--color-dark);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.6;
  font-weight: 500;
}

.experience .content p span {
  color: var(--color-primary);
  font-weight: 600;
}

/* Work Done Section */
.work_done {
  display: flex;
  gap: 2rem;
  padding: 4rem 1.5rem;
  align-items: stretch;
}

.work_done .left-column {
  flex: 1;
}

.work_done .normal-image {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 18px;
}

/* Right Column Grid */
.work_done .right-column {
  flex: 1;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
}

.work_done .block {
  background: var(--bg);
  color: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover card effect */
.work_done .block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Numbers */
.work_done .big-number {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.3rem;
}

/* Small Text */
.work_done .text-small {
  opacity: 0.9;
  font-size: 1rem;
}

/* Text-only card */
.work_done .text-card {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 900px) {
  .work_done {
    flex-direction: column;
  }

  .work_done .right-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .work_done .right-column {
    grid-template-columns: 1fr;
  }
}

/* GLOBAL REACH SECTION */
.global_reach {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.global_reach .content {
  position: absolute;
  top: 10%;
  text-align: center;
  z-index: 2;
  color: var(--color-dark);
  max-width: 500px;
}

.global_reach .content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.global_reach .content p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  opacity: 0.9;
}

.global_reach canvas#cobe {
  position: absolute;
  bottom: -10%; /* default desktop */
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

/* MOBILE VERSION - half-cut globe at bottom */
@media (max-width: 768px) {
  .global_reach canvas#cobe {
    bottom: -40%;
    height: 150%;
  }

  .global_reach .content {
    top: 5%;
    padding: 0 2rem;
    text-align: center;
  }
}

/* TABLET VERSION - globe on the right, text on left */
@media (min-width: 769px) and (max-width: 1024px) {
  .global_reach {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 4rem;
    min-height: 70vh;
  }

  .global_reach .content {
    position: relative;
    top: auto;
    left: auto;
    max-width: 50%;
    text-align: right;
  }

  .global_reach canvas#cobe {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 100%;
  }
}

/* DESKTOP VERSION - large globe on the right, text on left */
@media (min-width: 1025px) {
  .global_reach {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 6rem 8rem;
    min-height: 80vh;
  }

  .global_reach .content {
    position: relative;
    max-width: 40%;
    text-align: right;
  }

  .global_reach canvas#cobe {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
  }
}

/* Our Services Section */
/* Our Services Section */
.wrapper {
  height: 100vh;
  position: relative;
}

.list {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  padding: 0;
}

.item {
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: row; /* Desktop: text + media side by side */
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.item_content {
  background-color: #fff;
  color: #292929;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem;
  width: 50%; /* Desktop: half width */
  height: 100%;
}

.item_content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.item_content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.5;
}

.item_media {
  object-fit: cover;
  width: 50%; /* Desktop: half width */
  height: 100%;
}

/* MOBILE VERSION: stack content */
@media (max-width: 768px) {
  .item {
    flex-direction: column; /* text above media */
  }

  .item_content,
  .item_media {
    width: 100%;
    height: 50%;
  }

  .item_content {
    padding: 1.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .item_content h2 {
    font-size: 1.8rem;
  }

  .item_content p {
    font-size: 1rem;
  }
}

/* Optional: subtle active item styling */
.item.active .item_content {
  transform: scale(1.02);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.5s, box-shadow 0.5s;
}


/* CONTACT PAGE */
/* =======================================
   Layout Container
======================================= */

.contact-page-container {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.contact-card {
    background: #fff;
    width: 100%;
    max-width: 1400px;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    padding: 50px;
}


/* =======================================
   Sidebar
======================================= */

.contact-sidebar {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #ffffff;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-title {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-desc {
    font-size: 14px;
    color: #555;
    margin: 0 0 6px;
}

.contact-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.contact-address {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* =======================================
   Right Side Form
======================================= */

.contact-form-section {
    width: 60%;
}

.form-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-subheading {
    font-size: 16px;
    margin-bottom: 30px;
    color: #222;
}


/* =======================================
   Form Controls
======================================= */

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 28px;
}

.input-field,
.textarea-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #0d0d0d;
    padding: 12px 0;
    font-size: 16px;
    outline: none;
    font-family: 'Inter';
    border-radius: 0;
}

.textarea-field {
    resize: vertical;
}

/* =======================================
   Button
======================================= */

.submit-button {
    display: block;
    margin-top: 35px;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.submit-button:hover {
    opacity: 0.9;
}


/* =======================================
   Responsive
======================================= */

@media (max-width: 992px) {
    .contact-card {
        flex-direction: column;
    }

    .contact-sidebar {
      width: 100%;
    }

    .contact-form-section {
        width: 100%;
        margin-top: 30%;
    }
}
