/*-----------------------------------*\
  #style.css
\*-----------------------------------*/
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --green-blue-crayola: hsl(202, 75%, 47%);
  --prussian-blue: hsl(202, 72%, 15%);
  --eerie-black: hsl(210, 11%, 15%);
  --dark-orange: hsl(32, 100%, 50%);
  --alice-blue: hsl(203, 100%, 97%);
  --light-gray: hsl(0, 0%, 80%);
  --indigo-dye: hsl(202, 64%, 26%);
  --cultured-1: hsl(0, 0%, 94%);
  --cultured-2: hsl(0, 0%, 95%);
  --cultured-3: hsl(0, 0%, 95%);
  --plutinum: hsl(0, 0%, 91%);
  --black_60: hsla(0, 0%, 0%, 0.6);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 24%);

  /**
   * typography
   */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  --fs-1: 6rem;
  --fs-2: 5rem;
  --fs-3: 4rem;
  --fs-4: 3rem;
  --fs-5: 2.2rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;
  --fs-9: 1.4rem;
  --fs-10: 1.2rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 50px;

  /**
   * shadow
   */
   
  --shadow-1: 2px 0 50px hsla(0, 0%, 0%, 0.2);
  --shadow-2: 0px 40px 60px hsla(202, 75%, 47%, 0.7);
  --shadow-3: 0px 0px 60px hsla(202, 75%, 47%, 0.5);

  /**
   * transition
   */

  --transition: 0.25s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
time,
span,
input,
button,
ion-icon { display: block; }

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-rubik);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  /* background-color: var(--plutinum); */
  color: var(--onyx);
  font-size: 1.6rem;
  line-height: 1.7;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 12px; }

::-webkit-scrollbar-track { background-color: var(--cultured-2); }

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
  border: 2px solid var(--cultured-2);
}

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
  .navbar-item.dropdown .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .navbar-item.dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 10px 0;
  }
  
  .navbar-item.dropdown .dropdown-icon {
    transition: transform 0.3s ease;
  }
  
  .no-scroll {
    overflow: hidden;
  }
}


/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px;
/* background-color: rgba(0, 46, 73, 0.459);;  */
}

.section { padding-block: var(--section-padding); 
            }

.h1,
.h2,
.h3 {
  font-family: var(--ff-oswald);
  line-height: 1.2;
  font-weight: var(--fw-600);
}

.h1 {
  font-size: var(--fs-3);
  text-transform: uppercase;
}

.h2,
.h3 { color: var(--prussian-blue); }

.h2 { font-size: var(--fs-4); }

.h3 { font-size: var(--fs-5); }

.img-holder {
  background-color: var(--light-gray);
  aspect-ratio: var(--width) / var(--height);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  color: var(--dark-orange);
  text-transform: uppercase;
  font-size: var(--fs-6);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-600);
  letter-spacing: 3px;
  margin-block-end: 10px;
}

.section-text { line-height: 1.4; }

.btn {
  position: relative;
  color: var(--white);
  background-color: var(--dark-orange);
  max-width: max-content;
  font-size: var(--fs-9);
  letter-spacing: 1px;
  padding-block: 10px;
  padding-inline: 15px 50px;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  transition: var(--transition);
}

.btn::before {
  top: 50%;
  right: 15px;
  width: 25px;
  height: 1px;
  background-color: var(--white);
}

.btn::after {
  top: -6px;
  right: -6px;
  bottom: -6px;
  width: 20px;
  border: 2px solid var(--dark-orange);
  z-index: -1;
}

.btn:is(:hover, :focus)::before { width: 33px; }

.btn:is(:hover, :focus)::after { width: 40px; }

.grid-list {
  display: grid;
  gap: 30px;
}

.btn-link {
  color: var(--dark-orange);
  font-size: var(--fs-7);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  /* overflow: hidden; */
  margin-left: 100px;
}

.btn-link > * {
  transform: translateX(-22px);
  transition: var(--transition);
}

.btn-link:is(:hover, :focus) > * { transform: translateX(0); }

.w-100 { width: 100%; }


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(0, 46, 73, 0.95);
  opacity: 0.99;
  margin-top: 0;
  padding-top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  max-height: 80px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-text {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 10px;
  transition: color 0.3s ease;
}

