/* Global Styles */
:root {
  --primary-color: #f39c12;
  --primary-light: #f8c471;
  --primary-dark: #d68910;
  --secondary-color: #333;
  --light-color: #f9f9f9;
  --dark-color: #222;
  --text-color: #444;
  --white: #fff;
  --grey-light: #f4f4f4;
  --border-color: #e0e0e0;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 6px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
  padding-top: 80px; /* Added top padding */
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
}

.section-heading.light h2 {
  color: var(--white);
}

.underline {
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto;
}

.section-heading.light .underline {
  background-color: var(--white);
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav ul {
  display: flex;
}

.main-nav ul li {
  margin-left: 30px;
}

.main-nav ul li a {
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--primary-color);
}

.main-nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav ul li a:hover:after,
.main-nav ul li a.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--light-color);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 15px;
  font-size: 14px;
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 120px 0 50px;
  text-align: center;
}

.page-banner h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 18px;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-slogan {
  color: var(--white);
  font-size: 14px;
  font-style: italic;
  opacity: 0.8;
  margin-top: 10px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--white);
  opacity: 0.8;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
}

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

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-contact a {
  color: var(--white);
  opacity: 0.8;
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-contact .social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-start;
}

.footer-contact .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
  padding: 0;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: none;
}

.footer-contact .social-icon i {
  color: #000;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.footer-contact .social-icon:hover {
  background: var(--primary-color);
}

.footer-contact .social-icon:hover i {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--white);
  opacity: 0.7;
  transition: var(--transition);
}

.footer-bottom a:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo, .footer-links, .footer-contact {
    margin-bottom: 30px;
  }

  .footer-contact p {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav ul li {
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .main-nav ul li:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .footer-contact .social-icons {
    gap: 10px;
  }
  .footer-contact .social-icon {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
  .footer-contact .social-icon i {
    font-size: 17px;
  }
}

/* Utility Classes */
.trademark {
  font-size: 0.7em;
  vertical-align: super;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.text-center {
  text-align: center;
}