* {
  margin: 0;

  padding: 0;
  box-sizing: border-box;
  
 
}
html{
  scroll-behavior: smooth;
}


:root {
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --secondary-color: #059669;
  --accent-color: #dc2626;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --background: #ffffff;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

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




/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
 padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-logo i {
  font-size: 1.8rem;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.cta-btn {
  background: var(--primary-color);
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hamburger {
 display:none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}
/* Hamburger Menu */


        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: black;
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
            background: black;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.95), rgba(30, 58, 138, 0.95));
            backdrop-filter: blur(20px);
            z-index: 9990;
            display: flex;
            flex-direction: column;
          
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
            
        }

        /* Mobile Menu Items */
        .mobile-menu {
            list-style: none;
            text-align: center;
            padding: 0;
        }

        .mobile-menu li {
            margin: 20px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
             -webkit-tap-highlight-color: transparent;
        }
        a{
           -webkit-tap-highlight-color: transparent;
        }

        .mobile-menu-overlay.active .mobile-menu li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-overlay.active .mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu-overlay.active .mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu-overlay.active .mobile-menu li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu-overlay.active .mobile-menu li:nth-child(4) { transition-delay: 0.4s; }
        .mobile-menu-overlay.active .mobile-menu li:nth-child(5) { transition-delay: 0.5s; }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            display: block;
            padding: 12px 24px;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
           
        }

        .mobile-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: left 0.3s ease;
        }

        .mobile-menu a:hover::before {
            left: 0;
        }

        .mobile-menu a:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .mobile-cta-btn {
            background: rgba(255, 255, 255, 0.2) !important;
            border: 2px solid white;
            margin-top: 20px;
        }

        .mobile-cta-btn:hover {
            background: white !important;
            color: var(--primary-color) !important;
        }

        /* Decorative Elements */
      
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #1e3a8a 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  height: auto;
}

.hero-content {
  color: white;
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.highlight-item:nth-child(1) {
  animation-delay: 0.9s;
}
.highlight-item:nth-child(2) {
  animation-delay: 1.1s;
}
.highlight-item:nth-child(3) {
  animation-delay: 1.3s;
}

.highlight-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.hero-cta {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

.primary-btn,
.secondary-btn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.primary-btn:hover {
  background: #d97706;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

.hero-visual {
  animation: slideInRight 1s ease-out;
}

.payment-cards {
  position: relative;
  height: 400px;
}

.payment-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: white;
  transition: all 0.3s ease;
  animation: cardFloat 4s ease-in-out infinite;
}

.payment-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.card-1 {
  top: 0;
  left: 0;
  width: 200px;
  animation-delay: 0s;
}

.card-2 {
  top: 100px;
  right: 0;
  width: 180px;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 0;
  left: 50px;
  width: 190px;
  animation-delay: 3s;
}

.payment-card i {
  font-size: 2rem;
  color: var(--accent-color);
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--surface);
}

.services-grid {
  display:flex;
justify-content: center;
  gap: 30px;
  align-items: center;
  width: 100%;
  padding: 0 30px;
}
.no-margin {
  width: 100% !important;
  max-width:100% !important;
  margin: 0 !important;
}
.service-card {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  width: 40%;
}

.service-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tag {
  background: var(--surface);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  gap: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-50px);
}

.benefit-item.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.benefit-item:nth-child(even) {
  transform: translateX(50px);
}

.benefit-item:nth-child(even).aos-animate {
  transform: translateX(0);
}

.benefit-item:hover {
  background: var(--surface);
  transform: translateX(10px);
}

.benefit-item:nth-child(even):hover {
  transform: translateX(-10px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 2rem;
  color: white;
}

.benefit-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.benefit-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
}

.testimonial-card.aos-animate {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  margin-bottom: 25px;
}

.quote-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-primary);
}

.author-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: white;
  z-index: 9999;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.2);
}

.submit-btn {
  background: var(--accent-color);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-logo i {
  color: var(--accent-color);
}

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-color);
}

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

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media(max-width:1370px){
  .hero-title{
    font-size: 2.8rem;
  }
}
@media(max-width:1185px){
  .hero-title{
    font-size: 2.5rem;
  }
  .hero-subtitle{
    font-size: 1.1rem;
  }
}
@media(max-width:1064px){
  .hero-title{
    font-size: 2.2rem;
  }
  .hero-subtitle{
    font-size: 1rem;
  }
  .services-grid{
    padding: 0 20px;
  }
  .service-card{
    padding: 30px;
  }
}
@media(max-width:1024px){
  .services-grid{
    padding: 0;
  }
  .service-card{
    padding: 25px 20px;
  }
}
@media(max-width:940px){
  .hero-container{
    gap: 20px;
  }
  .primary-btn {
    font-size: 0.9rem;
  }
  .secondary-btn{
    font-size: 0.9rem;
  }
  .services-grid{
    gap: 25px;
  }
}
@media(max-width:900px){
  .hero-title{
    font-size: 2rem;
  }
  .hero-highlights{
    margin-bottom: 30px;
  }
}
@media(max-width:850px){
  .nav-menu{
    gap: 20px;
  }
  .hero-cta{
    gap: 10px;
  }
  .primary-btn,.secondary-btn{
    padding: 12px 24px;
  }
  .service-card{
    padding: 20px 15px;
  }
  .services-grid{
    gap: 15px;
  }
}
@media(max-width:825px){
  .hero-title{
    font-size: 1.9rem;
  }
  .service-card{
    padding: 20px 10px;
  }
}
@media(max-width:790px){
  .hero-title{
    font-size: 1.8rem;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo-img {
    height: 40px;
    max-width: 100px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .payment-cards {
    height: 350px;
  }

  .payment-card {
    width: 150px !important;
    padding: 20px;
  }

  .services-grid {
    flex-direction: column;
    padding: 0;
  }
  .service-card{
    padding: 30px;
    width: 100%;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 2rem;
  }
  .hero-container{
    padding-top: 80px;
  }
}
@media (max-width:575px){
  .hero-title{
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    margin: 20px 0;
    line-height:1.3 ;
  }

  .nav-logo-img {
    height: 35px;
    max-width: 90px;
  }
  .services-grid{
    gap: 40px;
  }
  .hero-cta{
    margin-top: 20px;
  }
  .hero-container{
    padding-top: 120px;
    gap: 60px;
  }
  .hero-subtitle{
    margin-top: 20px;
    
  }
  .hero-highlights{
    margin-bottom: 30px;
  }
.mobile-menu a{
  font-size: 1.3rem;
}
  .service-card,
  .testimonial-card {
    padding: 30px 20px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }
}
@media(max-width:400px){
  .hero-title{
    font-size: 1.8rem;
  }
  .testimonials-card{
    padding:20px 10px ;
  }.testimonials-grid{
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media(max-width:375px){
  .hero-title{
    font-size: 1.7rem;
  }
}
/* Animation Classes */
[data-aos] {
  opacity: 0;
  transition: all 0.8s ease;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="slide-right"] {
  transform: translateX(-50px);
}

[data-aos="slide-left"] {
  transform: translateX(50px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}
