/* --- HEADER (Black + Red Theme) --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(10, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(255, 0, 0, 0.25);
  animation: slideDown 0.6s ease;
  transition: background 0.3s ease;
}

/* Container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: auto;
  padding: 14px 0;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo-glow {
  color: #ff3333;
  text-shadow: 0 0 10px #ff0000, 0 0 25px #b30000;
  animation: glowPulseRed 2s infinite alternate;
}

.logo-accent {
  color: white;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #ff3333;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff3333;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Button */
.btn-quote {
  background: linear-gradient(90deg, #ff0000, #b30000);
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-quote:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #ff2222, #ff0000);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
}

.menu-toggle:hover {
  color: #ff3333;
}

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(15, 0, 0, 0.98);
    position: absolute;
    top: 75px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 25px 0;
    gap: 18px;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.4s ease;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .btn-quote {
    margin-top: 10px;
  }
}

/* --- Animations --- */
@keyframes glowPulseRed {
  from {
    text-shadow: 0 0 10px #ff0000, 0 0 25px #b30000;
  }
  to {
    text-shadow: 0 0 25px #ff3333, 0 0 40px #ff0000;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*--Index Page code--*/

/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
  overflow-x: hidden;
}

/* --- UTILITIES --- */
.highlight, .glow {
  color: #ff3c3c;
  text-shadow: 0 0 10px #ff3c3c, 0 0 20px #ff3c3c;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #ff1e56, #b31217);
  padding: 12px 25px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 10px #ff1e56;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff1e56, 0 0 30px #b31217;
}

/* ========== HERO SECTION ========== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top left, #1a1a1a, #000);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  animation: fadeIn 1.2s ease;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}
.cursor {
  display: inline-block;
  width: 4px;
  background: #ff1e56;
  animation: blink 0.8s infinite;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero p {
  color: #ccc;
  margin: 15px 0 25px;
  font-size: 1.1rem;
}

.glow-btn {
  animation: pulseGlow 2s infinite alternate;
}
@keyframes pulseGlow {
  from { box-shadow: 0 0 10px #ff1e56; }
  to { box-shadow: 0 0 25px #ff1e56; }
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}
.about h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.about p {
  max-width: 750px;
  margin: 0 auto;
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ========== WHAT’S NEW SECTION ========== */
.whats-new {
  background: #0f0f0f;
  text-align: center;
  padding: 80px 20px;
}
.whats-new h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #fff;
}
.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.news-card {
  background: linear-gradient(145deg, #151515, #0a0a0a);
  padding: 25px;
  border-radius: 15px;
  width: 300px;
  text-align: left;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}
.news-card h3 {
  color: #ff1e56;
  margin-bottom: 10px;
}
.news-card p {
  color: #ccc;
  line-height: 1.6;
}

/* ========== BRANDING SECTION ========== */
.branding {
  background: #090909;
  text-align: center;
  padding: 90px 20px;
}
.branding h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
}
.branding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}
.brand-card {
  background: linear-gradient(145deg, #141414, #000);
  padding: 30px;
  border-radius: 15px;
  transition: 0.4s ease;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.15);
}
.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}
.brand-card i {
  font-size: 2.2rem;
  color: #ff1e56;
  margin-bottom: 12px;
}
.brand-card h3 {
  color: #fff;
  margin-bottom: 10px;
}
.brand-card p {
  color: #ccc;
  line-height: 1.5;
}

.divider-glow {
  height: 2px;
  width: 200px;
  margin: 40px auto;
  background: linear-gradient(90deg, transparent, #ff1e56, transparent);
  box-shadow: 0 0 15px #ff1e56;
}

.trust-tagline {
  color: #bbb;
  font-style: italic;
}

/* ========== CTA SECTION ========== */
.cta {
  background: linear-gradient(180deg, #111, #000);
  text-align: center;
  padding: 100px 20px;
}
.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.cta p {
  color: #ccc;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* ========== ANIMATIONS ON SCROLL ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .news-container {
    flex-direction: column;
    align-items: center;
  }
}



/*====Service & Portfolio page code====*/


/* --- GLOBAL THEME --- */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0b0b0b;
  color: white;
  overflow-x: hidden;
}

h1, h2, h3 {
  letter-spacing: 1px;
}

a {
  text-decoration: none;
}

.glow {
  color: #ff0033;
  text-shadow: 0 0 10px #ff0033, 0 0 20px #ff0033;
}

/* --- PAGE HERO --- */
.page-hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #1a0006, #000);
  box-shadow: 0 0 25px rgba(255,0,0,0.2);
  animation: fadeIn 1.5s ease;
}
.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ff0033;
}
.page-hero p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

