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


/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --green-blue-crayola: hsl(202, 75%, 47%);
  --prussian-blue: hsl(202, 71%, 15%);
  --eerie-black: hsl(210, 11%, 15%);
  --dark-orange: hsl(357, 84%, 52%);
  --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);

  /**
   * animation
   */
  --scroll-behavior: smooth;
  --animation-duration: 0.5s;
  --animation-delay: 0.2s;
  --animation-timing: cubic-bezier(0.4, 0, 0.2, 1);

}





/*-----------------------------------*\
  #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: var(--scroll-behavior);
}

body {
  background-color: var(--white);
  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%); }





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

.container { padding-inline: 15px; }

.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;
}

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

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

.w-100 { width: 100%; }





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

.header-contact { display: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 15px;
  z-index: 4;
  transition: var(--transition);
}

.header.active { background-color: var(--green-blue-crayola); }

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  font-family: var(--ff-oswald);
  color: var(--white);
  font-size: 3rem;
}

.nav-open-btn {
  color: var(--white);
  font-size: 35px;
}

.nav-open-btn ion-icon { --ionicon-stroke-width: 40px; }

.navbar {
  position: fixed;
  top: 0;
  left: -300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  z-index: 3;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}


.navbar.active {
  visibility: visible;
  transform: translateX(300px);
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-block-end: 1px solid var(--plutinum);
  padding: 30px 20px;
}

.navbar-top .logo {
  color: var(--onyx);
  font-size: 3rem;
}

.nav-close-btn { font-size: 25px; }

.nav-close-btn ion-icon { --ionicon-stroke-width: 40px; }

.navbar-item:not(:last-child) { border-block-end: 1px solid var(--plutinum); }

.navbar-link {
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  transition: var(--transition);
}

.navbar-link:is(:hover, :focus) {
  background-color: var(--cultured-1);
  color: var(--dark-orange);
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_60);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

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





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

.hero {
  position: relative;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-block: 60px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-logo-section {
  padding: 1.5rem;
  display: grid;
  place-items: center;
  min-height: 30px;
}

.hero-heading-section {
  padding: 2rem;
  display: grid;
  place-items: start;
  min-height: 100px;
  text-align: left;
}

.main-logo {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px;
}

.hero-title {
  font-family: var(--ff-oswald);
  font-size: 10rem;
  font-weight: var(--fw-700);
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-title-main {
  color: var(--dark-orange);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-align: left;
}

.btn-outline {
  max-width: max-content;
  margin: 0 auto;
  font-size: var(--fs-9);
  background-color: var(--white);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  border: 2px solid var(--white);
  padding: 12px 30px;
  transition: var(--transition);
  border-radius: 5px;
  display: block;
  text-align: center;
}

.btn-outline:is(:hover, :focus) {
  background-color: var(--dark-orange);
  border-color: var(--dark-orange);
  transform: translateY(-2px);
}

.hero-shape {
  position: absolute;
  z-index: -1;
  animation: move 2s ease-in-out infinite alternate;
}

.hero .shape-1 {
  top: 100px;
  left: 30px;
}

.hero .shape-2 {
  bottom: 80px;
  right: 30px;
}

@keyframes move {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}

@media (max-width: 990px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-heading-section {
    place-items: center;
    text-align: center;
  }
  
  .hero-title {
    font-size: 7rem;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .main-logo {
    width: 90%;
  }
}

@media (max-width: 550px) {
  .hero-title {
    font-size: 4rem;
    gap: 10px;
  }
  
  .main-logo {
    width: 100%;
  }
  
  .hero-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 550px) {
  .main-logo {
    width: 70%;
  }
  .hero {
    min-height: 10vh;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.7);
  }
}

.hero-logo {
  margin-bottom: 2rem;
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1); /* Makes the logo white */
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-banner {
  position: relative;
  box-shadow: var(--shadow-2);
  max-width: 300px;
  margin-block-end: 60px;
}

.about .abs-img-2 { display: none; }

.about .abs-img {
  position: absolute;
  bottom: 40px;
  right: 0;
  animation: move 2s ease-in-out infinite alternate;
}

@media (max-width: 640px) {
  .about-banner {
    display: none;
  }
}
.about :is(.section-title, .section-text) { margin-block-end: 20px; }

.about-list { margin-block-end: 40px; }

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-text { font-size: var(--fs-8); }

.about-icon {
  min-width: max-content;
  color: var(--dark-orange);
  margin-block-start: 8px;
}

.about-item:not(:last-child) { margin-block-end: 10px; }

@media screen and (min-width: 540px) {

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


}

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