/* NAVBAR STYLES */
.navbar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.navbar.active {
  left: 0;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.navbar-top .logo-mobile {
  color: #002E49;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-close-btn {
  background: none;
  border: none;
  color: #002E49;
  font-size: 1.8rem;
  cursor: pointer;
}

.navbar-list {
  padding: 20px;
  list-style: none;
}

.navbar-item {
  position: relative;
  margin-bottom: 5px;
}

.navbar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: #222;
}

.navbar-link span {
  font-weight: 500;
}

.navbar-link:hover {
  background: #f5f5f5;
  color: #FFA630;
}

.dropdown-icon {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* DROPDOWN MENU */
.dropdown-menu {
  max-height: 0;
  overflow: hidden;
  padding-left: 15px;
  transition: max-height 0.4s ease;
  list-style: none;
}

.navbar-item.active .dropdown-menu {
  max-height: 500px;
}

.navbar-item.active .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu li {
  margin-bottom: 5px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #555;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: #f0f0f0;
  color: #002E49;
  padding-left: 20px;
}

.nav-open-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop dropdown styles */
@media (min-width: 992px) {
  .navbar {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    overflow: visible;
  }
  
  .navbar-top,
  .nav-close-btn {
    display: none;
  }
  
  .navbar-list {
    display: flex;
    gap: 15px;
    padding: 0;
  }
  
  .navbar-link {
    color: white;
    padding: 8px 15px;
  }
  
  .navbar-link:hover {
    color: #FFA630;
    background: transparent;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: none;
  }
  
  .navbar-item.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: none;
  }
  
  .dropdown-menu a {
    color: #555;
    padding: 8px 20px;
  }
  
  .dropdown-menu a:hover {
    color: #002E49;
    padding-left: 25px;
  }
  
  .nav-open-btn {
    display: none;
  }
}

@media (max-width: 991px) {
  .nav-open-btn {
    display: block;
  }
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  height: 100vh;
  min-height: 670px;
  overflow: hidden;
  margin-top: -48px;
  padding-top: 0;
  
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.slider-item.active {
  opacity: 1;
  z-index: 2;
}

.slider-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 46, 73, 0.6);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 3;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  animation: fadeInUp 1s ease;
}

.highlight {
  color: #FFA630;
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #FFA630;
  color: white;
}

.btn-primary:hover {
  background: #e69528;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 166, 48, 0.2);
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: all 0.1s ease;
}

.slider-control:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slider-control.prev {
  left: 20px;
}

.slider-control.next {
  right: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-----------------------------------*\
  #HERO STYLES
\*-----------------------------------*/

.hero {
  position: relative;
  height: 100vh;
  min-height: 690px;
  overflow: hidden;
  margin-top: -86px;
  border: 3px solid #e0e0e0;
  border-radius: 20px;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.slider-item.active {
  opacity: 1;
  z-index: 2;
}

.slider-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 46, 73, 0.6);
}

.hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

