/* ========== Reset & Base ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
   font-family: gilroy;
  
}

body {

  background-color: #f4f4f4;
  color: #111;
  line-height: 1.6;
  scroll-behavior: smooth;
}
nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 12vh;
  width: 100%;
  padding: 0 6vw;
  background-color: transparent;         /* Fully transparent */
  backdrop-filter: blur(4px);            /* Keeps the blur effect */
  -webkit-backdrop-filter: blur(4px);    /* Safari support */
  z-index: 10;
}
nav h1, .nav-right ul li a {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


nav h1 {
    font-size: 1.6vw;
    color: white;
    white-space: nowrap;
}

.nav-right{
    display: flex;
    align-items: center;
    gap: 2vw;
    
}

.nav-right ul{
    list-style: none;
    display: flex;
}

.nav-right ul li a{
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 550;
    font-size: 18.6px;
    padding: 20px 25px;
    overflow: hidden;
}

.nav-right ul li a:before{
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background-color: #fff;
    transform: all ease 0.5s;
    transform: scaleX(0);
}

.nav-right ul li a:hover:before{
    transform: scaleX(1);
}

.nav-right ul li a span{
    display:block;
    transition: all ease 0.5s;
}

.nav-right ul li a span:nth-child(2){
       left:0;
       top: 0; right: 0;
       text-align: center;
       position: absolute;
       transform: translateY(-30px);
}


.nav-right ul li a.btn {
  display: inline-block;
  padding: 20px 20px;              
          /* Light grey background */
  color: white !important;           /* Dark text inside */
  border-radius: 50px;             /* Fully rounded */
  font-weight: 550;
  font-size: 17.6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-right ul li a:hover span:nth-child(1){
    transform: translateY(50px);

}

.nav-right ul li a:hover span:nth-child(2){
    transform: translateY(20px);
}

nav.text-dark h1,
nav.text-dark .nav-right ul li a {
  color: #111 !important;              /* ✅ Dark text after scroll */
}


.section {
  padding: 4rem 5%;
  background-color: #fff;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* hero section */
.hero {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.hero-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  text-align: left;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ========== Info Cards ========== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
  justify-content: center;
  text-align: center;
}

.info-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #1a1a1a;
  color: #f1f1f1;
  padding: 2.5rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  border: 1px solid #333;
  position: relative;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  border-color: #808080;
  background: #222;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.info-card p {
  font-size: 1rem;
  color: #ccc;
}

/* ========== Contact Form ========== */
.form-split {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  position: relative;
  border: 2px solid #111;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-color: #fff;
  margin-top: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.contact-form h2 {
  background-color: #111;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  text-align: left;
  max-width: 1000px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 2px solid #111;
  border-bottom: none;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}


.form-column {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-column h3 {
  padding-bottom: 0.5rem;
  font-size: 1.4rem;
  border-bottom: 0px solid #111;
  color: #111;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1 1 48%;
  min-width: 140px;
}

.form-column input,
.form-column select,
.form-column textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 1rem;
  background-color: #fff;
  width: 100%;
}

.form-column textarea {
  resize: vertical;
}

.form-split::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: #111;
  transform: translateX(-0.5px);
}

.form-footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

.form-footer button[type="submit"] {
  background-color: #111;
  color: white;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: -1rem;
}

.form-footer button[type="submit"]:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .form-split {
    flex-direction: column;
  }

  .form-split::before {
    display: none;
  }

  .contact-form h2 {
    text-align: center;
  }

  .form-row input {
    flex: 1 1 100%;
  }
}

/* call to action (cta) section */
.cta-footer {
  background-color: #111;
  color: #fff;
  padding: 4rem 2rem;
  font-size: 0.95rem;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.cta-column {
  flex: 1;
  min-width: 240px;
}

.cta-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-column ul li {
  margin-bottom: 0.5rem;
}

.cta-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-column ul li a:hover {
  color: #e28b10;
}

.subscribe-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 2px;
  font-size: 1rem;
}

.subscribe-form button {
  background-color: #e28b10;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #333;
}

.cta-column p {
  margin: 0.4rem 0;
  color: #ccc;
  font-size: 0.95rem;
}

nav.scrolled {
  background-color: white;
  backdrop-filter: none;
}

nav.scrolled h1,
nav.scrolled .nav-right ul li a {
  color: #111 !important;
  text-shadow: none;
}


.footer,
.footer * {
  color: white;
  
}

.footer a {
  color: white;
  text-decoration: none; 
}

section.footer{
  position: relative;
  width: 100%;
  padding: 100px 8% 100px;
  background-color: black;
 
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr;
  grid-gap: 20px;
}

.footer .footer-col{
  position: relative;
  z-index: 2;
}

.footer .footer-col .col-header{
  position: relative;
  margin-bottom: 20px;
}

.footer-col .col-header h2{
  font-size: calc(16px + 0.6vw);
  color: white;
  font-weight: 500;
}
.footer-col-1 .col-desc  .col-header h1{
  padding-top: 35%;
}

.footer-col-1 .col-desc p{
  font-size: 15px;
  color: white;
  line-height: 1.3;
  margin-top: 35px ;
  margin-bottom: 35px;
}

.footer-col-1 .col-desc p:nth-child(2){
  margin-top: 5px;
}

.footer-col-1 .col-desc .footer-social-media{
  margin-top: 50px;
}

.col-desc .footer-social-media a{
  color: white;
  text-decoration: none;
  font-size: calc(12px + 0.4vw);
  margin-right: 15px;
  transition: color 0.3s;
}

.c.col-desc .footer-social-media a:hover{
  color: white;
}

.footer-col-ol-desc{
  display: flex;
  flex-direction: column;
}

.footer-col-2 .col-desc .contact-row{
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.footer-col-2 .col-desc .contact-row span{
  color: white;
}

.footer-col-2 .col-desc .contact-row span:nth-child(1){
  color: white;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 2px;
}

.footer-col-3 .col-desc{
  display: flex;
  flex-direction: column;
}

.footer-col-3 .col-desc a{
  position: relative;
  text-decoration: none;
  color: white;
  margin-bottom: 25px;
  align-self: flex-start;
  transition: all 0.3s;
  left: 15px;
}

.footer-col-3 .col-desc a::before{
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  background-color: white;
  border-radius: 50%;
  left: -15px; top: 50%;
  transform: translateY(-50%);
}

.footer-col-3 .col-desc a:hover{
  letter-spacing: 2px;
}

.footer-col-4 .col-desc{
  display: flex;
  flex-direction: column;
}

.footer-col-4 .col-desc p{
  font-size: 15px;
  color: white;
  line-height: 1.3;
}

.footer-col-4 .col-desc form{
  display: flex;
  flex-direction: column;
  margin-top: 38px;
}

.footer-col-4 .col-desc form input{
  width: 100%;
  padding: 12px;
  border: 1px solid black;
  outline: none;
  border-radius: 5px;
  margin-bottom: 9px;
}

.footer-col-4 .col-desc form .email-submit-btn{

  background-color: transparent;  
  border: 1px solid white;        
  padding: 0.5rem 1rem;             
  cursor: pointer;                 
  margin-top: 2rem; }

 

html {
  scroll-behavior: smooth;
}
