/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Google Sans', sans-serif;
    line-height: 1.6;
    font-size: 20px;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Prevent image drag */
img {
    pointer-events: none;
    -webkit-user-drag: none;
    max-width: 100%;
    display: block;
}

/* ================= GLOBAL TYPOGRAPHY ================= */
body,
p,
li,
a,
span {
    font-family: 'Google Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 50px;
}

.heading-bold {
    font-weight: 700;
}

.heading-light {
    font-weight: 100;
}

p {
    margin-bottom: 18px;
    line-height: 1.7;
}

ul {
    margin-bottom: 20px;
}

.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section,
.dark-section,
.about-section,
.OurStory,
#projects,
.footer-section,
.Testimonials {
    padding: 90px 0;
}

.dark-section {
    background: #130404;
    padding: 140px 8%;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #990808, transparent);
    margin: 15px auto 0;
}

/* Tablet */
@media (max-width: 992px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 32px;
    }
}

/* ================= NAVBAR ================= */
.navbar {
  width: 100%;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 12px 0;
}

.nav-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo img {
  max-height: 55px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Search */
.nav-search {
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid #333;
  border-radius: 30px;
  overflow: hidden;
}

.nav-search input {
  padding: 10px 14px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  width: 180px;
  font-size: 14px;
}

.nav-search input::placeholder {
  color: #aaa;
}

.nav-search button {
  background: transparent;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-search button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.navbar {
  width: 100%;
  background: #000;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .nav-search input {
    width: 130px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 15px;
  }
}


/* MOBILE NAVBAR */

@media (max-width: 768px) {

  .nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  .hamburger{
    display:flex;
    margin-left:auto;
  }

  .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#000;

    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:22px;
    padding:30px 20px;

    transform:translateY(-120%);
    transition:0.35s ease;
  }

  .nav-links.active{
    transform:translateY(0);
  }

  .nav-links a{
    font-size:18px;
  }

  .nav-search{
    width:100%;
    margin-top:15px;
  }

  .nav-search input{
    width:100%;
  }

}


/* SMALL MOBILE */

@media (max-width:480px){

.logo img{
  max-height:42px;
}

.nav-links a{
  font-size:16px;
}

.nav-search input{
  font-size:13px;
  padding:9px 12px;
}

.nav-search button{
  padding:9px 12px;
}

}
/* ================= HOME ================= */
.home {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(rgba(155, 98, 12, 0.2), rgba(63, 6, 6, 0.8)),
        rgba(0, 0, 0, 0.644);
    z-index: 1;
}

.home-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.home-content h1 {
    letter-spacing: 1px;
    font-size: 50px;
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: #b30000;
    margin: 20px auto;
}

.release-line {
    margin-top: 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f5c16c;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #800000;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #b30000;
}

/* ================= POPUP ================= */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOverlay 0.4s ease;
}

.popup-box {
    background: linear-gradient(145deg, #6e4c0c, #110202, #3d0202);
    padding: 40px;
    width: 420px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    font-family: 'Poppins', sans-serif;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(153, 8, 8, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: popupScale 0.4s ease;
}

.popup-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
}

.popup-logo {
    width: 60px;
    height: auto;
}

.release-text {
    white-space: nowrap;
    font-size: 28px;
    font-weight: 600;
}

.popup-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.popup-logo-corner {
    width: 65px;
    height: auto;
}

.close-btn {
    width: 32px;
    height: 32px;
    border-radius: 40%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 28px;
}

.close-btn:hover {
    background: rgba(255, 0, 0, 0.9);
    transform: rotate(90deg);
}

.popup-cover-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.popup-cover {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s ease;
}

.popup-cover-wrapper p {
    margin-top: 30px;
    font-size: 30px;
    font-weight: 500;
    color: #f0f0f0;
}

.popup-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px;
    height: 70px;
    background: rgba(153, 8, 8, 0.9);
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

.popup-cover-wrapper:hover .popup-cover {
    transform: scale(1.08);
    filter: brightness(60%);
}

.popup-cover-wrapper:hover .popup-play {
    transform: translate(-50%, -50%) scale(1);
}

.popup-box::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(153, 8, 8, 0.4), transparent 70%);
    top: -70px;
    left: -70px;
    filter: blur(30px);
    z-index: -1;
}

