@font-face {
  font-family: "Roboto";
  src: url("../fonts/ROBOTO-MEDIUM_1.TTF") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Badoni";
  src: url("../fonts/Badoni-Regular.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-Light';
  src: url('../fonts/Gilroy-Light.ttf');
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.card-grid {
  /* Assuming this wrapper is your layout container */
  place-items: center;
  place-self: center;
  gap: 1.5rem;
}

/* ========= Trident Card ========= */

.trident-card {
  --border-gradient: linear-gradient(to bottom, #E6C79C 0%, #BC9554 40%, #8C5A2F 100%);
  --card-bg: #0C0C0C;

  width: min(285px, 80vw);          /* responsive width */
  aspect-ratio: 3 / 4;              /* keeps proportion instead of fixed height */
  padding: 3px;
  border-radius: 0.9rem;
  background: var(--border-gradient);
  position: relative;
  overflow: visible;
  z-index: 1;
}

/* Optional but recommended: prevent awkward wraps */
.heading1 .gradient-text{
  white-space: normal;
  text-wrap: balance;       /* supported in modern browsers */
}

/* If your image is too tall/short on different screens, control it */
@media (max-width: 640px){
  section img{
    max-height: 520px;
    object-fit: cover;
  }
}

/* Soft glow behind the card */
.trident-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scale(0.9);
  border-radius: inherit;
  background: var(--border-gradient);
  filter: blur(28px);
  opacity: 0.35;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: -1;
}



/* Inner surface */
.trident-card-info {
  background: radial-gradient(circle at top, #1A1A1A 0%, #050505 70%);
  color: #f5f2e8;
  width: 100%;
  height: 100%;
  border-radius: inherit;

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

/* Icon in centre */
.icon-wrapper {
  font-size: 2rem; /* base desktop size */
  color: #E6C79C;
  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(0);
  transition: transform 0.35s ease;
}

/* Title text – hidden initially */
.trident-card .title {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  background: linear-gradient(to right, #E6C79C, #BC9554, #8C5A2F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Hover effects */
.trident-card:hover::after {
  opacity: 0.7;
  transform: scale(1);
}

.bottom-100{
  bottom: 100px;
}

.trident-card:hover .icon-wrapper {
  transform: translateY(-8px);
}

.trident-card:hover .title {
  font-size: 20px;
  opacity: 1;
  transform: translateY(0);
}

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

/* Tablets and small laptops */
@media (max-width: 1024px) {
  .trident-card {
    width: min(260px, 80vw);
  }

  .icon-wrapper {
    font-size: 1.9rem;
  }

  .trident-card .title {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }
}

/* Mobiles */
@media (max-width: 640px) {
  .trident-card {
    width: min(230px, 85vw); /* smaller, fits nicely on mobile */
  }

  .icon-wrapper {
    font-size: 1.7rem;
  }

  .trident-card .title {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    margin-top: 0.6rem;
  }

  .trident-card::after {
    filter: blur(20px); /* slightly softer glow on mobile */
  }
}

/* ============================
   Trident Gradient Text Style
   ============================ */

/* ===============================
   ORIGINAL CSS (UNCHANGED)
================================ */

.gradient-text {
  letter-spacing: 2px;
  font-size: 40px;
  font-weight: 300; /* Adjust based on your typeface */
  background: linear-gradient(
    to right,
    #E6C79C 0%,
    #D9B88A 25%,
    #BC9554 50%,
    #A46A33 75%,
    #8C5A2F 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text1 {
  letter-spacing: 1px;
  font-weight: 300; /* Adjust based on your typeface */
  background: linear-gradient(
    to right,
    #E6C79C 0%,
    #D9B88A 25%,
    #BC9554 50%,
    #A46A33 75%,
    #8C5A2F 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Optional: Gradient for highlighted words like "for" */
.gradient-highlight {
  font-family: "Badoni";
  font-style: italic;
  background: linear-gradient(
    to right,
    #D6B88C 0%,
    #A46A33 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ===============================
   RESPONSIVE ADDITIONS (SAFE)
   – No original rules modified
================================ */



/* Prevent gradient breaking on line wrap */
.gradient-text,
.gradient-text1,
.gradient-highlight {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Responsive headline */

/* Responsive emphasis for "for" */


.gradient-text {
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: clamp(0.5px, 0.25vw, 2px);
  line-height: 1.15;
}

/* Responsive sub-headline / paragraph */
.gradient-text1 {
  font-size: clamp(16px, 2.4vw, 28px);
  letter-spacing: clamp(0.3px, 0.18vw, 1px);
  line-height: 1.25;
}

/* Responsive highlighted word */
.gradient-highlight {
  font-size: clamp(30px, 5vw, 50px);
}

/* Extra polish for very small screens */
@media (max-width: 480px) {
  .gradient-text {
    line-height: 1.1;
  }

  .gradient-text1 {
    line-height: 1.2;
  }
}


body {
  /* font-family: "Raleway", serif; */
    font-family: "Roboto", serif;
      font-weight: 400;
  
  /* font-weight: 400; */
  background: #000000;
  font-style: normal;
}
.main-width {
  width: 95%;
  margin: auto;
}

@media (min-width: 1024px) {
  .heading1 {
    font-size: 24px;
    color: #ffffff;;
  }
}

@media (max-width: 1023px) {
  .heading1 {
    font-size: 20px;

    color: #ffffff;
  }
}
.heading1-para {
    font-family: "Gilroy-Light";
  margin-top: 5px;
  color: #ffffff;
}

.footer-para {
  color: #ffffff;
  font-family: "Gilroy-Light";
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown ul {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 999;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown:hover ul {
  opacity: 1;
  visibility: visible;
}

.dropdown h1 {
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.5s linear 0s;
}

.dropdown li {
  padding: 10px;
  background: #2f2f2f;
  font-size: 15px;
  color: #999;
  text-align: left;
  width: 200px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover li {
  opacity: 1;
  transform: translateY(0);
}

.dropdown li:hover {
  background-color: #292929;
}

.dropdown li:last-child {
  border-radius: 0 0 5px 5px;
}

.dropdown li:nth-child(1) {
  transition-delay: 0s;
}

.dropdown li:nth-child(2) {
  transition-delay: 0.1s;
}

.dropdown li:nth-child(3) {
  transition-delay: 0.2s;
}

.dropdown li:nth-child(4) {
  transition-delay: 0.3s;
}

.dropdown li:nth-child(5) {
  transition-delay: 0.4s;
}
.link {
  position: relative;
  display: inline-block;
  /* padding-bottom: 2px; */
}

.link:hover::after,
.link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #58595b; /* Red underline */
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.45s ease-out;
}

.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.learn-more {
  width: 12rem;
  height: auto;
}

.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 40px;
  height: 40px;
  background: #58595b;
  border-radius: 1.625rem;
}

.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: white;
}

.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 7px 0;
  margin: 0 0 0 1.85rem;
  color: #ffffff;

  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.learn-more:hover .circle {
  width: 100%;
}

.learn-more:hover .circle .icon.arrow {
  background: white;
  transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
  color: white;
}

.accordion {
  /* background: white; */

  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

.accordion-item {
  border-bottom: 1px solid #58595b;
  padding-bottom: 20px;
}

.accordion-header {
  color: #58595b;
  font-size: 20px;
  font-weight: 400;
  padding: 15px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header i {
  transition: transform 0.3s ease-in-out;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  color: #2f2f2f;
  overflow: hidden;
  /* background: #f9f9f9; */
  padding: 0px 30px;
  transition: max-height 0.5s ease-in-out;
}

.map {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.dropdownd {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  height: 0;
  display: none; /* Hidden by default */
  transition: opacity 0.5s ease, height 0.5s ease;
}

.dropdown-toggle:hover {
  cursor: pointer;
}

.dropdownd.showing {
  display: block; /* Make it visible for animation */
}

.dropdownd.visible {
  opacity: 1;
}
.hamburger,
.close-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 18px;
  cursor: pointer;
  z-index: 20;
}

.hamburger .line,
.close-hamburger .line {
  width: 80%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.8s ease;
}

.hamburger.active .line:nth-child(1),
.close-hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2),
.close-hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3),
.close-hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation styling */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%; /* Change this from left to right */
  height: 100%;
  background-color: #191919;
  color: white;
  transition: right 0.8s ease; /* Update the transition to 'right' */
  z-index: 15;
  padding-top: 20px;
}

.mobile-nav.active {
  right: 0; /* When active, the nav will slide in from the right */
}


.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav ul li {
  padding: 15px 0;
}

.mobile-nav ul li a {
  /*color: #fff;*/
  text-decoration: none;
}

/* Style for the close hamburger as a cross (X) */
.close-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;

  border-radius: 50%;
  background-color: #fff;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 45px;
  right: 20px;
  z-index: 20;
}

.close-hamburger .line {
  position: absolute;
  width: 50%;
  left: 25%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease;
}

/* Transform lines into an X */
.close-hamburger .line:nth-child(1) {
  transform: rotate(45deg);
}

.close-hamburger .line:nth-child(2) {
  transform: rotate(-45deg);
}

/* Prevent page scroll when nav is open */
/* Ensure the mobile navigation is scrollable */
.mobile-nav {
  overflow-y: auto;
}

/* Prevent the body from scrolling when nav is open */
body.nav-open {
  overflow: hidden;
}
