/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.3;
  color: #333;
  
}

/* ============================
   NAVBAR
============================ */
.heading {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #0d49e1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heading img {
  width: 55px;
  border-radius: 50%;
}

.details ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.details ul li a {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #0d49e1;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: 1s;
  display: inline-block;
}

.details ul li a:hover {
  background: #0d49e1;
  color: #fff;
}

/* THEME TOGGLE BUTTON THAT MAKES IT DARK MODE AND BRIGHT MODE CSS */
/* Light Mode */
:root[data-theme="light"] {
  --bg: #ffffff;
  --text: #111;
  --accent: #0d49e1;
  --card-bg: #f7f7f7;
}

/* Dark Mode */
:root[data-theme="dark"] {
  --bg: #0e0e0e;
  --text: #f1f1f1;
  --accent: #5a8bff;
  --card-bg: #1a1a1a;
}

/* Apply theme */
body {
  background: var(--bg);
  color: var(--text);
  transition: background 0.4s ease, color 0.4s ease;
}

/* Animated Fade */
html.theme-transition,
html.theme-transition * {
  transition: background 0.4s ease, color 0.4s ease !important;
}

/* Toggle Button Design */
.theme-toggle {
  position: fixed;
  top: 50px;
  left: 8em;
  z-index: 10000;
  background:#4b8c59;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Glow */
.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 18px var(--accent);
}

/* Icon animation */
.theme-toggle i {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.theme-toggle:hover i {
  transform: rotate(20deg);
  opacity: 0.8;
}


/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ............... */
/* MOBILE DROPDOWN MENU */
/* ---------- PREMIUM ANIMATED MENU ---------- */

/* Hamburger Icon */
.menu-btn {
  display: none;
  width: 35px;
  height: 28px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 99999;
  position: relative;
}

.menu-btn .bar {
  width: 100%;
  height: 4px;
  background: var(--text-color);
  border-radius: 10px;
  transition: 0.4s ease;
}

/* Light/Dark Auto Colors */
:root {
  --background: #ffffff;
  --menu-bg: rgba(255, 255, 255, 0.6);
  --text-color: #0d49e1;
  --shadow: rgba(0, 0, 0, 0.2);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0f0f0f;
    --menu-bg: rgba(20, 20, 20, 0.5);
    --text-color: #5a8bff;
    --shadow: rgba(255, 255, 255, 0.1);
  }
}

/* ---------- Mobile Dropdown Menu ---------- */
.mobile-menu {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  backdrop-filter: blur(20px);
  background: var(--menu-bg);
  box-shadow: 0 10px 30px var(--shadow);
  border-bottom: 2px solid var(--text-color);

  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;

  transition: all 0.45s ease;
  z-index: 9999;
}

/* Menu Active (open state) */
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Menu Links */
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul li {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlideIn 0.6s forwards ease;
}

.mobile-menu ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu ul li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu ul li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu ul li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu ul li:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu ul li:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  display: block;
  padding: 15px 25px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  color: var(--text-color);
  transition: 0.3s;
}

.mobile-menu a:hover {
  background: var(--text-color);
  color: #fff;
}

/* ---------- Hamburger to X Animation ---------- */
.menu-btn.active .bar:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .bar:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

/* ---------- Responsive Breakpoint ---------- */
@media (max-width: 900px) {
  .menu-btn {
    display: flex;
  }
}


/* ============================
   HERO SECTION
============================ */
.heropage {
  margin-top: 65px;
  position: relative;
  width: 100%;
}

.heropage video {
  width: 100%;
  height: 85vh;
  object-fit: cover;
}

.herotext {
  position: absolute;
  top: 42%;
  width: 98%;
  text-align: center;
  transform: translateY(-48%);
  padding: 0 20px;
}