.popup-box::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.3), transparent 70%);
    bottom: -70px;
    right: -70px;
    filter: blur(30px);
    z-index: -1;
}

@keyframes popupScale {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ================= ABOUT ================= */
.about-section {
    position: relative;
    padding: 150px 0;
    color: #fff;
    background: url("images/aboutbg.jpeg") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 0, 0, 0.9), rgba(70, 0, 0, 0.85));
}

.about-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(145deg, #6e4c0c, #110202, #3d0202);
    padding: 80px;
    border-radius: 10px;
    display: flex;
    gap: 80px;
    align-items: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.about-wrapper::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    z-index: -1;
}

.about-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 400px;
    height: 450px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-right {
    flex: 1.2;
    color: #dcdcdc;
}

.about-right h2 {
    font-size: 50px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: baseline;
    gap: 16px;
}

.about-right .heading-bold,
.about-right .heading-light {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    text-align: left;
}

.about-right .section-line {
    width: 60px;
    height: 3px;
    background: #c00000;
    margin: 15px 0 25px 0;
}

.about-right p {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #c9c9c9;
    margin-top: 20px;
}

.about-right ul {
    padding-left: 18px;
    margin-bottom: 30px;
    font-size: 18px;
    text-align: left;
}

.about-right ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* ================= OUR STORY ================= */
.OurStory {
    position: relative;
    background: url("images/background image1.jpg") center center / cover no-repeat;
    background-attachment: fixed;
    padding: 70px 0;
    overflow: hidden;
}

.OurStory::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(83, 58, 11, 0.75),
        rgba(2, 0, 0, 0.85),
        rgba(73, 5, 5, 0.85)
    );
    z-index: 0;
}

.OurStory-container {
    position: relative;
    z-index: 2;
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
}

.OurStory-heading {
    font-size: 56px;
    text-align: center;
    color: #ffffff;
}

.bold-part {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.regular-part {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.our-story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 10px;
}

.story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 17px;
    line-height: 1.9;
    color: #f3f3f3;
}

.story-text p {
    margin-bottom: 25px;
    font-size: 20px;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    width: 100%;
    max-width: 450px;
}

.image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    transition: transform 0.5s ease;
}

.image-wrapper img:hover {
    transform: scale(1.05);
}

