:root {
  --primary: #6c63ff;
  --secondary: #4a44c6;
  --accent: #ff6584;
  --dark: #2a2d3e;
  --light: #f7f9fc;
  --gray: #8c8e9a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.btn-accent {
  background: var(--accent);
  box-shadow: 0 4px 15px rgba(255, 101, 132, 0.3);
}

.btn-accent:hover {
  background: #ff4d73;
  box-shadow: 0 6px 20px rgba(255, 101, 132, 0.4);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  z-index: 1001;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: white;
  z-index: 999;
  transition: right 0.4s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin-bottom: 20px;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 100px 0 50px;
}

.hero-section-main-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-section-left-box {
  width: 100%;
  height: 50%;
  background-color: #dff7f7;
}

.hero-section-right-box {
  width: 100%;
  height: 50%;
  background-color: #ffffff;
}

.hero-section-floating-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.hero-section-floating-contact-heading-para-section {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

.hero-section-floating-contact-heading-para-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-section-floating-contact-heading-para-section p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
}

.hero-section-floating-contact-main-section {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 13px 18px -11px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.hero-section-floating-contact-left-main-section {
  width: 40%;
  border-radius: 15px;
  overflow: hidden;
  background-color: #dff7f7;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section-floating-contact-left-main-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.hero-section-floating-contact-left-main-section img:hover {
  transform: scale(1.05);
}

.hero-section-floating-contact-right-main-section {
  width: 55%;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  padding: 14px 16px;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f9fafb;
  font-family: "Source Sans Pro", sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.form-control::placeholder {
  color: #a0a4a8;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}

.submit-btn:hover {
  background-color: var(--secondary);
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #b0b3c1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8c8e9a;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-section-floating-contact-main-section {
    flex-direction: column;
  }

  .hero-section-floating-contact-left-main-section {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
  }

  .hero-section-floating-contact-right-main-section {
    width: 100%;
  }

  .hero-section-floating-contact-heading-para-section h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-section {
    padding: 120px 0 50px;
  }

  .hero-section-floating-contact-heading-para-section h1 {
    font-size: 2rem;
  }

  .hero-section-floating-contact-heading-para-section p {
    font-size: 1rem;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .hero-section-floating-contact-main-section {
    padding: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero-section-floating-contact-heading-para-section {
    padding: 10px 0;
  }

  .hero-section-floating-contact-heading-para-section h1 {
    font-size: 1.8rem;
  }

  .hero-section-floating-contact-main-section {
    padding: 15px;
  }

  .hero-section-floating-contact-left-main-section {
    height: 250px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .form-control {
    padding: 12px 14px;
  }

  .submit-btn {
    padding: 14px 20px;
  }
}

@media (max-width: 400px) {
  .hero-section-floating-contact-heading-para-section h1 {
    font-size: 1.6rem;
  }

  .hero-section-floating-contact-heading-para-section p {
    font-size: 0.9rem;
  }

  .logo img {
    height: 40px;
  }
}