.service { background-color: var(--alice-blue); }

.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: var(--white);
  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; }






/*-----------------------------------*\
  #Products
\*-----------------------------------*/

.product {
  background-color: var(--white);
  padding: 100px 0;
}

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

.product .section-text {
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--animation-timing);
  background-color: var(--white);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.product-card:hover .product-content {
  transform: translateY(0);
}

.product-title {
  font-size: var(--fs-5);
  margin-bottom: 15px;
  color: var(--white);
}

.product-description {
  font-size: var(--fs-8);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: var(--fs-9);
}

.product-features ion-icon {
  color: var(--dark-orange);
  font-size: 20px;
}

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-image {
    height: 250px;
  }
  
  .product-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  }
  
  .product-content {
    transform: translateY(0);
  }
}

@media (max-width: 512px) {

  .product-image {
    height: 300px;
  }
}


/*-----------------------------------*\
  #ROUND BARS
\*-----------------------------------*/

.round-bars {
  background-color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.round-bars-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('../images/round-bars-bg.jpg') center/cover no-repeat;
  filter: blur(4px) brightness(0.7);
  z-index: 0;
  transform: scale(1.1); /* Prevent blur edges */
}

.round-bars .container {
  position: relative;
  z-index: 1;
}

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

.round-bars .section-text {
  margin-bottom: 50px;
}

.round-bars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.round-bar-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--cultured-2);
}

.round-bar-card:hover {
  transform: translateY(-5px);
}

.round-bar-icon {
  background: var(--dark-orange);
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.round-bar-card:hover .round-bar-icon {
  transform: rotateY(180deg);
}

.round-bar-title {
  color: var(--prussian-blue);
  font-size: var(--fs-5);
  margin-bottom: 20px;
  text-align: center;
  font-weight: var(--fw-600);
}

.round-bar-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.round-bar-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: var(--fs-8);
  color: var(--onyx);
}

.round-bar-features ion-icon {
  color: var(--dark-orange);
  font-size: 20px;
}

@media (max-width: 768px) {
  .round-bars-grid {
    grid-template-columns: 1fr;
  }
  
  .round-bar-card {
    padding: 30px 20px;
  }
}

.round-bars .section-subtitle{
  color:var(--dark-orange);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.round-bars .section-title,
.round-bars .section-text {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}



/*-----------------------------------*\
  #VENTURES
\*-----------------------------------*/

.ventures {
  background-color: var(--white);
  padding: 80px 0;
  position: relative;
}

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

.ventures .section-title {
  margin-bottom: 20px;
  color: var(--prussian-blue);
}

.ventures .section-text {
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--onyx);
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.venture-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--cultured-2);
}

.venture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.venture-icon {
  background: var(--dark-orange);
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.venture-card:hover .venture-icon {
  transform: rotateY(180deg);
}

.venture-title {
  color: var(--prussian-blue);
  font-size: var(--fs-5);
  margin-bottom: 15px;
  font-weight: var(--fw-600);
}

.venture-text {
  color: var(--onyx);
  font-size: var(--fs-8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.venture-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--cultured-2);
}

.venture-address ion-icon {
  color: var(--dark-orange);
  font-size: 20px;
  margin-top: 3px;
}

.venture-address address {
  font-style: normal;
  font-size: var(--fs-9);
  color: var(--onyx);
  line-height: 1.6;
}

.venture-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--cultured-2);
}

.venture-contact ion-icon {
  color: var(--dark-orange);
  font-size: 20px;
}

.venture-contact a {
  font-size: var(--fs-9);
  color: var(--onyx);
  transition: var(--transition);
}

.venture-contact a:hover {
  color: var(--dark-orange);
}

@media (max-width: 992px) {
  .ventures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ventures {
    padding: 60px 0;
  }

  .ventures-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .venture-card {
    padding: 30px 20px;
  }
}


/*-----------------------------------*\
  #contact
\*-----------------------------------*/
.contact { background-color: var(--alice-blue); }

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

.contact .section-title { margin-bottom: 20px; }

.contact .section-text { margin-bottom: 60px; }

.contact-form { margin-bottom: 50px;}

.contact label {
  color: var(--dark-orange);
  font-weight: var(--fw-500);
  margin-bottom: 10px;
}

.contact .input-field {
  background: transparent;
  color: var(--dark);
  font-size: var(--fs-9);
  padding: 10px 15px;
  border: 1px solid hsla(244, 17%, 67%, 0.3);
  border-radius: 4px;
}

.contact .input-field:focus {
  outline: none;
  background: var(--white);
}

