/* ================= Preloader ================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background-color: #151a24; /* Matches site background */
    display:flex;
    justify-content:center;
    align-items:center;
    z-index: 9999;
}

.logo-loader img {
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite, pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #00e0ff);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%,100% { transform: scale(1); filter: drop-shadow(0 0 10px #00e0ff); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px #00e0ff); }
}
/* HAMBURGER MENU */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links.nav-active {
    display: block; /* Mobile view: show menu */
}

.hamburger {
    display: none; /* Only show on mobile */
    cursor: pointer;
}

.hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media(max-width:768px){
    .hamburger { display:flex; flex-direction: column; gap:5px; }
    .nav-links { display: none; flex-direction: column; background:#1e1e1e; padding:20px; }
}
/* ================= Navbar ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #1e1e1e;
    position: sticky;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 999;
}

.logo img {
    width: 120px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #00e0ff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #00e0ff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Toggle animation */
.hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Styles */
@media(max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        height: calc(100vh - 70px);
        background: #1e1e1e;
        flex-direction: column;
        width: 200px;
        align-items: center;
        justify-content: start;
        gap: 20px;
        padding-top: 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }
}
/* ================= Hero Section ================= */
.hero {
    height: 100vh; /* Full viewport height */
    background: url('/image/StockCake-Laptop_displaying_apps_1760212287.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #ffffff;
}

.hero::after {
    content: "";
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #00e0ff; /* Highlight cyan */
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ccc;
}

.hero .cta-button {
    background-color: #00e0ff;
    color: #151a24;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.hero .cta-button:hover {
    background-color: #ffffff;
    color: #00e0ff;
}
/* ================= About Section Light ================= */
.about-company-light {
    padding: 80px 20px;
    background-color: #ffffff; /* White background */
    color: #333; /* Dark text */
}

.about-company-light .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Stack on smaller screens */
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2em;
    color: #00e0ff; /* Accent color */
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-text .cta-button {
    background-color: #00e0ff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.about-text .cta-button:hover {
    background-color: #0088cc;
    color: #fff;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media(max-width: 768px) {
    .about-flex {
        flex-direction: column;
    }
    .about-text, .about-image {
        flex: 100%;
    }
}
/* Ensure mobile stacking still works */
@media(max-width: 768px) {
    .about-company-light.alt-layout .about-flex {
        flex-direction: column;
    }
}
/* ================= Modern Services Section ================= */
.services-section-modern {
    position: relative;
    padding: 100px 20px;
    background: url('/image/photo-1519389950473-47ba0277781c.avif') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.services-section-modern .overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(21,26,36,0.75); /* Dark overlay for contrast */
    z-index: 1;
}

.services-section-modern .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section-modern .section-header h2 {
    font-size: 2.5em;
    color: #00e0ff;
    margin-bottom: 15px;
}

.services-section-modern .section-header p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: rgba(30,30,30,0.85); /* Semi-transparent dark card */
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,224,255,0.5);
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon-wrapper img {
    width: 100%;
    height: 100%;
    filter: brightness(1.2);
}

.service-card h3 {
    font-size: 1.4em;
    color: #00e0ff;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.6;
}

/* Responsive adjustments */
@media(max-width: 768px){
    .services-section-modern {
        padding: 80px 20px;
    }
    .services-grid {
        gap: 25px;
    }
}
/* ================= Portfolio Section ================= */
.portfolio-section {
    padding: 100px 20px;
    background-color: #151a24; /* Dark background */
    color: #fff;
    text-align: center;
}

.portfolio-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-section .section-header h2 {
    font-size: 2.5em;
    color: #00e0ff;
    margin-bottom: 15px;
}

.portfolio-section .section-header p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,224,255,0.4);
}

.portfolio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.portfolio-content {
    padding: 20px;
    text-align: left;
}

.portfolio-content h3 {
    font-size: 1.3em;
    color: #00e0ff;
    margin-bottom: 10px;
}

