@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Hand+Pre:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.min.css');

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

html,
body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Hide Scrollbar */
.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

:root {
  --mobile-nav-height: 450px;
  --desktop-nav-height: 650px;
  --primary-color: #ff8c42;
  --primary-dark: #cc6d27;
  --primary-light: #ffa867;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --background-color: #ffffff;
  --section-background: #f8f9fa;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/*---------------------------- Start Header Style ---------------------------------*/
header {
  height: 80px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 5vw;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: height 0.4s ease;
  overflow: hidden;

  animation: slideDown 1s ease-out forwards;
  opacity: 0;
}

header.expand {
  height: var(--mobile-nav-height);
  background-color: rgba(0, 0, 0, 1);
}

header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

/* Logo */
header .logo {
  all: unset;
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: bold;
  font-family: "oswald", cursive;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  animation: zoomIn 0.6s ease-out 1s forwards;
  cursor: pointer;
}

header .logo .logo-img {
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  header .logo {
    font-size: 2.5rem;
  }

  header .logo .logo-img {
    width: 50px;
    height: 50px;
  }
}

/* Right Section */
header .right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 6rem;
  font-family: 'Roboto';
  font-weight: 100;
}

header .icon {
  animation: zoomIn 0.6s ease-out 1s forwards;
  opacity: 0;
  cursor: pointer;
}

header .icon i {
  font-size: 2rem;
  color: #fff;
}

header .contact-info {
  color: #fff;
  display: none;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1130px) {
  header .contact-info {
    display: flex;
  }
}

header .contact-data {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  line-height: 1.2;
}

header .contact-data:nth-child(1) {
  animation-delay: 1.6s;
}

header .contact-data:nth-child(2) {
  animation-delay: 1.9s;
}

header .contact-data:nth-child(3) {
  animation-delay: 2.2s;
}

header .contact-data .heading {
  font-size: 0.8rem;
  margin-bottom: 3px;
}

header .contact-data i {
  font-size: 2rem;
  margin-right: 4px;
  color: var(--primary-color);
}

header .contact-data .child {
  all: unset;
  font-size: 1rem;
}

/* Navigation Menu */
header .nav-links {
  display: none;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

header.expand .nav-links {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

header .nav-links a {
  position: relative;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-30px);
  animation: none;
  transition: color 0.3s ease;
}

/* Underline effect */
header .nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: crimson;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

/* On hover: underline expands + color change */
header .nav-links a:hover {
  color: crimson;
}

header .nav-links a:hover::after {
  width: 100%;
  left: 0;
  transform: translateX(0);
}

header.expand .nav-links a {
  animation: slideInRight 0.4s ease forwards;
}

header.expand .nav-links a:nth-child(1) {
  animation-delay: 0.2s;
}

header.expand .nav-links a:nth-child(2) {
  animation-delay: 0.4s;
}

header.expand .nav-links a:nth-child(3) {
  animation-delay: 0.6s;
}

header.expand .nav-links a:nth-child(4) {
  animation-delay: 0.8s;
}

header.expand .nav-links a:nth-child(5) {
  animation-delay: 1s;
}

/* Animations */
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

header .nav-links .mobile-contact {
  display: none;
}

/* Hide desktop contact info below 800px */
@media (max-width: 800px) {
  header.expand {
    height: var(--desktop-nav-height);
    background-color: rgba(0, 0, 0, 1);
  }

  header .nav-links .mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  header .nav-links .mobile-contact .contact-data {
    flex-direction: row;
    gap: 0.5rem;
    color: #fff;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.4s ease forwards;
  }

  header .nav-links .mobile-contact .contact-data:nth-child(1) {
    animation-delay: 1s;
  }

  header .nav-links .mobile-contact .contact-data:nth-child(2) {
    animation-delay: 1.2s;
  }

  header .nav-links .mobile-contact .contact-data:nth-child(3) {
    animation-delay: 1.4s;
  }
}

/*---------------------------- End Header Style ---------------------------------*/

/*---------------------------- Start Footer Style ---------------------------------*/
.footer {
  background-color: #1a2332;
  color: #ffffff;
  padding: 60px 0 0;
}

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

.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer .footer-section h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer .footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer .footer-section ul {
  list-style: none;
}

.footer .footer-section ul li {
  margin-bottom: 12px;
}

.footer .footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer .footer-section ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer .footer-section ul li a i {
  margin-right: 8px;
  width: 16px;
}

.footer .contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer .contact-info i {
  color: var(--primary-color);
  margin-right: 12px;
  width: 20px;
  font-size: 16px;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #1a2332;
}

.footer .footer-bottom {
  border-top: 1px solid #2d3748;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .footer-links {
  display: flex;
  gap: 30px;
}

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

.footer .footer-links a:hover {
  color: var(--primary-color);
}

.footer .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer .copyright {
  color: #cccccc;
}

.footer .copyright a {
  color: var(--primary-color);
  text-decoration: none;
}

.footer .designed-by {
  color: #cccccc;
}

.footer .designed-by a {
  color: var(--primary-color);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .footer .social-links {
    justify-content: center;
  }
}

/*---------------------------- End Footer Style ---------------------------------*/