/* Slider controls - hidden on mobile by default */
.slider-control {
  display: none; /* Hidden on mobile */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.slider-control:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slider-control.prev {
  left: 20px;
}

.slider-control.next {
  right: 20px;
}

/* Show slider buttons on tablets and larger */
@media (min-width: 768px) {
  .slider-control {
    display: flex; /* Show buttons on larger screens */
    width: 50px;
    height: 50px;
  }
  
  .slider-control.prev {
    left: 30px;
  }
  
  .slider-control.next {
    right: 30px;
  }
}

/* Larger screens adjustments */
@media (min-width: 992px) {
  .slider-control {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .slider-control {
    width: 70px;
    height: 70px;
  }
  
  .hero {
    min-height: 689px;
  }
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service { background-color: rgba(0, 46, 73, 0.459); border: 3px solid #e0e0e0;
  border-radius: 20px;}

.service :is(.section-subtitle, .section-title, .section-text) { text-align: center; }

.service .section-title { margin-block-end: 20px; }

.service .section-text { margin-block-end: 50px; }

.service-card {
  background-color: rgba(133, 200, 238, 0.329);
  padding: 30px;
  border: 20px solid var(--cultured-3);
  transition: var(--transition);
  
}

.service-card:is(:hover, :focus-within) { border-color: var(--dark-orange); }

.service-card .card-icon { margin-block-end: 30px; }

.service-card .card-title .span {
  display: inline-block;
  color: var(--dark-orange);
  font-size: var(--fs-3);
  margin-inline-end: 15px;
}

.service-card .card-text { margin-block: 10px 20px; }

/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/
.project { background-color: rgba(0, 46, 73, 0.459);;  border: 3px solid #e0e0e0;
  border-radius: 20px;}

.project :is(.section-subtitle, .section-title, .section-text) { text-align: center; }

.project .section-text { margin-block: 20px 50px; }

.project-card { position: relative; background-color: rgba(34, 112, 158, 0.342);;}

.project-card .action-btn {
  background-color: var(--dark-orange);
  color: var(--white);
  font-size: 28px;
  padding: 16px;
  position: absolute;
  top: 30px;
  left: 30px;
  opacity: 0;
  transition: var(--transition);
}

.project-card:is(:hover, :focus-within) .action-btn { opacity: 1; }

.project-card .card-tag {
  color: var(--dark-orange);
  font-size: var(--fs-9);
}

.project-card .card-content {
  position: relative;
  background-color: rgba(133, 200, 238, 0.329);
  padding: 20px 30px;
  margin-block-start: -50px;
  margin-inline-start: 30px;
}

.project-card .h3 { font-size: var(--fs-7); }

.project-card .card-title { transition: var(--transition); }

.project-card :is(.card-title, .card-link):is(:hover, :focus) { color: var(--dark-orange); }

.project-card .card-link {
  color: var(--prussian-blue);
  font-size: var(--fs-10);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  margin-block-start: 5px;
  transition: var(--transition);
}

.project-list {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-block-end: 40px;
  scroll-snap-type: inline mandatory;
}

.project-item {
  min-width: 100%;
  scroll-snap-align: start;
}

.project-list::-webkit-scrollbar { height: 15px; }

.project-list::-webkit-scrollbar-track { outline: 2px solid var(--prussian-blue); }

.project-list::-webkit-scrollbar-thumb {
  border: 3px solid var(--cultured-1);
  background-color: var(--prussian-blue);
}

.project-list::-webkit-scrollbar-button { width: calc(25% - 40px); }


/* .project-card:hover {
  transform: scale(1.03);
} */


/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/
.blog{
  background-color: rgba(0, 46, 73, 0.459); border: 3px solid #e0e0e0;
  border-radius: 20px;
}
.blog :is(.section-subtitle, .section-title, .section-text) { text-align: center; }

.blog .section-text { margin-block: 20px 50px; }

.blog-card .card-content { position: relative; }

.blog-card .card-meta {
  background-color: var(--prussian-blue);
  color: var(--white);
  text-align: center;
  font-size: var(--fs-5);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-600);
  line-height: 1.5;
  max-width: max-content;
  margin-inline: auto 20px;
  margin-block: -80px 20px;
  padding: 20px 25px;
  box-shadow: -8px 8px 0 var(--dark-orange);
}

.blog-card .card-meta .span {
  color: var(--dark-orange);
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  line-height: 0.75;
}

.blog-card .card-text { margin-block: 15px; }


.blog-card:hover {
  transform: scale(1.03);
}

/* Partners Section Styles */
 .partners-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  background-color: rgba(27, 66, 88, 0.459);;
  text-align: center;
  border: 3px solid #e0e0e0;
  border-radius: 20px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.partner-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.partner-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-item img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  transition: transform 0.4s ease;
}

.partner-item:hover img {
  transform: scale(1.05);
}

/* Responsive Breakpoints */
@media (min-width: 540px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (min-width: 992px) {
  .partners-section {
    padding: 100px 0;
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
  }}




/* CONTACT SECTION STYLES */

.section {
  padding: 60px 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact {
  background-color: #f9f9f9;
  background-color: rgba(0, 46, 73, 0.459);
  color: #222;
  text-align: center;
   border: 3px solid #e0e0e0;
  border-radius: 20px;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  font-size: 1.05rem;
  text-align: center;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info a {
  color: #007BFF;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-map iframe {
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  min-height: 300px;
  border: none;
}

/* Responsive layout for tablets and desktops */
@media (min-width: 768px) {
  .contact-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  .contact-info {
    text-align: left;
  }
}




/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--plutinum);
  background-color: rgba(0, 46, 73, 0.459);
  color: var(--prussian-blue);
  margin-top: 2px;
  border: 3px solid #e0e0e0;
  border-radius: 20px;
}

.footer-top {
  display: grid;
  gap: 40px;
}

.footer .logo {
  color: var(--prussian-blue);
  font-weight: var(--fw-800);
  font-size: 3.2rem;
}

.footer-text { margin-block: 10px 30px; }

.social-list {
  display: flex;
  gap: 10px;
}

.social-link {
  background-color: var(--indigo-dye);
  color: var(--white);
  font-size: 20px;
  padding: 12px;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) { background-color: var(--prussian-blue); }

.footer-list-title {
  font-size: var(--fs-6);
  max-width: max-content;
  padding-block-end: 10px;
  border-block-end: 3px solid var(--dark-orange);
  margin-block-end: 20px;
}

.footer-link { padding-block: 6px; }

.footer-bottom {
  padding-block: 40px;
  border-block-start: 1px solid var(--prussian-blue);
  font-size: var(--fs-9);
  color: var(--indigo-dye);
}

.copyright-link { display: inline-block; }





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--eerie-black);
  color: var(--white);
  font-size: 20px;
  padding: 10px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}