.herotext h1 {
  font-size: clamp(30px, 2vw, 100px);
  color: #fff;
  font-weight: 800;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.herotext span,
.herotext p {
  display: block;
  margin: 10px auto;
  background: rgba(0, 0, 0, 0.75);
  padding: 10px 60px;
  border-radius: 20px;
  width: fit-content;
  font-size: 1rem;
  color: rgb(54, 203, 1);
  font-weight: 500;
  font-family: 'Times New Roman', Times, serif;
}

/* HERO BUTTONS */
.herobutt {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-top: 20px;
  transform: translateY(-10em);
}

.herobutt a {
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
}
.ser{
  background-color: #2aa727;
  border: 3px solid #fff;
}
.wa{
  background: #00d2ff;
  border: 3px solid #fff;
}
.herobutt a:hover{
  background-color: #91b1ca;
}

.socials{
  width: 24%;
  height: 6vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  transform: translateX(9em);
  margin-top: -7.8em;
}
.socials a {
  padding: 8px 12px;
  border-radius: 10px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
}
.mailto{
  background-color: #2aa727;
}

.socials a:hover{
  background-color: #2aa727;
}

/* 📱 EXACT RESPONSIVE FIX FOR 360 × 568 (and nearby sizes) */
@media screen and (max-width: 360px) and (max-height: 568px) {

  .heropage video {
    height: 55vh;
    object-fit: cover;
  }

  .herotext {
    top: 48%;
    transform: translateY(-80%);
    padding: 0 10px;
  }

  .herotext h1 {
    font-size: 20px;
    line-height: 1.25;
  }

  .herotext span {
    font-size: 12px;
    padding: 5px 10px;
    margin-top: 8px;
    width: 100%;
    text-align: center;
  }

  .herotext p {
    font-size: 12px;
    padding: 5px 10px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  /* Hero Buttons */
  .herobutt {
    flex-direction: column;
    gap: 8px;
    transform: translateY(0);
    background-color: #f6f7fb;
    
    margin-top: 15px;
  }

  .herobutt a {
    font-size: 12px;
    padding: 8px 10px;
    width: 85%;
    margin: 0 auto;
    text-align: center;
  }

  /* Social Media Icons */
  .socials {
    width: 100%;
    margin-top: 18px;
    transform: translateX(0);
    background-color: green;
    cursor: pointer;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .socials a {
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 8px;
  }
}

/* ============================
   ABOUT SECTION
============================ */
.aboutme {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 20px;
  text-align: center;
  color: #2aa727;
  border: 2px solid #0d49e1;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 900px;
  background: #f4f5f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(2em);
}


.aboutme h1 {
  font-size: larger;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.aboutme h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.aboutme p {
  font-size: 20px;
  font-family: sans-serif;
  font-weight: 600;
}

.aboutme p, span {
  font-weight: bold;
  color: #0d49e1;
  font-family: serif;
  border-radius: 10px;
  background-color: #d4f0fb;
  padding: 4px 8px;
  
}

/* ABOUT IMAGE + TEXT */
.aboutmeimg {
  display: flex;  
  gap: 20px;
  padding: 40px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
/* ............................ */
.aboutmeimg img {
  width: 500px;
  border-radius: 15px;
}
.aboutmeDiv{
  width: 100%;
}

.aboutmeDiv p{
  font-size: 17px;
  padding: 8px;
  margin-bottom: 12px;
  padding: 8px;
  border-radius: 6px;
  background: #f6f7fb;
  color: #000;
  font-weight: 500;
  line-height: 1.5em;
}
.aboutmeDiv .resumebutt{
  color: #0d49e1;
  border: 2px solid #0d49e1;
  background: #fff;
  padding: 6px 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.aboutmeDiv .resumebutt:hover {
  background: #0d49e1;
  color: #fff;
}

/* ============================
   SERVICES SECTION
============================ */
.servicediv1 {
  transform: translateY(-1em);
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 50px 20px;
  color: #fff;
  background: #f6f7fb;
}

.ourservices {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  color: #2aa727;
  border: 2px solid #0d49e1;
  border-radius: 15px;
  padding: 10px 20px;
  margin: 40px auto;
  max-width: 900px;
  background: #f4f5f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.servicediv2 {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.differentservicespart {
  display: grid;
  padding: 0 20px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 25px;
}

.webdev1 {
  background: #0d49e1;
  border: 3px solid #2aa727;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.webdev1 h3 {
  color: #0d49e1;
  margin-bottom: 12px;
  padding: 8px;
  background: #d4f0fb;
  border-radius: 6px;
  margin-bottom: 12px;
}

.webdev1 p{
  font-size: 18px;
  padding: 8px;
  margin-bottom: 12px;
  padding: 8px;
  border-radius: 6px;
  background: #d4f0fb;
  color: #000;
  font-weight: 600;
  line-height: 1.5em;
}

.webdev1:hover {
  transform: scale(1.05);
}

/* ============================
   EDUCATION SECTION
============================ */
.education {
  padding: 50px 20px;
  width: 100%;
  background: #f6f7fb;
  transform: translateY(-0.8em);
}

.education h2 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 20px;
  font-size: 30px;
  text-align: center;
  color: #2aa727;
  border-radius: 15px;
  border: 2px solid #0d49e1;
  padding: 8px 20px;
  margin: 20px auto;
  max-width: 900px;
  background: #f4f5f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.education p {
  font-size: 25px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 300;
  text-align: center;
  transform: translateY(-1.6em);
  color: #000;
  border-radius: 15px;
  padding: 10px 20px;
  margin: 40px auto;
  max-width: 900px;
  background: #d4f0fb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* FLEX CARDS (APTECH, PINNACLE, AUCHI) */
/* APTECH */
.aptech {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0.5em;
  background-color: #fcfcfc;
  width: 80%;
  height: 7em;
  border: 2px solid #0d49e1;
  border-radius: 10px;
  margin-top: 1em;
  transform: translateY(-3.8rem);
  margin-left: 5rem;
}

.aptech img {
  width: 20em;
  height: 5.8em;
  border-radius: 10px;
  border: 2px solid #0d49e1;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  object-fit: cover;
}

.aptech img:hover {
  transform: scale(1.05);
}

.aptech h6 {
  font-size: 0.8em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 800;
  color: #333;
  text-align: justify;
  margin: 0 1rem;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-transform: capitalize;
}


/* PINNACLE */
.pinnacle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0.5em;
  background-color: #fcfcfc;
  width: 90%;
  height: 10em;
  border: 2px solid #0d49e1;
  border-radius: 10px;
  margin-top: 1em;
  transform: translateY(-3.3rem);
  margin-left: 5rem;
}

.pinnacle img {
  width: 8em;
  height: 5em;
  border-radius: 10px;
  border: 2px solid #0d49e1;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  object-fit: cover;
}

.pinnacle img:hover { transform: scale(1.05); }

.pinnacle h6 {
  font-size: 1em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0 1rem;
  color: #333;
  line-height: 1.5em;
  letter-spacing: 1px;
}


/* AUCHI */
.auchi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0.5em;
  background-color: #fcfcfc;
  width: 90%;
  height: 7em;
  border: 2px solid #0d49e1;
  border-radius: 10px;
  margin-top: 1em;
  transform: translateY(-2.8rem);
  margin-left: 5rem;
}

.auchi img {
  width: 20em;
  height: 5.8em;
  border-radius: 10px;
  border: 2px solid #0d49e1;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  object-fit: cover;
}

.auchi img:hover { transform: scale(1.05); }

.auchi h6 {
  font-size: 1em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0 1rem;
  color: #333;
  line-height: 1.5em;
  letter-spacing: 1px;
}



/* ============================
   WHY CHOOSE US
============================ */
.whychooseus {
  padding: 50px 20px;
  background: #d4f0fb;
  padding: 50px 20px;
  margin: 40px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* ..................... */
  transform: translateY(-4em);

}

.whychooseustext {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  color: #2aa727;
  border: 2px solid #0d49e1;
  border-radius: 15px;
  padding: 10px 20px;
  margin: 40px auto;
  max-width: 900px;
  background: #f4f5f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-3em);
}

.whychooseusmaintext {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  transform: translateY(-6em);
  height: auto;
}

.whychooseusmaintext h4 {
  font-size: bold;
  color: #0d49e1;
  margin-bottom: 8px;
  border: 2px solid #2aa727;
  border-radius: 20px;
  text-align: center;
  height: 8vh;
  padding: 10px;
  background-color: #fff;
}
.whychooseusmaintext p {
  font-size: 18px;
  font-family: sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  padding: 4px;
}
.elfsight-app-cd726eee-e4bd-47ab-9a4d-2e72fe6cb176 {
  margin-top: -9em;

}
.review{
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  color: #2aa727;
  border: 2px solid #0d49e1;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 40px auto;
  max-width: 900px;
  background: #f4f5f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(1.2em);
}
.googleReviews{
  margin-top: 2em;
}
.clients{
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  color: #2aa727;
  border: 2px solid #0d49e1;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 40px auto;
  max-width: 900px;
  background: #f4f5f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(1.2em); 
}

/* ============================
   EXPERIENCE SECTION
============================ */
  /* Section Title */
.experience-title {
  font-size: 35px;
  text-align: center;
  margin-bottom: 40px;
  color: #2aa727;
  background: #ffffff;
  padding: 15px 30px;
  border-radius: 15px;
  border: 2px solid #0d49e1;
  width: fit-content;
  margin: 40px auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Timeline Container */
.timeline {
  position: relative;
  margin: 40px auto;
  padding-left: 30px;
  border-left: 4px solid #0d49e1;
  max-width: 900px;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

/* Staggered Animation */
.timeline-item:nth-child(2) { animation-delay: .2s; }
.timeline-item:nth-child(3) { animation-delay: .4s; }
.timeline-item:nth-child(4) { animation-delay: .6s; }
.timeline-item:nth-child(5) { animation-delay: .8s; }

/* Timeline Icon */
.timeline-icon {
  position: absolute;
  left: -34px;
  top: 0;
  background: #0d49e1;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Timeline Content */
.timeline-content {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  margin: 0;
  font-size: 20px;
  color: #0d49e1;
}

.timeline-content h4 {
  margin: 5px 0;
  font-size: 16px;
  color: #555;
}

.timeline-content .date {
  font-weight: bold;
  color: #2aa727;
  margin-bottom: 10px;
}

.timeline-content ul {
  padding-left: 20px;
  margin-top: 10px;
  color: #444;
}

.timeline-content ul li {
  margin-bottom: 6px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
/* Phones */
@media (max-width: 600px) {
  .timeline {
    padding-left: 20px;
  }

  .timeline-icon {
    left: -25px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .timeline-content {
    padding: 15px;
  }

  .experience-title {
    font-size: 28px;
  }
}


/* ============================
   FOOTER
============================ */
/* PREMIUM CONTACT SECTION */
.contact-premium {
  background: radial-gradient(circle at top, #0d49e1, #000);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Floating particles */
.contact-premium::before,
.contact-premium::after {
  content: "";
  position: absolute;
  width: 350px;
  background: rgba(255,255,255,0.12);
  filter: blur(150px);
  border-radius: 50%;
  animation: floatAnim 7s ease-in-out infinite alternate;
}

.contact-premium::before {
  top: -50px;
  left: -60px;
}

.contact-premium::after {
  bottom: -40px;
  right: -60px;
}

/* Card */
.premium-wrapper {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(20px);
  padding: 50px 35px;
  border-radius: 35px;
  max-width: 650px;
  margin: auto;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: fadeUp 1s ease-out forwards;
}

/* Title */
.premium-title {
  font-size: 34px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Subtitle */
.premium-text {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* Premium Button */
.premium-btn {
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 15px 35px;
  border-radius: 50px;
  background: linear-gradient(135deg,green, #ff8c00, #0d49e1);
  background-size: 200%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  animation: gradientSlide 6s ease infinite;
  overflow: hidden;

}

.premium-btn .shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-20deg);
  animation: shineEffect 3s infinite;
}

/* FOOTER PREMIUM */
.footer-premium {
  background: #111;
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}

.premium-logo {
  width: 110px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #ffcb52);
}

.premium-footer-tagline {
  font-size: 17px;
  color: #ccc;
  margin-bottom: 25px;
}

.premium-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.premium-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #ffcb52;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
}

.premium-socials a:hover {
  transform: translateY(-5px);
  background: #ffcb52;
  color: #000;
  box-shadow: 0 0 15px #ffcb52;
}

.premium-copy {
  font-size: 14px;
  color: #666;
}


/* ANIMATIONS */
@keyframes gradientSlide {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

@keyframes shineEffect {
  0% { left: -120%; }
  100% { left: 140%; }
}

@keyframes floatAnim {
  from { transform: translateY(0px); }
  to { transform: translateY(25px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}


/* RESPONSIVE PREMIUM */
@media (max-width: 600px) {
  .premium-wrapper {
    padding: 35px 20px;
  }
  .premium-title {
    font-size: 28px;
  }
  .premium-btn {
    font-size: 16px;
    padding: 12px 25px;
    cursor: pointer;
    
  }
}



/* ============================
   MOBILE RESPONSIVENESS
============================ */
@media (max-width: 850px) {
  .details ul {
    display: none;
  }
  .mobile-menu {
    justify-content: center;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #0d49e1;
    padding: 15px 0;
    cursor: pointer;
  
  }
  /* .........SMALL SCREENS MENU BUTTON CONTROL............. */
  .menu-btn {
    transform: translateX(4.5em);
    color: #0d49e1;
  }
  .menu-btn i {
    font-size: 28px;
  }
  .aptech,
  .pinnacle,
  .auchi {
    flex-direction: column;
    width: 98%;
    height: auto;
    margin-left: 0;
    transform: translateY(0);
    padding: 1em 0.5em;
    text-align: center;
  }

  .aptech img,
  .pinnacle img,
  .auchi img {
    width: 60%;
    height: auto;
    margin-bottom: 12px;
  }

  .aptech h6,
  .pinnacle h6,
  .auchi h6 {
    margin: 0;
    text-align: center;
  }
}
  .whychooseusmaintext {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .whychooseusmaintext h4 {
    font-size: 1.2em;
    text-align: center;
    height: auto;
    padding: 40px;
  }
  .whychooseusmaintext p {
    font-size: 16px;
  }

@media (max-width: 600px) {
  .herotext span,
  .herotext p {
    width: 90%;
  }

  .aptech img,
  .pinnacle img,
  .auchi img {
    width: 80%;
  }

  .aptech,
  .pinnacle,
  .auchi {
    padding: 1.5em 1em;
  }

  .aptech h6,
  .pinnacle h6,
  .auchi h6 {
    font-size: 0.9em;
    line-height: 1.4em;
  }
}

/* ================================
   RESPONSIVE FOR 884PX – 1104PX
=================================*/
@media (min-width: 884px) and (max-width: 1104px) {

  /* APTECH */
  .aptech {
    width: 85%;
    margin-left: 2rem;
    height: auto;
    padding: 1em;
    transform: translateY(-2rem);
  }

  .aptech img {
    width: 8em;
    height: auto;
  }

  .aptech h6 {
    font-size: 0.95em;
    line-height: 1.4em;
  }


  /* PINNACLE */
  .pinnacle {
    width: 90%;
    margin-left: 2rem;
    height: auto;
    padding: 1em;
    transform: translateY(-2rem);
  }

  .pinnacle img {
    width: 7em;
    height: auto;
  }

  .pinnacle h6 {
    font-size: 0.95em;
    line-height: 1.4em;
  }


  /* AUCHI */
  .auchi {
    width: 90%;
    margin-left: 2rem;
    height: auto;
    padding: 1em;
    transform: translateY(-1.8rem);
  }

  .auchi img {
    width: 16em;
    height: auto;
  }

  .auchi h6 {
    font-size: 0.95em;
    line-height: 1.4em;
  }

}
/* FINAL HORIZONTAL SCROLL FIX  IF THE Stuff still has a little space when  scroll the to left and right on both small screen size and large screen size */
html, body {
  overflow-x: hidden !important;
}

* {
  max-width: 100%;
}

.row, .container, .wrapper, .premium-wrapper, .navbar, .nav, section, header, footer {
  overflow-x: hidden;
}


