:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #3730a3;
  --accent-gold: #fbbf24;
  --dark-gold: #f59e0b;
  --light-bg: #f8fafc;
  --dark-bg: #0f172a;
  --text-dark: #1e293b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fredoka", cursive;
  color: var(--text-dark);
}
/* Modern Glassmorphism Effects */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.glass-dark {
  background: rgba(30, 58, 138, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(30, 58, 138, 0.2);
}

/* Modern Navigation */
.navbar {
  background: rgba(30, 58, 138, 0.95) !important;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  color: white !important;
}

.navbar-brand img {
  width: 50px;
  height: 50px;
  filter: brightness(1.1);
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-gold) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--accent-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:hover{
  border: none;
  outline: none;
  box-shadow: none;
}
.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Ultra-Modern Hero Section */
.hero {
  min-height: 100vh;
  background-image: url(../images/1.webp);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--accent-gold) 50%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5rem;
  background-color: #050a26b8;
  padding: 5px;
  border-radius: 34px 0px;
}

.btn-glow {
  background: linear-gradient(45deg, var(--accent-gold), var(--dark-gold));
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
  color: var(--primary-blue);
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.5s ease;
}

.btn-glow:hover::before {
  left: 100%;
}
.btn-light {
  background: linear-gradient(45deg, #fff, #fff);
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}
.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
  color: var(--primary-blue);
}

.btn-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.5s ease;
}
/* Hero Images */
.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-15deg);
  transition: all 0.3s ease;
}

.hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* Floating Animation for Hero Images */
.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px) perspective(1000px) rotateY(-15deg);
  }
  50% {
    transform: translateY(-20px) perspective(1000px) rotateY(-10deg);
  }
}

/* Modern Section Styles */
.section-modern {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About Section */
.about-section {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(30, 58, 138, 0.03),
    transparent
  );
  transform: rotate(45deg);
}

.about-content {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-gold), var(--dark-gold));
  border-radius: 25px 25px 0 0;
}

/* Ultra-Modern Service Cards */
.service-card-img {
  position: relative;
  margin-bottom: 1.5rem;
}
.service-card {
  background-color: #fff;
  padding: 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 58, 138, 0.1);
  text-align: center;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-gold), var(--dark-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 1.6rem;
}
.service-card p {
  height: 85px;
}
.service-icon {
  width: 80px;
  height: 80px;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.service-icon i {
  font-size: 2rem;
  color: white;
}
.service-card h3 i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  position: absolute;
  text-align: center;
  top: 8%;
  right: 20px;
  background-color: var(--accent-gold);
  border-radius: 15px;
  padding: 3px 10px;
}
.service-card .btn {
  border: 2px solid var(--primary-blue);
  transition: 0.3s ease;
  margin-bottom: 20px;
}
.service-card .btn:hover {
  background: var(--primary-blue);
  color: white;
  border: 2px solid var(--primary-blue);
}
/* CTA Banner with Neon Effect */
.cta-section {
  background-image: linear-gradient(to right, #b7256c, var(--primary-blue));
}
.cta-banner {
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cat-title i {
  color: #f8b119;
}
.cta-banner h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fade-up {
  animation: fadeUp 2s ease-in-out infinite;
}

.fade-in {
  animation: fadeIn 2s ease-in-out infinite;
  animation-delay: 1s;
}

/* Our work section */
.our-work img {
  width: 100%;
  border: 2px solid var(--primary-blue);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.our-work img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Form Section */
.form-section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
}

.form-section {
  background-image: linear-gradient(
      135deg,
      #1e3a8ab2 0%,
      #3730a3d4 50%,
      #4c1d95c9 100%
    ),
    url(../images/3.webp);
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  background: white;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-animation {
  animation-delay: 0.2s;
}

.stagger-animation:nth-child(2) {
  animation-delay: 0.4s;
}
.stagger-animation:nth-child(3) {
  animation-delay: 0.6s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero {
    min-height: 100% !important;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .about-content{
    padding: .8rem;
  }
  .service-card {
    margin-bottom: 2rem;
  }

  .form-container {
    margin: 0;
    padding: 2rem;
  }
  .service-card p {
    height: auto;
  }
  .form-section-title,
  .cta-banner {
    padding: 1rem 0;
  }
  .section-modern {
    padding: 2rem 0 !important;
  }
  .section-title{
    font-size: 2rem;
  }
}

@media (max-width: 400px) {
  .navbar-brand {
    font-size: 1rem;
  }
  .hero-content a {
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
  }
  .btn-light {
    font-size: 1rem;
  }
  .cta-banner h3{
    font-size: 1.2rem;
  }
  .form-container button{
    padding: .8rem !important;
  }
.footer-btn-flex a {
  display: block;
  margin: 1rem 0 !important;
}
}

/* Messages */
.alert {
  border-radius: 15px;
  border: none;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.alert-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}