/* ================= TICKER ================= */
.ticker {
    background: #610606;
    overflow: hidden;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    border-bottom: 1px solid rgba(54, 18, 18, 0.2);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.ticker-track span {
    margin-right: 60px;
    font-size: 18px;
    color: #e4dada;
    white-space: nowrap;
    transition: 0.3s;
}

.ticker-track span:hover {
    color: #fff;
    transform: scale(1.1);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ================= PROJECTS ================= */
#projects {
    padding: 80px 5%;
    background: linear-gradient(145deg, #6e4c0c, #110202, #3d0202);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.projects {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 25px;
    width: 100%;
}

.projects .project-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    background: #000;
    transition: 0.4s ease;
    color: #ffffff;
    min-width: 0;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.project-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.project-item:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 28px;
    background: rgba(255, 0, 0, 0.9);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.project-item:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.project-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(40%);
    transition: 0.4s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.project-overlay p {
    font-size: 14px;
    color: #dddddd;
    max-width: 300px;
    line-height: 1.6;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.project-nav {
    position: absolute;
    right: 5%;
    top: 120px;
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: 0.3s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(153, 8, 8, 0.4);
}

.nav-btn:hover {
    background: #990808;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0.08;
}

.wave-bar {
    width: 4px;
    height: 80px;
    background: #990808;
    animation: wave 1.2s infinite ease-in-out alternate;
}

.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }

@keyframes wave {
    from {
        height: 30px;
    }
    to {
        height: 100px;
    }
}

/* ================= SERVICES ================= */
.section-title {
    color: #ffffff;
    margin: 5px;
}

.section-description {
    max-width: 700px;
    margin: 20px auto 70px auto;
    color: #cccccc;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 60px;
}

.service-box {
    text-align: center;
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid #990808;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 36px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.service-icon img {
    width: 75px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
}

.service-box:hover .service-icon {
    background: #990808;
    box-shadow: 0 0 25px rgba(255, 60, 86, 0.7);
    transform: translateY(-8px);
}

.service-box h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-box p {
    font-size: 18px;
    color: #dddddd;
    line-height: 1.6;
}

/* ================= TESTIMONIALS ================= */
.Testimonials {
    position: relative;
    padding: 80px 0 100px;
    background: url("images/testbackground.jpeg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.Testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(85, 17, 17, 0.6);
    z-index: 1;
}

.Testimonials-overlay {
    position: relative;
    z-index: 2;
}

.wrapper.Testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.Testimonials h2 {
    text-align: center;
    width: 100%;
}

.Testimonials .section-line {
    margin: 15px auto 40px auto;
}

.Testimonials-layout::before,
.Testimonials-layout::after {
    position: absolute;
    font-size: 18rem;
    font-family: serif;
    color: rgba(255, 160, 176, 0.07);
    z-index: 1;
    pointer-events: none;
}

.Testimonials-layout::before {
    content: "“";
    top: -80px;
    left: 5%;
}

.Testimonials-layout::after {
    content: "”";
    bottom: -150px;
    right: 10%;
}

.stars {
    color: #da0d0d;
    font-size: 1.4rem;
    letter-spacing: 4px;
    text-align: center;
    margin: 10px 0 6px;
}

.Testimonials-main-quote {
    font-size: 2.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    margin: 20px auto 40px;
    max-width: 800px;
    position: relative;
    word-wrap: break-word;
}

.Testimonials-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 3;
}

.Testimonials-column {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.Testimonials-column .author {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-top: 12px;
}

.Testimonials-column::before,
.Testimonials-column::after {
    display: block;
    font-size: 1.9rem;
    margin: 10px 0;
    letter-spacing: 8px;
}

.Testimonials-column.right .buy-now {
    display: inline-block;
    background: #990808;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
}

.Testimonials-column.right .customize {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
}

.video-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.video-icon img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    animation: pulse 2s infinite;
    transition: 0.3s ease;
}

.video-icon::after {
    content: "▶ WATCH VIDEO";
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    transition: 0.3s ease;
}

.video-icon:hover img {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    transform: translateY(-5px) scale(1.1);
}

.video-icon:hover::after {
    color: #ff4d4d;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* ================= FOOTER ================= */
.footer-section {
    background: #130404;
    padding: 100px 0 40px;
    color: #ccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    width: 100%;
    align-items: start;
}

.footer-brand h2 {
    font-size: 50px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

.footer-img {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    margin-top: 20px;
}

.footer-img img {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    transition: 0.6s ease;
    height: auto;
}

.footer-col h3 {
    font-size: 24px;
    color: #990808;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #bbb;
    transition: 0.3s ease;
}

.footer-col ul li:hover {
    color: #fff;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.contact-details li {
    margin-bottom: 12px;
}

.contact-details a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: 0.3s ease;
}

.contact-details a i {
    color: #990808;
    font-size: 16px;
}

.contact-details a:hover {
    color: #fff;
}

.contact-details a:hover i {
    color: #990808;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    font-size: 22px;
    color: #990808;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #e6dfdf;
    margin: 0;
}

.footer-bottom p:hover {
    color: #ff2e2e;
    transition: 0.3s ease;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .about-wrapper {
        flex-direction: column;
        gap: 60px;
        width: 90%;
    }

    .about-img {
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .about-right {
        text-align: center;
    }

    .about-right h2 {
        justify-content: center;
        text-align: center;
    }

    .about-right .heading-bold,
    .about-right .heading-light,
    .about-right ul {
        text-align: center;
    }

    .about-right .section-line {
        margin: 0 auto 20px;
    }
}

@media (max-width: 992px) {
    .nav-search input {
        width: 150px;
        font-size: 13px;
    }

    .our-story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-wrapper img {
        height: 450px;
    }

    .OurStory-heading {
        font-size: 42px;
    }

    .projects {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects .project-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .Testimonials-container {
        flex-direction: column;
        gap: 60px;
    }

    .Testimonials-layout::before,
    .Testimonials-layout::after {
        font-size: 18rem;
    }

    .Testimonials-main-quote {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        display: none;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-search {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .nav-search input {
        width: 70%;
        max-width: 250px;
    }

    .home {
        height: 80vh;
        padding: 40px 0;
    }

    .home-content h1 {
        font-size: 28px;
    }

    .home-content h2 {
        font-size: 16px;
    }

    .projects {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .projects .project-item:nth-child(1),
    .project-item:first-child,
    .project-item:not(:first-child),
    .project-item {
        min-width: 100%;
        height: 220px;
        grid-column: span 1;
        grid-row: span 1;
    }

    .project-nav {
        position: static;
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .image-wrapper img {
        height: 350px;
    }

    .story-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .nav-search {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .nav-search input {
        width: 100%;
        max-width: 220px;
    }

    .home-content h1 {
        font-size: 32px;
    }

    .OurStory-heading,
    .about-right h2 {
        font-size: 30px;
    }

    .story-text p,
    .about-right p,
    .service-box p {
        font-size: 16px;
    }

    .popup-box {
        width: 90%;
        padding: 25px 20px;
    }

    .popup-cover {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .home-content h1 {
        font-size: 24px;
    }

    .home-content h2 {
        font-size: 14px;
    }

    .project-item {
        height: 180px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .footer-brand h2 {
        font-size: 36px;
    }

    .footer-col h3 {
        font-size: 20px;
    }

    .footer-img img {
        max-width: 120px;
    }

    .social-icons a {
        font-size: 16px;
        margin: 0 5px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-line {
        width: 60px;
    }
}
/* =========================
   RESPONSIVE FIXES
========================= */

html, body {
  width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.container,
.site-wrapper,
.wrapper,
.section,
.content,
.hero,
.nav-container,
.footer-container {
  width: min(1400px, calc(100% - 32px));
  margin-inline: auto;
}

/* =========================
   TYPOGRAPHY RESPONSIVE
========================= */
h1 {
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
}

p,
li,
a,
button,
input,
textarea {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
}

/* =========================
   NAVBAR
========================= */
nav,
.navbar,
.header {
  width: 100%;
}

.navbar,
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

/* =========================
   HERO SECTION
========================= */
.hero,
.hero-section,
.banner {
  min-height: auto;
  padding: 80px 0 60px;
}

.hero-content,
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text {
  width: 100%;
}

.hero-image,
.hero-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img,
.hero-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* =========================
   SECTIONS / CARDS / GRIDS
========================= */
.grid,
.cards,
.services-grid,
.portfolio-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card,
.service-card,
.portfolio-item,
.box {
  width: 100%;
  min-width: 0;
}

/* =========================
   BUTTONS
========================= */
button,
.btn {
  max-width: 100%;
  white-space: normal;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
  .container,
  .site-wrapper,
  .wrapper,
  .section,
  .content,
  .hero,
  .nav-container,
  .footer-container {
    width: min(100%, calc(100% - 24px));
  }

  .hero-content,
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .hero-text {
    order: 2;
  }

  .hero-image,
  .hero-img {
    order: 1;
  }

  .grid,
  .cards,
  .services-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar,
  .nav-container {
    gap: 14px;
  }

  .nav-links {
    gap: 16px;
    justify-content: center;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .container,
  .site-wrapper,
  .wrapper,
  .section,
  .content,
  .hero,
  .nav-container,
  .footer-container {
    width: min(100%, calc(100% - 20px));
  }

  .hero,
  .hero-section,
  .banner,
  section {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .grid,
  .cards,
  .services-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .navbar,
  .nav-container {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .hero-content,
  .hero-inner {
    gap: 20px;
  }

  .hero-image img,
  .hero-img img {
    max-width: 90%;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  h2 {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }

  p,
  li,
  a,
  button,
  input,
  textarea {
    font-size: 0.95rem;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .container,
  .site-wrapper,
  .wrapper,
  .section,
  .content,
  .hero,
  .nav-container,
  .footer-container {
    width: calc(100% - 16px);
  }

  .hero-image img,
  .hero-img img {
    max-width: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .btn,
  button {
    width: 100%;
  }
}


