/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== ANIMATED BACKGROUND ========== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #06b6d4, #6366f1);
  top: 60%;
  right: 10%;
  animation-delay: -7s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ec4899, #06b6d4);
  bottom: 20%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(30px) rotate(240deg);
  }
}

.content-wrapper {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* ========== SOCIAL LINKS ========== */
.social-vertical {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.social-vertical .rotate {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
}

.social-vertical .icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-vertical .icons a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.social-vertical .icons a:hover {
  background: #6366f1;
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* ========== GLOBAL STYLES ========== */
* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
  overflow-x: hidden;
  text-align: justify;
}

/* ========== LOGO STYLING ========== */
.logo-img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Preloader */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007BFF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Particle Background */
.interactive-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#particle-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

.color-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.logo img {
  height: 40px;
}

/* Navigation */
nav a {
  margin-left: 20px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #007BFF;
}


.social-vertical {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.rotate {
  writing-mode: vertical-rl;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #777;
}

.icons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icons a {
  margin: 0.6rem 0;
  font-size: 1.2rem;
  color: #222;
  transition: transform 0.2s ease, color 0.2s ease;
}

.icons a:hover {
  transform: scale(1.2);
  color: #007BFF;
}


/* Section Header */
.section-header {
  text-align: center;
  padding: 60px 20px 20px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-header .subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-top: 8px;
}

/* Contact Widgets */
.contact__widget__item {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  margin: 20px;
  width: 400px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__widget__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.contact__widget__item__icon {
  font-size: 1.8rem;
  color: #007BFF;
  margin-bottom: 15px;
}

.contact__widget__item__text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact__widget__item__text a {
  color: #333;
  text-decoration: none;
}

.contact__widget__item__text a:hover {
  color: #007BFF;
}

/* Contact Form */
.contact__form {
  background: #fff;
  padding: 40px 30px;
  width: 650px;
  margin-right: -100px;
  border-radius: 12px;
  margin-bottom: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact__form h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.contact__form p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.contact__form .form-group {
  margin-bottom: 20px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #007BFF;
}

.contact__form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
/* Enhanced Site Button */
.site-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-btn:hover {
    background: linear-gradient(135deg, #0056b3, #007BFF);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.site-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.site-btn:hover i {
  transform: translateX(4px);
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.site-btn:hover {
  background: #0056b3;
}

/* Footer */
.footer {
  background-color: #fff;
  padding: 30px 10px;
  text-align: center;
  font-size: 0.95rem;
  color: #444;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.05);
}

.footer__copyright__text a {
  color: #007BFF;
  font-weight: 500;
  text-decoration: none;
}

.footer__copyright__text a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
    margin-top: 10px;
  }



  .contact__form {
    padding: 25px 20px;
  }

  .site-btn {
    width: 100%;
    text-align: center;
  }
}
/* Custom Cursor */
.custom-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(0, 123, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    z-index: 9999;
}

.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}