.portfolio-content p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.6;
}

/* Responsive adjustments */
@media(max-width: 768px){
    .portfolio-section {
        padding: 80px 15px;
    }
    .portfolio-grid {
        gap: 20px;
    }
}
/* Blog/News Preview Section */
.blog-preview {
  padding: 80px 8%;
  background-color: #f5f5f5; /* light gray background */
  text-align: center;
}

.blog-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #111;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #111;
}

.blog-content p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #555;
}

.read-more {
  text-decoration: none;
  color: #fff;
  background-color: #ff5722;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #e64a19;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-cards {
    flex-direction: column;
    align-items: center;
  }
}
.single-blog {
  padding: 80px 8%;
  background-color: #fdfdfd;
}

.single-blog h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
  text-align: center;
}

.blog-date {
  text-align: center;
  color: #888;
  margin-bottom: 40px;
}

.blog-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
}

.blog-content {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.blog-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #111;
}

.back-to-blog {
  display: inline-block;
  text-decoration: none;
  color: #ff5722;
  font-weight: 500;
  transition: color 0.3s ease;
}

.back-to-blog:hover {
  color: #e64a19;
  text-decoration: underline;
}
/* Blog Page Container with Background Image */
.blog-post {
  max-width: 800px;
  margin: 50px auto;
  padding: 50px 40px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  color: #fff; /* White text for contrast */
  background-image: url('/image/seo-4789789_1280.webp'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  position: relative;
}

/* Optional overlay for better readability */
.blog-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* Semi-transparent dark overlay */
  border-radius: 15px;
  z-index: 0;
}

/* Ensure text is above overlay */
.blog-post * {
  position: relative;
  z-index: 1;
}

/* Blog Title */
.blog-post h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

/* Subheadings */
.blog-post h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #ffd700; /* Highlight color for subheadings */
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
}

/* Paragraphs */
.blog-post p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff;
}

/* Lists */
.blog-post ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-post ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

/* Links */
.blog-post a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .blog-post {
    padding: 30px 20px;
  }

  .blog-post h1 {
    font-size: 2rem;
  }

  .blog-post h2 {
    font-size: 1.4rem;
  }
}
/* Digital Marketing tips */
/* Blog Post - Digital Marketing Tips */
.blog-post {
  max-width: 900px;
  margin: 60px auto;
  padding: 60px 50px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  color: #222;
  background: linear-gradient(135deg, #f9fafc, #e8f0ff);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Blog Title */
.blog-post h1 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #004aad;
  font-weight: 700;
}

/* Subheadings */
.blog-post h2 {
  font-size: 1.7rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #007bff;
  position: relative;
  padding-left: 10px;
}

.blog-post h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 24px;
  background-color: #007bff;
  border-radius: 2px;
}

/* Paragraphs */
.blog-post p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
}

/* Lists */
.blog-post ul {
  padding-left: 25px;
  margin-bottom: 25px;
}

.blog-post ul li {
  margin-bottom: 12px;
  list-style-type: circle;
}

/* Highlight links */
.blog-post a {
  color: #004aad;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post a:hover {
  color: #ff6600;
  text-decoration: underline;
}

/* Quote style (optional for emphasis) */
.blog-post blockquote {
  background: #eef4ff;
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin: 25px 0;
  font-style: italic;
  color: #333;
  border-radius: 10px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .blog-post {
    padding: 30px 20px;
  }

  .blog-post h1 {
    font-size: 2.2rem;
  }

  .blog-post h2 {
    font-size: 1.4rem;
  }
}
/* Hero Section for Digital Marketing Blog */
.blog-hero {
  width: 100%;
  height: 70vh;
  background-image: url('/image/digital-marketing-with-icons-business-people_53876-94833.jpg'); /* Replace with your hero image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Overlay for better contrast */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Hero text */
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.5s ease;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #f0f0f0;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .blog-hero {
    height: 60vh;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}