/* --- SECTIONS --- */
.section-title {
  text-align: center;
  margin: 60px 0 40px;
}
.section-title h2 {
  font-size: 2rem;
  color: #ff0033;
}
.section-title p {
  color: #bbb;
}

/* --- SERVICES --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 100px;
}
.service-card {
  background: #121212;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255,0,0,0.5);
}
.service-card h3 {
  color: #ff0033;
  margin-bottom: 10px;
}

/* --- PORTFOLIO --- */
/* ==============================
   PORTFOLIO PAGE STYLES
============================== */
.portfolio-hero {
  background: linear-gradient(135deg, #000000, #920000);
  color: white;
  text-align: center;
  padding: 100px 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.portfolio-hero .glow {
  color: #ff3333;
  text-shadow: 0 0 20px #ff0000;
}

.portfolio-section {
  background: #0d0d0d;
  padding: 80px 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.portfolio-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
  transition: transform 0.4s, box-shadow 0.4s;
  animation: slideUp 1s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-info {
  padding: 25px;
  text-align: center;
  color: #eee;
}

.portfolio-info h3 {
  color: #ff3333;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.portfolio-info p {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 20px;
}

.btn-view {
  display: inline-block;
  background: #ff3333;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-view:hover {
  background: #cc0000;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* — BLOG PAGE HERO — */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0b0b0b;
  color: #fff;
}

/* ======================================
   BLOG PAGE - APEX WEB (Red & Black Theme)
====================================== */

.blog-section {
  background: #0b0b0b;
  text-align: center;
  padding: 100px 8%;
  animation: fadeIn 1.5s ease-in-out;
  color: #fff;
}

/* Blog Section Title */
.blog-section .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ff3333;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
  text-align: center;
}

/* Subtitle */
.blog-section .section-subtitle {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 60px;
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Blog Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* Blog Card Base */
.blog-card {
  background: linear-gradient(145deg, #141414, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.15);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.blog-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

/* Blog Images */
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

/* Blog Content */
.blog-content {
  padding: 25px;
  text-align: left;
}

.blog-content h3 {
  color: #ff3333;
  font-size: 1.4rem;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-content h3:hover {
  color: #fff;
}

.blog-content p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Read More Button */
.blog-content .btn {
  display: inline-block;
  background: #ff3333;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.blog-content .btn:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

/* Scroll Reveal Animation */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-section {
    padding: 70px 5%;
  }

  .blog-section .section-title {
    font-size: 2.2rem;
  }

  .blog-content h3 {
    font-size: 1.2rem;
  }
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-card {
  opacity: 1 !important;
  transform: none !important;
}
/*=================
Contact page code */
/* ===== CONTACT SECTION ===== */
/* Contact Page Styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
}

.contact-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  background: #111;
  border-radius: 15px;
  padding: 40px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
  text-align: center;
}

.contact-container h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #ff0000;
}

.contact-container p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff0000;
  outline: none;
}

.btn {
  background: #ff0000;
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s ease;
}

.btn:hover {
  background: #cc0000;
}

.response-msg {
  margin-top: 20px;
  font-size: 1rem;
  color: #0f0;
}

/* Phone Input Dropdown */
.iti {
  width: 100%;
}
/* ===== Fix Country Code Dropdown Overflow ===== */
.iti {
  position: relative !important;
  width: 100% !important;
  z-index: 999 !important;
}

.iti__country-list {
  position: absolute !important;
  z-index: 9999 !important;
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #ff0000 !important;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  max-height: 250px;
  overflow-y: auto;
}

/* Prevent clipping inside form */
.contact-container,
.form-group {
  overflow: visible !important;
}


/* ===== Footer Section ===== */
.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 80px 10% 40px;
  position: relative;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
  box-shadow: 0 -5px 20px rgba(255, 0, 0, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.footer-brand h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.footer-brand span {
  color: #ff3333;
}

.logo-glow span {
  text-shadow: 0 0 15px rgba(255, 51, 51, 0.8);
}

.footer-brand p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 15px;
  max-width: 280px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  color: #fff;
  background: #111;
  border: 1px solid #ff3333;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff3333;
  box-shadow: 0 0 15px rgba(255, 51, 51, 0.6);
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ff3333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff3333;
}

.footer-contact p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-contact i {
  color: #ff3333;
  margin-right: 8px;
}

.btn-footer {
  display: inline-block;
  background: #ff3333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.btn-footer:hover {
  background: #cc0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
  transform: translateY(-3px);
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 60px 8% 30px;
  }
  .footer-container {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}

.iti {
  width: 100%;
}

.iti input {
  padding-left: 48px !important;
  font-size: 16px;
}