/*-----------------------------------*\
  #MEDIA QUERISE
\*-----------------------------------*/


 /* responsive for larger than 540px screen */


@media (min-width: 540px) {
  

  /**
   * REUSED STYLE
   */

  .btn {
    font-size: var(--fs-7);
    padding-inline: 30px 60px;
  }



  /**
   * HEADER
   */

  .header-contact {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: right;
    line-height: 1.2;
    margin-inline-start: auto;
  }

  .header .contact-label {
    text-transform: uppercase;
    font-size: var(--fs-9);
  }

  .header .contact-number {
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    letter-spacing: 1px;
  }

  .header .contact-icon {
    font-size: 35px;
    opacity: 0.6;
  }



  /**
   * ABOUT
   */

  .about .abs-img-2 {
    display: block;
    position: absolute;
    width: 400px;
    bottom: 0;
    left: 50px;
    z-index: -1;
  }

  .about .abs-img-1 { right: -200px; }

}





/**
 * responsive for larger than 640px screen
 */

@media (min-width: 640px) {

  /**
   * REUSED STYLE
   */

  .h1 { --fs-3: 5rem; }

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .container { max-width: unset; }

  .header .logo { font-size: 3.5rem; }



  /**
   * HERO
   */

  .hero { justify-content: flex-start; }

  .hero .shape-1 { left: 45px; }

  .hero-content {
    background-color: transparent;
    text-align: left;
  }

  .hero-title .span { --fs-2: 6rem; 
                         }

  .hero-text { max-width: 30ch;
  }

  .btn-outline { margin-inline: 0; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 720px;
              margin-top: -30px;
     }

  .h1 { --fs-3: 6rem; }

  .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * HERO
   */

  .hero-title .span { --fs-2: 7rem; }

  .hero-text {
    font-size: var(--fs-7);
    max-width: 40ch;
    margin-block-end: 40px;
    margin-top: 90px;
  }

  .btn-outline {
    font-size: var(--fs-7);
    padding: 12px 30px;
  }



  /**
   * FEATURES
   */

  .feature-card::before { --fs-1: 10rem; }



  /**
   * PROJECT
   */

  .project-list { gap: 80px; }

  .project-item { min-width: calc(50% - 40px); }



  /**
   * NEWSLETTER
   */

  .newsletter { margin-block-start: 110px; }

  .newsletter .container { position: relative; }

  .newsletter .newsletter-banner {
    position: absolute;
    bottom: -50px;
    left: 0;
    margin-block-end: 0;
  }

  .newsletter-content {
    max-width: 355px;
    margin-inline-start: auto;
  }

  .newsletter .section-title { --fs-4: 4rem; }

  .newsletter-btn {
    font-size: var(--fs-5);
    padding: 10px 30px;
  }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-4: 4.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */
  
  .container { max-width: 960px; }

  .h1 { --fs-3: 10rem; }

  .section-subtitle { --fs-6: 3rem; }

  .section-text {
    max-width: 70ch;
    margin-inline: auto;
  }

  .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * HEADER
   */
  
  .nav-open-btn,
  .navbar-top,
  .navbar-link > ion-icon { display: none; }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    display: flex;
    gap: 5px;
  }

  .navbar-item:not(:last-child) { border-block-end: none; }

  .navbar-link { color: var(--white); }

  .navbar-link:is(:hover, :focus) { background-color: transparent; }

  .header-contact { margin-inline-start: 0; }



  /**
   * HERO
   */
  
  .hero { grid-template-columns: 1fr; }

  .hero-content { padding: 0; }

  .hero-title .span { --fs-2: 12rem; }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .about-banner { margin-block-end: 0; }

  .about .abs-img-1 { right: -100px; }

  .about :is(.section-title, .section-text) { margin-block-end: 35px; }



  /**
   * FEATURE
   */

  .feature .title-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: self-end;
  }

  .feature .section-text { margin-block-end: 0; }

  .feature-list { margin-block-start: 120px; }

  .feature-card { padding-block-start: 80px; }

  .feature-card::before {
    --fs-1: 16rem;
    position: absolute;
    top: -90px;
    left: 20px;
  }



  /**
   * PROJECT
   */

  .project-item { min-width: calc(33.33% - 53.33px); }



  /**
   * BLOG
   */

  .blog-list { grid-template-columns: 1fr 1fr; }



  /**
   * NEWSLETTER
   */

  .newsletter { padding-block: 30px; }

  .newsletter .newsletter-banner { bottom: -30px; }

  .newsletter-content {
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }



  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
    justify-items: self-end;
  }

  .copyright { text-align: center; }

}