/* Footer Section */
.footer {
    background-image: url('/image/photo-1519389950473-47ba0277781c.avif'); /* Your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 8% 30px 8%;
    font-size: 0.9rem;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7); /* Dark overlay for readability */
    z-index: 0;
}

.footer-container,
.footer-bottom {
    position: relative; /* Bring content above overlay */
    z-index: 1;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer h3, .footer h4 {
    margin-bottom: 15px;
    color: #FFD700; /* Accent color */
}

.footer p, .footer a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.footer a:hover {
    color: #FFD700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #ccc;
}

/* ABOUT PAGE CSS */
/* Hero Section */
.about-hero {
  background: url('/image/online-marketing-branding-concept-laptop-screen_53876-94880.jpg') center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  transition: background 0.8s ease-in-out;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
}

/* Hero Text */
.hero-text {
  margin-top: 100px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 70px;
}

/* Hero Buttons at Bottom */
/* .hero-buttons {
  position: absolute;
  bottom: 50px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons button {
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-buttons button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
} */
 
.about-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.about-nav a {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.about-nav a:hover,
.about-nav a.active {
  color: #1e90ff;
}

/* Content Section */
.about-content {
  padding: 80px 10%;
  background-color: #fff;
  text-align: center;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-buttons {
    bottom: 30px;
    gap: 8px;
  }

  .hero-buttons button {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}
/* ABOUT US SECTION */
.about-us {
  background: url('images/about-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 10%;
  position: relative;
}

.about-us::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.about-us .container {
  position: relative;
  z-index: 1;
}

.about-us h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-us p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #f0f0f0;
}

/* WHY CHOOSE SECTION */
.why-choose {
  background-color: #0a0a0a; /* dark smooth color */
  color: #fff;
  text-align: center;
  padding: 100px 8%;
}

.why-choose h2 {
  font-size: 2.3rem;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
  color: #00c3ff;
  text-transform: uppercase;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.reason {
  background: #111;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.reason:hover {
  background: #141414;
  transform: translateY(-5px);
}

.reason h3 {
  color: #00c3ff;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.reason p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .about-us h2,
  .why-choose h2 {
    font-size: 2rem;
  }

  .about-us p,
  .reason p {
    font-size: 1rem;
  }
}
/* ============================
   TESTIMONIALS SECTION
============================ */
.testimonials {
  background: #fff;
  color: #111;
  text-align: center;
  padding: 100px 8%;
  position: relative;
}

.testimonials h2 {
  font-size: 2.3rem;
  margin-bottom: 60px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial {
  display: none;
  background: #f9f9f9;
  border-radius: 15px;
  padding: 40px 30px;
  max-width: 700px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.6s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial h3 {
  font-size: 1.2rem;
  color: #00aaff;
  margin-bottom: 5px;
}

.testimonial span {
  font-size: 0.9rem;
  color: #777;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00aaff;
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.arrow:hover {
  background: #007acc;
}

.arrow.left {
  left: -60px;
}

.arrow.right {
  right: -60px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .arrow.left {
    left: 10px;
  }
  .arrow.right {
    right: 10px;
  }
  .testimonial {
    padding: 30px 20px;
  }
}
/* ============================
   CALL TO ACTION (CENTERED WITH GRADIENT)
============================ */
.cta-section {
  background-color: #f5f7fa; /* light page background */
  padding: 100px 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-box {
  background: linear-gradient(135deg, #007bff, #00c4ff); /* blue gradient */
  color: #fff;
  text-align: center;
  padding: 70px 40px;
  border-radius: 25px;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #e9f7ff;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #007bff;
  padding: 14px 35px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  background: #e0f5ff;
  transform: translateY(-2px);
}

.cta-btn:hover .arrow {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 900px) {
  .cta-box {
    padding: 50px 25px;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .cta-box p {
    font-size: 1rem;
  }
}
/* How We Work Section */
.how-we-work {
  background-color: #0d0d0d;
  color: #fff;
  padding: 100px 8%;
  text-align: center;
}

.how-we-work h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00aaff;
}

.how-we-work .intro {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 60px;
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.step {
  background-color: #1a1a1a;
  border-radius: 16px;
  padding: 40px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.2);
}

.icon {
  font-size: 2.5rem;
  color: #00aaff;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.step p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .how-we-work {
    padding: 80px 5%;
  }
}
/* Sections */
.section {
  padding: 5rem 2rem;
  text-align: center;
  background-color: #0b0b0b;
}

.section.alt {
  background-color: white;
}

.section h2 {
  color: #1e90ff;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  text-align: left;
}

.section ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mv-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.mv-container h3 {
  color: #1e90ff;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.mv-container p {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.7;
}
.intro-text {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  color: #ccc;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.team-card {
  background: #111;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.team-card h3 {
  color: #1e90ff;
  margin-bottom: 0.3rem;
}

.team-card .role {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-card .bio {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: #111;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(30, 144, 255, 0.3);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1e90ff;
}

.value-card h3 {
  color: #1e90ff;
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}
/* SERVICES PAGE*/
.hero {
  background: url('/image/TechEase\ Brand\ Banner\ with\ Smartphone_20251028_221952_0000.png') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #1e90ff;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.btn {
  background: #1e90ff;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #0077cc;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #111;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(30, 144, 255, 0.3);
}

.service-card .icon {
  font-size: 2rem;
  color: #1e90ff;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #1e90ff;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  background: #111;
  color: #f2f2f2;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(30, 144, 255, 0.3);
}

.why-card h3 {
  color: #1e90ff;
  margin-bottom: 0.8rem;
}
/* ===== CALL TO ACTION ===== */
.cta {
  background: linear-gradient(135deg, #0d0d0d 50%, #111827 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
  animation: pulse 5s infinite alternate;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e90ff;
  text-shadow: 0 0 15px rgba(30, 144, 255, 0.6);
}

.cta p {
  color: #ddd;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #1e90ff;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.4);
}

.cta-btn:hover {
  background: #0077cc;
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.6);
  transform: scale(1.05);
}

@keyframes pulse {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.1);
  }
}
/* Our Projects */
.projects-hero {
  background: url('/image/StockCake-Laptop_displaying_apps_1760212287.jpg') center/cover no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.projects-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.projects-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.projects-hero h1 {
  font-size: 2.8rem;
  color: #1e90ff;
  margin-bottom: 1rem;
}

.projects-hero p {
  color: #ddd;
  font-size: 1.1rem;
}
.projects {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.projects h2 {
  color: #1e90ff;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 144, 255, 0.8);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}
/* .project-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
} */
 /* Contact Us Section */
 .contact-hero {
  background: url('/image/Geometric\ \'T\'\ Logo\ with\ Cyan\ Highlights_20251028_205202_0000.png') center/cover no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 2.8rem;
  color: #1e90ff;
  margin-bottom: 1rem;
}

.contact-hero p {
  color: #ddd;
  font-size: 1.1rem;
}
.contact {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.contact h2 {
  color: #1e90ff;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #111;
  color: #fff;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

.btn {
  background: #1e90ff;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #0077cc;
  transform: scale(1.05);
}
.contact-info {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-box {
  background: #0d0d0d;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.15);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(30, 144, 255, 0.4);
}

.info-box h3 {
  color: #1e90ff;
  margin-bottom: 10px;
}
.blog {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.blog h2 {
  color: #1e90ff;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.1);
  transition: all 0.4s ease;
  text-align: left;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(30, 144, 255, 0.3);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 0.9rem;
  color: #1e90ff;
}

.blog-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 10px 0;
}

.blog-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #1e90ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: #0099ff;
}