.contact .input-field::placeholder { color: var(--light-gray);}

textarea.input-field {
  margin-bottom: 20px;
  resize:both;
  min-height: 50px;
  max-height: 200px;
  width: 100%;
  height: 100px;
  max-height: 200px;
}

.contact .btn-primary {
  position: relative;  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.contact .btn-primary ion-icon { --ionicon-stroke-width: 40px; }

.btn-primary::before {
  display: none;
}
.contact-flex {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.contact-form, .contact-list {
  flex: 1 1 0;
  min-width: 260px;
}

.contact-list li:not(:last-child) { margin-bottom: 10px;}

.contact-link {
  color: var(--onyx);
  font-weight: var(--fw-500);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin-top: 20px;
}

.contact-link ion-icon {
  font-size: 20px;
  --ionicon-stroke-width: 30px;
}

.contact-link :is(span, address) { width: calc(100% - 25px); }

.contact-link address { font-size: normal; }


@media (max-width: 800px) {
  .contact-flex {
    flex-direction: column;
    gap: 20px;
  }
}




/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/
.footer {
  border-radius: 30vh 0 0 0;
  background-color: var(--eerie-black);
  color: var(--white);
}

@media (max-width: 990px) {
  .footer {
    border-radius: 0;
  }
  .footer-bottom {
    text-align: center;
  }
}

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

.footer .logo {
  color: var(--white);
  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; cursor: default; }

.footer-bottom {
  padding-block: 40px;
  border-radius: 2vh 2vh 0 0;
  background-color: #fff;
  border-block-start: 1px solid var(--white);
  font-size: var(--fs-9);
  color: var(--indigo-dye);
}


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





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

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--eerie-black);
  color: var(--white);
  font-size: 20px;
  padding: 12px;
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.back-top-btn:hover {
  background-color: var(--prussian-blue);
  transform: translateY(-15px);
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * 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;
  }






/**
 * 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; }

  .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;
  }

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



  /**
   * contact
   */

   
.contact-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


  /**
   * 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; }


  /**
   * 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; }


  /**
   * FOOTER
   */

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

}





/*-----------------------------------*\
  #ANIMATIONS
\*-----------------------------------*/

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In Animation */
@keyframes slideIn {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Rotate In Animation */
@keyframes rotateIn {
  from {
    transform: rotate(-180deg) scale(0);
    opacity: 0;
  }
  to {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transition: all var(--animation-duration) var(--animation-timing);
  will-change: transform, opacity;
}

.animate-on-scroll.fade-in {
  animation: fadeIn var(--animation-duration) var(--animation-timing) forwards;
}

.animate-on-scroll.slide-in {
  animation: slideIn var(--animation-duration) var(--animation-timing) forwards;
}

.animate-on-scroll.scale-in {
  animation: scaleIn var(--animation-duration) var(--animation-timing) forwards;
}

.animate-on-scroll.rotate-in {
  animation: rotateIn var(--animation-duration) var(--animation-timing) forwards;
}

/* Animation Delays */
.delay-1 { animation-delay: calc(var(--animation-delay) * 1); }
.delay-2 { animation-delay: calc(var(--animation-delay) * 2); }
.delay-3 { animation-delay: calc(var(--animation-delay) * 3); }
.delay-4 { animation-delay: calc(var(--animation-delay) * 4); }

/* Apply animations to specific sections */
.hero-content {
  animation: fadeIn var(--animation-duration) var(--animation-timing);
  will-change: transform, opacity;
}

.about-banner {
  animation: slideIn var(--animation-duration) var(--animation-timing);
  will-change: transform, opacity;
}

.service-card,
.testimonial-card,
.venture-card,
.round-bar-card,
.product-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--animation-duration) var(--animation-timing);
  will-change: transform, opacity;
}

.service-card.animate,
.testimonial-card.animate,
.venture-card.animate,
.round-bar-card.animate,
.product-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Add smooth transition for all interactive elements */
a, button, .btn, .card, .service-card, .testimonial-card, 
.venture-card, .round-bar-card, .product-card {
  transition: all var(--animation-duration) var(--animation-timing);
  will-change: transform, opacity;
}

/* Add hover animations */
.service-card:hover,
.testimonial-card:hover,
.venture-card:hover,
.round-bar-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Add animation to section titles */
.section-subtitle,
.section-title,
.section-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--animation-duration) var(--animation-timing);
  will-change: transform, opacity;
}

.section-subtitle.animate,
.section-title.animate,
.section-text.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn var(--animation-duration) var(--animation-timing) forwards;
}