:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #f59e0b;
  --dark: #11112b;
  --dark-alt: #1c1c2b;
  --light: #b2f0ff;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --primary-blue: #2563eb;
  --dark-blue: #1e40af;
  --light-blue: #3b82f6;
  --dark-gray: #1f2937;
  --medium-gray: #4b5563;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --black: #111827;
  --gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  html,body {
    scroll-behavior: smooth;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
  }

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

.port h1 {
  color: #000;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

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

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

section {
  padding: 80px 0;
}

 /* Navbar Styles */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  height: 70px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1400px;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
  border-radius: 50px;
  margin: 0 auto;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  top: 10px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2rem;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  height: 50px;  /*width : 205*/
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #11112a;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 15px;
}

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

.nav-links li:not(:has(.btn)) a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: var(--transition);
}

.nav-links li:not(:has(.btn)) a:hover::after,
.nav-links li:not(:has(.btn)) a.active::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
  border: none;
  outline: none;
}

.btn.btn-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background-color: transparent;
}

.btn.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

.btn.btn-solid:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-gray);
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--primary-blue);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
  .navbar {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 30px;
  }

  body {
    padding-top: 80px;
  }

  .navbar-container {
    padding: 1rem 2rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #11112B;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    border-radius: 0 30px 30px 0;
    transition: var(--transition);
  }
  .nav-links a{
    color: #fff;
  }

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

  .nav-links li {
    margin: 0 0 1.5rem 0;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 10px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo img {
    height: 42px;
    width: 110px;
  }
}

/* Animation for navbar on scroll */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero {
  padding: 10rem 2rem 6rem;
  text-align: center;
  margin: 2rem;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./images/mobileservice3.webp") center/cover;
  opacity: 0.35;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.services {
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #D8DCE7;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #1e293b;
}

.service-card p {
  color: #4b5563;
}

/* Portfolio Section */
.portfolio {
  background-color: #D8DCE7;
}

.port2{
  color: #11112B;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.portfolio-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h3 {
  margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
  background-color: #11112b;
}

.port1{
  color: #ffffff;
}

.testimonial-slider {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
  min-height: 250px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-color: #D8DCE7;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-content {
  color: #11112b;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  color: #11112b;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-role {
  color: var(--dark-gray);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary);
}

/* Footer Hero Section */
.footer-hero-section {
  text-align: center;
  position: relative;
  min-height: 100vh;
  background-color: #11112B;
  background-image: url("Line\ 7.png");
}

.footer-hero-content h3 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}

.footer-hero-content h3 span {
  font-weight: 200;
}

.footer-hero-content h3 em {
  font-weight: 500;
  font-style: italic;
  color: #ffffffcc;
}

/* Footer Styles */
.footer {
  background-color: #11112B;
  color: #ffffff;
  position: relative;
 }

.footer-main {
  padding: 0 20px;
  margin-top: 100px;
}

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

.footer-col {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-img {
  height: 90px;
  margin-right: 10px;
}

.footer-description {
  margin-bottom: 25px;
  line-height: 1.7;
  opacity: 0.8;
  text-align: left;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: white;
  text-align: left;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #3b82f6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

.footer-links i {
  margin-right: 8px;
  font-size: 0.8rem;
  color: #3b82f6;
}

.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  margin-right: 43px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

.contact-info {
  margin-bottom: 30px;
  text-align: left;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 15px;
  color: #3b82f6;
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-text {
  opacity: 0.8;
  line-height: 1.6;
}

.contact-text a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: #3b82f6;
}

.footer-newsletter h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: left;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
}

.btn-subscribe {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background: #2563eb;
}

.footer-locations {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.locations-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.location-item {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.location-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.location-item h4 {
  color: #3b82f6;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.location-item h4 i {
  margin-right: 10px;
}

.location-item p {
  opacity: 0.8;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align:left;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #3498db, #204BC1);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(3, 50, 98, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  min-width: 200px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(3, 50, 98, 0.4);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button i {
  margin-right: 10px;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  margin-top: 50px;
}

.bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.copyright {
  margin-bottom: 15px;
  opacity: 0.7;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.legal-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #3b82f6;
}

/* Footer Hero Section */
.footer-hero-section {
  text-align: center;
  position: relative;
  min-height: 100vh;
  background-color: #11112B;
}

.footer-hero-content h3 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}

.footer-hero-content h3 span {
  font-weight: 200;
}

.footer-hero-content h3 em {
  font-weight: 500;
  font-style: italic;
  color: #ffffff;
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

  .footer-logo img {
        height: 70px;
    }
    
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-col {
    margin-bottom: 40px;
  }
  
  .footer-title {
    margin-bottom: 20px;
  }
  
  .footer-hero-content h3 {
    font-size: 2.5rem;
  }
}

/* Modal Styles for Footer */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background-color: #11112B;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3b82f6;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close-btn:hover {
  color: #3b82f6;
}

.modal-header h2 {
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3b82f6;
}

.modal-content {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.modal-content h3 {
  color: #3b82f6;
  margin-top: 20px;
  text-align: left;
}

.modal-content p {
  margin-bottom: 15px;
  text-align: left;
}

.modal-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}