/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0e0e0e;
    color: #ffffff;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  img {
    max-width: 100%;
    display: block;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  section {
    padding: 4rem 2rem;
  }
  
  /* === NAVBAR === */
  /* ===== NAVBAR BASE STYLES ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: black;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #00bfff;
  }
  
  /* ===== HAMBURGER MENU ===== */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: black;
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  }
  
  
  /* === HERO SECTION === */
  .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('./images/workspace1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(55, 55, 55, 0.6); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .hero-content {
    z-index: 2;
    max-width: 900px;
  }
  
  .hero-title {
    font-size: 2rem;
    font-weight:600;
    line-height: 1.2;
  }
  
  .hero-typewriter {
    font-size: 3rem;
    margin: 20px 0;
    font-weight: bold;
  }
  
  .hero-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #00186a;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 19px;
    transition: 0.3s;
  }
  
  .hero-btn:hover {
    background-color: #0033cc;
  }
  
  
  
  
  /* === SERVICES SECTION (CARDS) === */
  .services {
    background-color: #111;
    text-align: center;
  }
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00d8ff;
  }
  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  }
  .card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  .card-content {
    padding: 1rem;
  }
  .card-content h3 {
    margin-bottom: 0.5rem;
    color: #00d8ff;
  }
  .card-content p {
    font-size: 0.95rem;
    color: #ccc;
  }
  
  /* === TESTIMONIALS SECTION (CAROUSEL) === */
  .testimonials {
    background: #0f0f0f;
    text-align: center;
  }
  .testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: black;
  }
  #test{
    color: black;
  }
  .swiper-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .swiper-slide {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    color: #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  .swiper-slide h4 {
    margin-top: 1rem;
    font-weight: normal;
    color: #00d8ff;
  }
  .swiper-pagination-bullet {
    background: #00d8ff !important;
  }
  
  /* === FOOTER SECTION === */
  .footer {
    background: #000;
    color: #ccc;
    padding: 3rem 2rem;
    text-align: center;
  }
  .footer-content p {
    margin-bottom: 1rem;
  }
  .footer .socials {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  .footer .socials li a {
    color: #ccc;
    transition: color 0.3s;
  }
  .footer .socials li a:hover {
    color: #00d8ff;
  }
  
  /* === ANIMATION SETUP === */
  .fade-in {
    opacity: 0;
    transform: translateY(40px);
  }
  



  /* === WHATSAPP CHAT === */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-family: inherit;
  }
  
  .chat-button {
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.2rem;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  .chat-button img {
    height: 20px;
  }
  .chat-button:hover {
    transform: scale(1.05);
  }
  
  /* Popup Panel */
  .chat-popup {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 260px;
    background: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
  }
  .chat-header {
    background: #25D366;
    color: #fff;
    padding: 0.75rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .chat-header button {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
  }
  .chat-body {
    padding: 1rem;
  }
  .chat-body p {
    margin-bottom: 1rem;
  }
  .start-chat {
    display: block;
    text-align: center;
    padding: 0.6rem;
    background: #25D366;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
  }
  .start-chat:hover {
    background: #1ebc59;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  /* === GLOTECH-STYLE FOOTER === */
.footer {
    background: #0b0b0b;
    color: #ccc;
    padding: 4rem 2rem 2rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-col {
    flex: 1 1 250px;
  }
  .footer-col h3, .footer-col h4 {
    color: #00d8ff;
    margin-bottom: 1rem;
  }
  .footer-col p {
    line-height: 1.6;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  .footer-col ul li {
    margin-bottom: 0.6rem;
  }
  .footer-col ul li a {
    color: #ccc;
    transition: color 0.3s ease;
  }
  .footer-col ul li a:hover {
    color: #00d8ff;
  }
  .social-icons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .social-icons img {
    height: 20px;
    filter: brightness(0.8);
    transition: filter 0.3s;
  }
  .social-icons a:hover img {
    filter: brightness(1.2);
  }
  .footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #666;
  }
  
  /* === RESPONSIVE FOOTER === */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  /* === NEWSLETTER === */
.footer-col form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .footer-col input[type="email"] {
    padding: 0.6rem;
    border: none;
    border-radius: 5px;
  }
  .footer-col button {
    background: #00d8ff;
    border: none;
    color: #000;
    padding: 0.6rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  .footer-col button:hover {
    background: #00b3cc;
  }
  
  /* === LANGUAGE SELECTOR === */
  .language-selector {
    margin-top: 1rem;
  }
  .language-selector label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  .language-selector select {
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
  }
  
  /* === BACK TO TOP === */
  #back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: #00d8ff;
    color: #000;
    border: none;
    padding: 10px 14px;
    font-size: 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: background 0.3s ease;
  }
  #back-to-top:hover {
    background-color: #00b3cc;
  }
  
  /* === WHO WE SERVE CAROUSEL === */
.who-we-serve {
    padding: 4rem 2rem;
    background-color: #f2f2f2;
    text-align: center;
  }
  .who-we-serve h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
  }
  
  .carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
    padding: 1rem 0;
  }
  
  .serve-card {
    flex: 0 0 200px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  .serve-card:hover {
    transform: scale(1.05);
  }
  .serve-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    filter: brightness(0) saturate(100%) invert(9%) sepia(93%) saturate(745%) hue-rotate(216deg) brightness(91%) contrast(106%);
  }
  .serve-card p {
    font-weight: 500;
    color: #222;
  }
  
  /* Arrows */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #777;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
  }
  .carousel-btn.left {
    left: 0;
  }
  .carousel-btn.right {
    right: 0;
  }
  .carousel-btn:hover {
    background: #444;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .carousel-track {
      gap: 1rem;
    }
    .serve-card {
      flex: 0 0 150px;
    }
  }
  /* === WHO WE SERVE SECTION === */