/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

  .h1 { --fs-3: 12rem; }

  /**
   * HEADER
   */

  .header .contact-number { --fs-6: 3rem; }
  /**
   * HERO
   */

  .hero {
    padding-block-start: 150px;
    background-position: left;
  }

  .hero-title .span { --fs-2: 14rem; }

  .hero-text { --fs-7: 2.4rem; }
  /**
   * ABOUT
   */

  .about-banner { max-width: 370px; }

  .about .abs-img-2 { width: max-content; }
/**
   * NEWSLETTER
   */

  .newsletter-content {
    max-width: 840px;
    grid-template-columns: 0.8fr 1fr;
  }
  /**
   * FOOTER
   */

  .footer-top { padding-block: 60px; }

}

.section { padding-block: var(--section-padding); }

.section.white { background-color: var(--isabelline); }

.section-divider { position: relative; }

.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-repeat: repeat no-repeat;
  background-position: bottom;
}

.section-divider.white::after { background-image: url("../images/shape-white.png"); }

.section-divider.gray::after { background-image: url("../images/shape-grey.png"); }

.w-100 { width: 100%; }


/* additional css */
.back-btn {
  display: inline-flex;
 align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: rgb(179, 40, 40);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

#product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #92e4f8;
}

/* Fix spacing between menu items */
.navbar-item:not(:last-child) {
  margin-bottom: 5px;
}

/* Ensure dropdown closes when clicking elsewhere on mobile */
@media (max-width: 768px) {
  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  .navbar-item.active .dropdown-menu {
    max-height: 500px;
  }
}

/*-----------------------------------*\
  #BACK TO TOP BUTTON
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #FFA630;
  color: white;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 46, 73, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top-btn:hover {
  background-color: #e69528;
}

.back-top-btn ion-icon {
  font-size: 1.8rem;
  --ionicon-stroke-width: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .back-top-btn {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }
  
  .back-top-btn ion-icon {
    font-size: 1.5rem;
  }
}


.about {
  background-color: rgba(0, 46, 73, 0.459);
  border: 3px solid #e0e0e0;
  border-radius: 20px;
  text-align: center; /* Center text content */
  padding: 40px 20px; /* Add padding */
}

.about .container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center child elements horizontally */
  max-width: 800px; /* Limit width */
  margin: 0 auto; /* Center container */
}

/* Remove or keep this if you still have some image */
.about-banner {
  display: none; /* Hide if removed */
}

.about-content {
  width: 100%; /* Take full width of container */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content */
}

.about :is(.section-title, .section-text) { 
  margin-block-end: 20px; 
  text-align: center; /* Ensure text is centered */
  width: 100%; /* Take full width */
}

.stats {
  display: flex;
  justify-content: center; /* Center stats horizontally */
  gap: 20px;
  margin-block-end: 40px;
  flex-wrap: wrap;
  width: 100%; /* Take full width */
}

.stat-item {
  text-align: center;
  min-width: 80px;
}

.stat-item h3 {
  color: var(--dark-orange);
  font-size: var(--fs-2);
  margin-block-end: 5px;
}

.stat-item p {
  font-size: var(--fs-8);
}

/* Responsive Adjustments */
@media (min-width: 540px) {
  .stats {
    gap: 30px;
  }
}

@media (min-width: 768px) {
  .about .container {
    padding: 60px 40px;
  }
  
  .stats {
    gap: 40px;
  }
}

@media (min-width: 992px) {
  .stat-item {
    min-width: 100px;
  }
}

@media (min-width: 1200px) {
  .stats {
    gap: 50px;
  }
}
@keyframes move {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}