.who-we-serve {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .who-we-serve h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
  }
  
  /* === CAROUSEL STYLES === */
  .carousel-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
  }
  
  .carousel-track-wrapper {
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
  }
  
  .serve-card {
    flex: 0 0 220px;
    background-color: #fff;
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .serve-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  .serve-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(9%) sepia(93%) saturate(745%) hue-rotate(216deg) brightness(91%) contrast(106%);
  }
  
  .serve-card p {
    font-weight: 500;
    font-size: 1rem;
    color: #222;
    margin: 0;
  }
  
  /* === ARROWS === */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ccc;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    z-index: 2;
    transition: background-color 0.3s ease;
  }
  
  .carousel-btn.left {
    left: 10px;
  }
  
  .carousel-btn.right {
    right: 10px;
  }
  
  .carousel-btn:hover {
    background-color: #555;
  }
  
  /* === DOTS === */
  .carousel-dots {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  
  .carousel-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .carousel-dots span.active {
    background-color: #0077cc;
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .serve-card {
      flex: 0 0 160px;
      padding: 1.5rem 1rem;
    }
  
    .serve-card img {
      width: 32px;
      height: 32px;
    }
  
    .carousel-btn {
      font-size: 1.2rem;
      padding: 0.4rem 0.6rem;
    }
  }
  
  @media (max-width: 480px) {
    .serve-card {
      flex: 0 0 140px;
    }
  
    .who-we-serve h2 {
      font-size: 1.5rem;
    }
  }
  
  


  /* === IT SUPPORT SECTION === */
.it-support-section {
    background-color: #01084f;
    color: #ffffff;
    padding: 4rem 2rem;
    border-radius: 60px 60px 0 0;
  }
  
  .it-support-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .it-support-text {
    flex: 1 1 50%;
  }
  
  .it-support-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .it-support-text p {
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .learn-more-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #01084f;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .learn-more-btn:hover {
    background-color: #dcdcdc;
  }
  
  .it-support-image {
    flex: 1 1 45%;
  }
  
  .it-support-image img {
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .it-support-content {
      flex-direction: column;
    }
  
    .it-support-text,
    .it-support-image {
      flex: 1 1 100%;
      text-align: center;
    }
  
    .it-support-text h2 {
      font-size: 1.6rem;
    }
  
    .it-support-text p {
      font-size: 0.95rem;
    }
  }
  


  /* === TESTIMONIALS SECTION === */
.testimonials-section {
    background-color: #f7f7f7;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  /* === CAROUSEL CONTAINER === */
  .testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  /* === INDIVIDUAL SLIDES === */
  .testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .testimonial-slide.active {
    display: block;
    opacity: 1;
  }
  
  .testimonial-slide p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
  }
  
  .testimonial-slide h4 {
    color: #333;
    font-weight: 600;
  }
  
  /* === NAVIGATION CONTROLS === */
  .testimonial-controls {
    margin-top: 1.5rem;
  }
  
  .testimonial-controls button {
    background-color: #01084f;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .testimonial-controls button:hover {
    background-color: #333;
  }
  
  /* === RESPONSIVE DESIGN === */
  @media (max-width: 768px) {
    .testimonials-section h2 {
      font-size: 1.5rem;
    }
  
    .testimonial-slide p {
      font-size: 1rem;
    }
  
    .testimonial-controls button {
      font-size: 1.2rem;
      padding: 0.4rem 0.8rem;
    }
  }
  
  .chat-experts-section {
    background: linear-gradient(to right, #000e4d, #000e4d);
    padding: 80px 20px;
    color: #fff;
  }
  
  .chat-experts-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
  }
  
  .chat-image img {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .chat-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .chat-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .chat-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .chat-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .chat-buttons .btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  
  .btn-primary {
    background-color: #ffffff;
    color: #000e4d;
  }
  
  .btn-primary:hover {
    background-color: #e6e6e6;
  }
  
  .btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
  }
  
  .btn-outline:hover {
    background-color: #ffffff;
    color: #000e4d;
  }
  

  