/* General Reset */
html, body {
  margin: 0;
  padding: 0;
  background:  #f2f2f2;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

/* ================ backtop  start ================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  margin-bottom: 60px;
  border-radius: 50%;
  background-color: #fb8500;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 0;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Progress Circle */
.progress-circle {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.progress-circle-fill {
  fill: none;
  stroke: #00ffff; /* Aqua color */
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.1s linear;
}

/* Hover States */
.back-to-top:hover {
  background-color: #00ffff;
}

.back-to-top:hover .progress-circle-fill {
  stroke: #0d121b; /* Footer background color */
}

.back-to-top i {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.back-to-top:hover i {
  color: #0d121b;
}
/* ================ back top end ================= */

/* ================ Header Styling  start ================= */
#header {
  top: 0;
  z-index: 997;
  transition: all 0.5s;
  padding: 0;
  background: rgba(26, 24, 22, 0.85);
}

#header.header-transparent {
  background: transparent;
}

.bgcolor.scrolled {
  background: #000000;
  transition: ease-in-out 0.5s;
}

/* Navbar Layout - Keep your original styles */
.navbar {
  padding: 4px 0;
}

.navbar-brand {
  padding: 0;
  margin-right: 15px;
}

/* Simple logo fix - only these 3 lines are new */
.navbar-brand img {
  height: 40px;
  width: auto;
  max-width: 150px;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.navbar-nav .nav-link {
  padding: 10px 20px;
  color: #ffffff !important;
  transition: color 0.3s ease;
  font-size: 18px;
}

.navbar-nav .nav-item.active a {
  color: #00ffff !important;
}

.navbar-nav .nav-link:hover {
  color: #00ffff !important;
}

.navbar .nav-item {
  word-spacing: 5px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  background-color: #222;
  border: none;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  color: #ffffff;
}

.dropdown-item:hover {
  background-color: #000000;
  color: #00ffff;
}

/* Desktop Contact Button */
.btn-outline-light {
  border: 2px solid #00ffff;
  color: #fff;
  padding: 6px 15px;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: #fb8500;
  color: #ffffff;
}

/* Mobile Hamburger Icon */
.navbar-toggler {
  display: inline-block;
  cursor: pointer;
  border: 0;
  background: none;
  margin-left: auto;
  padding: 0;
}

.bar1, .bar3 {
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  margin: 6px 0;
  transition: 0.4s;
}

.bar2 {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: rotate(45deg) translate(-8px, -8px);
}

/* Mobile and Responsive Styling */
@media (max-width: 768px) {
  .navbar > .container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
    margin-left: 0;
  }

  /* Mobile logo size */
  .navbar-brand img {
    height: 35px;
    max-width: 130px;
  }

  .navbar-collapse {
    background-color: #161616 !important;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 15px;
    width: calc(100% - 30px);
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 12px 15px;
    width: 100%;
    text-align: left;
  }

  .navbar-nav .nav-item {
    margin: 5px 0;
    width: 100%;
  }

  .navbar-toggler {
    margin-right: 10px;
  }

  /* Fixed Contact Button Styling */
  .contact-button {
    border: 2px solid #00ffff !important;
    border-radius: 4px !important;
    padding: 8px 20px !important;
    margin: 8px 0 !important;
    display: inline-block !important;
    width: fit-content !important;
    text-align: center !important;
    color: #fff !important;
    background-color: transparent !important;
    transition: all 0.3s ease !important;
  }

  .contact-button:hover {
    background-color: #fb8500 !important;
    color: #ffffff !important;
  }

  .nav-item.d-md-none {
    width: fit-content !important;
    margin-left: 15px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .navbar-brand img {
    height: 30px;
    max-width: 110px;
  }
}
/* ================ Header Styling  end ================= */

/* ====================================================== Home page start ======================================================= */
/* ================ Home banner Styling  start ================= */
.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1200px;
  background: url('../img/home/1.png') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  overflow: hidden;
  /* Desktop animation */
  animation: backgroundZoom 30s ease infinite;
}

@media (max-width: 768px) {
  .hero-banner {
    animation: none;
    background-attachment: scroll;
    padding: 0 15px;
  }
}

/* Background zoom animation */
@keyframes backgroundZoom {
  0%, 100% {
    background-size: 100%;
  }
  50% {
    background-size: 110%;
  }
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-banner h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
  line-height: 1.2;
  font-weight: 700;
  padding: 0 10px;
}

.banner-subtitle {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
  line-height: 1.4;
  font-weight: 400;
  padding: 0 15px;
}

.arrow-button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 80px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
}

.arrow-down {
  color: white;
  font-size: 2rem;
  margin: -15px 0;
  transition: all 0.3s ease;
}

.arrow-down:first-child {
  animation: bounce 2s infinite;
}

.arrow-down:last-child {
  animation: bounce 2s infinite 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.arrow-button:hover .arrow-down {
  color: #00ffff;
}

/* Large Desktop */
@media (min-width: 1400px) {
  .hero-banner h1 {
    font-size: 5.5rem;
  }
  .banner-subtitle {
    font-size: 2.2rem;
  }
}

/* Desktop */
@media (max-width: 1399px) and (min-width: 1200px) {
  .hero-banner h1 {
    font-size: 5rem;
  }
  .banner-subtitle {
    font-size: 2rem;
  }
}

/* Small Desktop / Large Tablet */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero-banner h1 {
    font-size: 4.5rem;
  }
  .banner-subtitle {
    font-size: 1.9rem;
  }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
  .hero-banner {
    min-height: 550px;
  }
  .hero-banner h1 {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
  }
  .banner-subtitle {
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
  }
}

/* Large Mobile */
@media (max-width: 767px) and (min-width: 576px) {
  .hero-banner {
    min-height: 500px;
    padding: 0 15px;
  }
  .hero-banner h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    padding: 0 5px;
  }
  .banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 10px;
  }
  .arrow-button {
    bottom: 30px;
    width: 50px;
    height: 70px;
  }
  .arrow-down {
    font-size: 1.8rem;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .hero-banner {
    min-height: 450px;
    padding: 0 10px;
  }
  .hero-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    padding: 0;
    line-height: 1.3;
  }
  .banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding: 0 5px;
    line-height: 1.4;
  }
  .arrow-button {
    bottom: 20px;
    width: 45px;
    height: 60px;
  }
  .arrow-down {
    font-size: 1.6rem;
    margin: -12px 0;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  .hero-banner {
    min-height: 400px;
    padding: 0 8px;
  }
  .hero-banner h1 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
  }
  .banner-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  .arrow-button {
    bottom: 15px;
    width: 40px;
    height: 55px;
  }
  .arrow-down {
    font-size: 1.4rem;
    margin: -10px 0;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-banner {
    min-height: 350px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
  }
  .banner-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .arrow-button {
    bottom: 15px;
  }
}
/* ================ Home banner Styling  end ================= */

/* ================ Introduction Section Start =============== */
.introduction {
  padding: 80px 0; 
  position: relative;
  overflow: hidden;
}

.introduction::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.introduction .container {
  position: relative;
  z-index: 1;
}

.introduction .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.introduction .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #00ffff;
  border-radius: 2px;
}

.introduction .section-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.introduction .btn-about-outline {
  border: 2px solid #00ffff;
  color: #000;
  background: transparent;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.introduction .btn-about-outline i {
  font-size: 1.1rem;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.introduction .btn-about-outline:hover {
  background: #fb8500;
  border-color: #ffffff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 133, 0, 0.3);
}

.introduction .btn-about-outline:hover i {
  transform: rotate(15deg);
}

.introduction .btn-about-outline:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .introduction .introduction {
    padding: 60px 0;
    text-align: center;
  }
  
  .introduction .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .introduction .btn-about-outline {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
  
  .introduction .btn-about-outline i {
    font-size: 1rem;
    margin-right: 8px;
  }
}
/* ================ Introduction Section end =============== */

/* ================ Services Section Start ================= */
.services {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.service-card {
  background: #002233; 
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.service-card h3 {
  font-size: 1.25rem;
  margin: 15px 0 10px;
  color: white; 
  font-weight: 600;
}

.service-card p {
  color: rgba(255,255,255,0.85); 
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.service-tags span {
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.pl-lg-5 {
  padding-left: 3rem !important; 
}

.section-title {
  font-size: 2rem;
  color: #2d3748; 
  margin-bottom: 1.5rem;
}

.section-description {
  color: #4a5568; 
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.key-features {
  margin: 1.5rem 0;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #2d3748; 
}

.feature i {
  color: #fb8500; 
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.service-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #fb8500; 
}

.label {
  font-size: 0.85rem;
  color: #718096; 
  font-weight: 500;
}

.service-icon i {
  font-size: 2.2rem;
  color: #fb8500;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
  border-color: rgba(251, 133, 0, 0.2);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fb8500, #ffb703);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover .service-icon i {
  transform: rotate(15deg);
}

.btn-service-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  
  border: 2px solid #00ffff;
  background-color: transparent;
  color: #000;
  
  line-height: 1;
}

.btn-service-outline i {
  font-size: 1.1rem;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.btn-service-outline:hover {
  background-color: #fb8500; 
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(251, 133, 0, 0.3);
  transform: translateY(-2px);
}

.btn-service-outline:hover i {
  transform: rotate(-15deg);
}

.btn-service-outline:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(251, 133, 0, 0.2);
}

@media (max-width: 992px) {
  .pl-lg-5 {
    padding-left: 15px !important;
  }
}

@media (max-width: 768px) {
  .service-stats {
    justify-content: flex-start;
  }
}
/* ================ Services Section end ================= */

/* ================ Call To Action Section Start ================= */
.call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/home/homebanner.png") center center;
  background-size: cover;
  padding: 60px 0;
  background-attachment: fixed;
}

.call-to-action h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #ffffff;
  font-display: swap;
}

.btn-contact {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  margin-top: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  
  background: transparent;
  color: #fff;
  border: 2px solid #00ffff;
  box-shadow: 0 4px 12px rgba(0, 34, 51, 0.15);
  
  text-decoration: none;
}

.btn-contact i {
  font-size: 1.1rem;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.btn-contact:hover {
  background: #fb8500;
  border-color: #ffffff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(251, 133, 0, 0.3);
}

.btn-contact:hover i {
  transform: scale(1.15);
}

/* Active State */
.btn-contact:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(251, 133, 0, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .btn-contact {
    padding: 10px 24px;
    font-size: 0.85rem;
  }
  
  .btn-contact i {
    font-size: 1rem;
    margin-right: 8px;
  }
}
/* ================ Call To Action Section end ================= */

/* ================ FAQS Section Start ================= */
.faq {
padding-top: 20px;
padding-bottom: 20px;
background: #ffffff;
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 16px;
  color: #000000;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  background: #0faefd13;
}

.faq .faq-container .faq-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: #fb8500;
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: #fb8500;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #fb8500;
}

.faq .faq-container .faq-active h3 {
  color: #fb8500;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}
/* ================ FAQS Section end ================= */
/* ====================================================== Home page end ======================================================= */

/*================ starter banner/ breadcrumb start ==========*/
.breadcrumb-header {
    min-height: 75vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.breadcrumb-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.65) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.breadcrumb-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.breadcrumb-header .content {
    padding: clamp(3rem, 8vw, 6rem) 1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.breadcrumb-header h2 {
    color: #ffffff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.breadcrumb-header h2 span {
    color: #ff9900;
    position: relative;
    display: inline-block;
}

.breadcrumb-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff9900, transparent);
    border-radius: 2px;
}

.breadcrumb-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    position: relative;
}

.breadcrumb-header ul.breadcrumb {
    padding: 1rem clamp(1rem, 3vw, 1.5rem);
    list-style: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.breadcrumb-header ul.breadcrumb:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.breadcrumb-header ul.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.breadcrumb-header ul.breadcrumb li+li:before {
    padding: 0 0.5rem;
    content: "›";
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    font-weight: 300;
}

.breadcrumb-header ul.breadcrumb li a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    padding: 0.5rem clamp(0.75rem, 2vw, 1rem);
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    white-space: nowrap;
}

.breadcrumb-header ul.breadcrumb li a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, 
        rgba(255, 153, 0, 0.15), 
        rgba(255, 153, 0, 0.05));
    border-color: rgba(255, 153, 0, 0.3);
    transform: translateY(-1px);
}

.breadcrumb-header ul.breadcrumb li:last-child {
    color: #ff9900;
    font-weight: 600;
    padding: 0.5rem clamp(0.75rem, 2vw, 1rem);
    background: linear-gradient(135deg, 
        rgba(255, 153, 0, 0.15), 
        rgba(255, 153, 0, 0.05));
    border-radius: 25px;
    border: 1px solid rgba(255, 153, 0, 0.2);
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .breadcrumb-header {
        min-height: 65vh;
        background-attachment: scroll;
    }
    
    .breadcrumb-header .content {
        padding: clamp(2.5rem, 6vw, 4rem) 1rem;
    }
    
    .breadcrumb-header h2 {
        margin-bottom: 1rem;
    }
    
    .breadcrumb-intro {
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }
    
    .breadcrumb-header ul.breadcrumb {
        padding: 0.875rem 1.25rem;
        border-radius: 40px;
        margin-top: 1.25rem;
        gap: 0.375rem;
    }
    
    .breadcrumb-header ul.breadcrumb li a {
        padding: 0.4rem 0.75rem;
    }
    
    .breadcrumb-header ul.breadcrumb li:last-child {
        padding: 0.4rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .breadcrumb-header {
        min-height: 60vh;
    }
    
    .breadcrumb-header h2 {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .breadcrumb-intro {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        padding: 0 1rem;
        margin-bottom: 1.75rem;
    }
    
    .breadcrumb-header ul.breadcrumb {
        padding: 0.75rem 1rem;
        border-radius: 35px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        max-width: 100%;
    }
    
    .breadcrumb-header ul.breadcrumb li+li:before {
        display: none;
    }
    
    .breadcrumb-header ul.breadcrumb li {
        margin: 0;
    }
    
    .breadcrumb-header ul.breadcrumb li a {
        padding: 0.5rem 0.875rem;
        border-radius: 20px;
        font-size: 0.95rem;
    }
    
    .breadcrumb-header ul.breadcrumb li:last-child {
        padding: 0.5rem 0.875rem;
        border-radius: 20px;
    }
}

@media (max-width: 400px) {
    .breadcrumb-header {
        min-height: 55vh;
    }
    
    .breadcrumb-header h2 {
        font-size: 1.8rem;
    }
    
    .breadcrumb-intro {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .breadcrumb-header ul.breadcrumb {
        padding: 0.625rem 0.875rem;
        gap: 0.25rem;
    }
    
    .breadcrumb-header ul.breadcrumb li a {
        padding: 0.375rem 0.625rem;
        font-size: 0.85rem;
    }
    
    .breadcrumb-header ul.breadcrumb li:last-child {
        padding: 0.375rem 0.625rem;
        font-size: 0.85rem;
    }
}

/* Ultra-wide screen optimization */
@media (min-width: 1920px) {
    .breadcrumb-header {
        min-height: 70vh;
    }
    
    .breadcrumb-header .content {
        max-width: 1200px;
        padding: 8rem 2rem;
    }
    
    .breadcrumb-header h2 {
        font-size: 5rem;
    }
    
    .breadcrumb-intro {
        font-size: 1.6rem;
        max-width: 800px;
    }
}

/* Tablet landscape optimization */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .breadcrumb-header {
        min-height: 85vh;
    }
    
    .breadcrumb-header .content {
        padding: 4rem 2rem;
    }
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
    .breadcrumb-header ul.breadcrumb li a {
        padding: 0.625rem 1.125rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .breadcrumb-header ul.breadcrumb li:last-child {
        padding: 0.625rem 1.125rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .breadcrumb-header ul.breadcrumb {
        padding: 1rem 1.5rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .breadcrumb-header ul.breadcrumb,
    .breadcrumb-header ul.breadcrumb:hover,
    .breadcrumb-header ul.breadcrumb li a:hover {
        transition: none;
        transform: none;
    }
}

/* Dark mode optimization */
@media (prefers-color-scheme: dark) {
    .breadcrumb-header::before {
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.85) 0%, 
            rgba(0, 0, 0, 0.7) 50%, 
            rgba(0, 0, 0, 0.85) 100%);
    }
}
/*================= starter banner/ breadcrmb end ==========/

/* ====================================================== About page start ======================================================= */
/*================= More about us Section Start =================*/
.more-about {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding-bottom: 10px;
}

.more-about::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
}

.more-about::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(251, 133, 0, 0.08) 100%);
  border-radius: 50%;
  z-index: 0;
}

.more-about .container {
  position: relative;
  z-index: 1;
}

.more-about .image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.more-about .image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.more-about .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.more-about .image-container:hover::before {
  opacity: 1;
}

.more-about .img-fluid {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.more-about .image-container:hover .img-fluid {
  transform: scale(1.05);
}

.more-about .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.2;
  color: #222;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.more-about .accent-text {
  color: #fb8500;
  background: linear-gradient(120deg, rgba(251, 133, 0, 0.15) 0%, transparent 80%);
  padding: 0 4px;
  border-radius: 4px;
}

.more-about .section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #00ffff, #fb8500);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.more-about .section-title:hover::after {
  width: 100px;
}

.more-about .section-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid rgba(0, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .more-about {
    padding: 60px 0;
    text-align: center;
  }
  
  .more-about .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .more-about .section-description {
    padding-left: 0;
    border-left: none;
    padding-top: 16px;
    border-top: 3px solid rgba(0, 255, 255, 0.2);
  }
}
/*================= More about us Section end =================*/

/*================= our story start =================*/
.our-story {
  padding: 80px 0;
  background: #fff;
}

.our-story .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.our-story .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00ffff, #fb8500);
  border-radius: 2px;
}

.our-story .accent-text {
  color: #fb8500;
}

.story-point {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.story-icon {
  flex-shrink: 0;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 251, 251, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #00ffff;
}

.our-story .section-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.image-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .our-story {
    padding: 60px 0;
  }
  
  .story-point {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .story-icon {
    margin-right: 0;
    margin-bottom: 15px;
    align-self: center;
  }
  
  .our-story .section-title {
    text-align: center;
    font-size: 2rem;
  }
  
  .our-story .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/*================= our story end =================*/

/*================= core values start =================*/
.our-core-values {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.our-core-values::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
}

.our-core-values::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(251, 133, 0, 0.08) 100%);
  border-radius: 50%;
  z-index: 0;
}

.our-core-values .container {
  position: relative;
  z-index: 1;
}

.our-core-values .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.our-core-values .accent-text {
  color: #fb8500;
  position: relative;
}

.our-core-values .section-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.value-card {
  background: #002233;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00ffff, #fb8500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(251, 133, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #fb8500;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: #fb8500;
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #f8a201;
  margin-bottom: 15px;
}

.value-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 768px) {
  .our-core-values {
    padding: 60px 0;
  }
  
  .our-core-values .section-title {
    font-size: 2.25rem;
  }
  
  .value-card {
    padding: 30px 20px;
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
}
/*================= core values end =================*/

/*================= our team start =================*/
.our-team {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.our-team::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
}

.our-team::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(251, 133, 0, 0.08) 100%);
  border-radius: 50%;
  z-index: 0;
}

.our-team .container {
  position: relative;
  z-index: 1;
}

.our-team .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.our-team .accent-text {
  color: #fb8500;
  position: relative;
}

.our-team .section-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.team-member-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-img-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-img-container img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: all 0.5s ease;
}

.team-member-card:hover .team-img-container img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(251, 133, 0, 0.8) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-member-card:hover .team-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #fb8500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #fff;
  transform: translateY(-5px);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 5px;
}

.team-info .position {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #fb8500;
  margin-bottom: 15px;
  font-size: 1rem;
}

.team-info .bio {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .our-team {
    padding: 60px 0;
  }
  
  .our-team .section-title {
    font-size: 2.25rem;
  }
  
  .team-img-container {
    height: 250px;
  }
  
  .team-info {
    padding: 20px;
  }
}
/*================= our team end =================*/
/* ====================================================== About page end ======================================================= */

/* ====================================================== Services page start ======================================================= */
.services-3d {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f5 100%);
  position: relative;
  overflow: hidden;
}

.services-3d::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
}

.services-3d::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(0, 194, 203, 0.08) 0%, rgba(251, 133, 0, 0.08) 100%);
  border-radius: 50%;
  z-index: 0;
}

.services-3d .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 15px;
}

.accent-text {
  color: #fb8500;
  position: relative;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  height: 380px;
  perspective: 1500px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-front {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-back {
  background: linear-gradient(135deg, #fb8500 0%, #e67700 100%);
  color: white;
  transform: rotateY(180deg);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fb8500 0%, #ff9e33 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 20px rgba(251, 133, 0, 0.3);
}

.card-front h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 15px;
  text-align: center;
}

.card-front p {
  color: #555;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb8500;
  font-weight: 600;
  margin-top: auto;
}

.card-cta i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.service-card:hover .card-cta i {
  transform: translateX(5px);
}

.card-back h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.card-back ul {
  list-style: none;
  margin-bottom: 25px;
}

.card-back li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.card-back i {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.service-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  text-decoration: none;
  color: #00c2cb;
}

.service-link i {
  margin-left: 8px;
}

/* Tilt.js styles */
.service-card .js-tilt-glare {
  border-radius: 20px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .service-card {
    height: 350px;
  }
}

/*============== service detail page start============*/
.service-detail {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-icon-large {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #fb8500 0%, #ff9e33 100%);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3.5rem;
  color: white;
  box-shadow: 0 15px 30px rgba(251, 133, 0, 0.25);
}

.service-detail h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.service-tagline {
  font-size: 1.3rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Statistics */
.service-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: #fb8500;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-card p {
  color: #555;
  font-weight: 500;
}

/* Benefits Grid */
.service-benefits {
  margin-bottom: 60px;
}

.service-benefits h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fb8500;
}

.benefit-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.benefit-item p {
  color: #555;
  line-height: 1.6;
}

/* Process Timeline */
.service-process {
  margin-bottom: 60px;
}

.service-process h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #fb8500, #00c2cb);
  z-index: 0;
}

.process-step {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fb8500 0%, #ff9e33 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.process-step p {
  color: #555;
  line-height: 1.6;
}

/* Platform Comparison */
.platform-comparison {
  margin-bottom: 60px;
}

.platform-comparison h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.platform-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
}

.platform-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fb8500;
}

.platform-card h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #222;
}

.platform-card ul {
  list-style: none;
  text-align: left;
}

.platform-card li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.platform-card i {
  margin-right: 10px;
  color: #fb8500;
}

/* Feature Showcase */
.feature-showcase {
  margin-bottom: 60px;
}

.feature-showcase h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fb8500;
}

.feature-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.feature-item p {
  color: #555;
  line-height: 1.6;
}

/* Design Portfolio */
.design-portfolio {
  margin-bottom: 60px;
}

.design-portfolio h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fb8500;
}

.portfolio-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.portfolio-item p {
  color: #555;
  line-height: 1.6;
}

/* Design Process */
.design-process {
  margin-bottom: 60px;
}

.design-process h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.design-step {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.design-step:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fb8500;
}

.design-step h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.design-step p {
  color: #555;
  line-height: 1.6;
}

/* SEO Services */
.seo-services {
  margin-bottom: 60px;
}

.seo-services h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.seo-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.seo-item:hover {
  transform: translateY(-5px);
}

.seo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fb8500;
}

.seo-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
  text-align: center;
}

.seo-item > p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.seo-item ul {
  list-style: none;
}

.seo-item li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.seo-item i {
  margin-right: 10px;
  color: #fb8500;
}

/* Results Timeline */
.results-timeline {
  margin-bottom: 60px;
}

.results-timeline h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: linear-gradient(to bottom, #fb8500, #00c2cb);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 80px;
}

.timeline-marker {
  position: absolute;
  left: 22px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fb8500;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #fb8500;
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.timeline-content p {
  color: #555;
  line-height: 1.6;
}

/* Banner Types */
.banner-types {
  margin-bottom: 60px;
}

.banner-types h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.banner-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.banner-item:hover {
  transform: translateY(-5px);
}

.banner-image {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fb8500;
}

.banner-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.banner-item > p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.banner-item ul {
  list-style: none;
  text-align: left;
}

.banner-item li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.banner-item i {
  margin-right: 10px;
  color: #fb8500;
}

/* Placement Strategy */
.placement-strategy {
  margin-bottom: 60px;
}

.placement-strategy h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.placement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.placement-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.placement-item:hover {
  transform: translateY(-5px);
}

.placement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fb8500;
}

.placement-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.placement-item p {
  color: #555;
  line-height: 1.6;
}

/* Branding Components */
.branding-components {
  margin-bottom: 60px;
}

.branding-components h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.component-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.component-item:hover {
  transform: translateY(-5px);
}

.component-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fb8500;
}

.component-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.component-item p {
  color: #555;
  line-height: 1.6;
}

/* Brand Strategy */
.brand-strategy {
  margin-bottom: 60px;
}

.brand-strategy h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #222;
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.strategy-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.strategy-item:hover {
  transform: translateY(-5px);
}

.strategy-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.strategy-item p {
  color: #555;
  line-height: 1.6;
}

/* Animations */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter {
  animation: countUp 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-detail {
    padding: 60px 0;
  }
  
  .service-icon-large {
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
  }
  
  .service-detail h2 {
    font-size: 2.2rem;
  }
  
  .service-stats {
    grid-template-columns: 1fr;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-marker {
    left: 12px;
  }
}

/* Video editing icon color override */
#video-studio .service-icon-large {
  background: linear-gradient(135deg, #fb8500 0%, #ff9e33 100%);
}

/* Video stats enhancement */
#video-studio .stat-card {
  position: relative;
  overflow: hidden;
}

#video-studio .stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fb8500, #00c2cb);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#video-studio .stat-card:hover::before {
  opacity: 1;
}

/* Video timeline markers */
#video-studio .timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
}

#video-studio .timeline-marker i {
  font-size: 0.8rem;
  color: white;
}

#video-studio .timeline-badge {
  display: inline-block;
  background: rgba(251, 133, 0, 0.1);
  color: #fb8500;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Video timeline hover effect */
#video-studio .timeline-content {
  transition: all 0.3s ease;
}

#video-studio .timeline-item:hover .timeline-content {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(251, 133, 0, 0.1);
}

/* Video platform cards enhancement */
#video-studio .platform-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#video-studio .platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(251, 133, 0, 0.15);
}

#video-studio .platform-icon {
  transition: all 0.3s ease;
}

#video-studio .platform-card:hover .platform-icon {
  transform: scale(1.1);
}

/* Video seo items enhancement */
#video-studio .seo-item {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#video-studio .seo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(251, 133, 0, 0.15);
}

#video-studio .seo-icon {
  transition: all 0.3s ease;
}

#video-studio .seo-item:hover .seo-icon {
  transform: scale(1.1);
}

/* Video seo list icons color */
#video-studio .seo-item li i {
  color: #6f42c1;
}

/* Responsive for video section only */
@media (max-width: 768px) {
  #video-studio .timeline-marker {
    left: 12px;
    width: 18px;
    height: 18px;
  }
  
  #video-studio .timeline-marker i {
    font-size: 0.7rem;
  }
  
  #video-studio .timeline-badge {
    font-size: 0.8rem;
    padding: 3px 10px;
  }
}

@media (max-width: 576px) {
  #video-studio .seo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  #video-studio .comparison-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  #video-studio .timeline::before {
    left: 15px;
  }
  
  #video-studio .timeline-item {
    padding-left: 50px;
  }
  
  #video-studio .timeline-marker {
    left: 7px;
  }
}
/*============== service detail page end============*/

/* ====================================================== Services page end ======================================================= */

/* ====================================================== Portfolio page start ======================================================= */
/*Portfolio start*/
.portfolio-bootstrap {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e4e8f0 100%);
  position: relative;
  overflow: hidden;
}

.portfolio-bootstrap::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.15) 0%, rgba(0, 255, 255, 0.15) 100%);
  border-radius: 50%;
  z-index: 0;
}

.portfolio-bootstrap::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(251, 133, 0, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
}

.portfolio-bootstrap .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: #222;
  margin-bottom: 15px;
}

.accent-text {
  color: #fb8500;
  position: relative;
}

.section-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 60px;
}

.portfolio-category {
  margin-bottom: 70px;
}

.category-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 30px;
  padding-left: 15px;
  border-left: 4px solid #fb8500;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.expandable-image {
  cursor: pointer;
}

.expand-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.expandable-image:hover .expand-overlay {
  opacity: 1;
}

.expand-icon {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.project-content {
  padding: 25px;
}

.project-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}

.project-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px;
}

.project-actions {
  margin-top: 15px;
}

.btn-primary {
  background-color: #fb8500;
  border-color: #fb8500;
}

.btn-primary:hover {
  background-color: #e67700;
  border-color: #e67700;
}

.btn-outline-primary {
  color: #fb8500;
  border-color: #fb8500;
}

.btn-outline-primary:hover {
  background-color: #fb8500;
  border-color: #fb8500;
  color: white;
}

.modal-content {
  border-radius: 16px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid #eee;
  padding: 20px 25px;
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #222;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
}

#imageModal .modal-content {
  background-color: transparent;
  border: none;
}

#imageModal .close {
  opacity: 1;
  text-shadow: none;
}

@media (max-width: 768px) {
  .portfolio-bootstrap {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .project-image {
    height: 200px;
  }
  
  .project-content {
    padding: 20px;
  }
  
  .modal-body {
    padding: 20px;
  }
}
/*Portfolio end*/
/* ====================================================== Portfolio page end ======================================================= */

/*================================================== bolg page start =========================================================*/
.modern-blog {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.modern-blog::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
}

.modern-blog::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(0, 194, 203, 0.08) 0%, rgba(251, 133, 0, 0.08) 100%);
  border-radius: 50%;
  z-index: 0;
}

.modern-blog .container {
  position: relative;
  z-index: 1;
}

.blog-main-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #222;
  margin-bottom: 15px;
}

.accent-text {
  color: #fb8500;
  position: relative;
}

.blog-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Post */
.featured-post {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.featured-image {
  position: relative;
  height: 100%;
  min-height: 350px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fb8500;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-content {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content .post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}

.featured-content .category {
  background: rgba(251, 133, 0, 0.1);
  color: #fb8500;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.featured-content .date {
  color: #777;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.featured-content .date i {
  margin-right: 5px;
  color: #fb8500;
}

.featured-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured-content h3 a {
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-content h3 a:hover {
  color: #fb8500;
}

.featured-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  color: #fb8500;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: #00c2cb;
  text-decoration: none;
}

.read-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Blog Cards */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .card-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .image-overlay {
  opacity: 1;
}

.category-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fb8500;
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.card-content {
  padding: 25px;
}

.meta-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: #777;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-info span {
  display: flex;
  align-items: center;
}

.meta-info i {
  margin-right: 5px;
  color: #fb8500;
}

.card-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.card-content h4 a {
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-content h4 a:hover {
  color: #fb8500;
}

.card-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.card-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fb8500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #00c2cb;
}

.card-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .modern-blog {
    padding: 60px 0;
  }
  
  .blog-main-title {
    font-size: 2.5rem;
  }
  
  .featured-content {
    padding: 25px;
  }
  
  .featured-content h3 {
    font-size: 1.5rem;
  }
  
  .featured-image {
    min-height: 250px;
  }
  
  .card-image {
    height: 200px;
  }
}

/*blog detail start*/
.blog-detail-page {
  padding: 40px 0;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.bd-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Back navigation */
.bd-back-nav {
  margin-bottom: 30px;
}

.bd-back-link {
  display: inline-flex;
  align-items: center;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.bd-back-link:hover {
  color: #fb8500;
}

.bd-back-link i {
  margin-right: 8px;
}

/* Article header */
.bd-article-header {
  margin-bottom: 30px;
}

.bd-article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
}

.bd-category {
  color: #fb8500;
  font-weight: 600;
}

.bd-article-meta span {
  display: flex;
  align-items: center;
}

.bd-article-meta i {
  margin-right: 5px;
}

.bd-article-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 25px 0;
  color: #222;
}

.bd-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bd-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.bd-author-info {
  display: flex;
  flex-direction: column;
}

.bd-author-name {
  font-weight: 600;
  color: #222;
}

.bd-author-role {
  font-size: 14px;
  color: #666;
}

/* Featured image */
.bd-featured-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.bd-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article content */
.bd-article-content {
  margin-bottom: 40px;
}

.bd-intro {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.bd-article-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px 0;
  color: #222;
  font-weight: 600;
}

.bd-article-content p {
  margin-bottom: 20px;
  color: #444;
}

.bd-blockquote {
  border-left: 4px solid #fb8500;
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
  color: #666;
}

.bd-blockquote cite {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #777;
  font-style: normal;
  font-size: 0.9rem;
}

/* Article footer */
.bd-article-footer {
  padding: 25px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}

.bd-tags {
  margin-bottom: 20px;
}

.bd-tags span {
  font-weight: 600;
  margin-right: 10px;
  color: #666;
}

.bd-tag {
  display: inline-block;
  background: rgba(251, 133, 0, 0.1);
  color: #fb8500;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.bd-tag:hover {
  background: #00c2cb;
  color: white;
  text-decoration: none;
}

.bd-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.bd-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f3f3;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  color: #666;
}

.bd-action-btn:hover {
  background: #fb8500;
  color: white;
}

.bd-social-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bd-social-share span {
  color: #666;
  font-weight: 500;
}

.bd-social-icon {
  color: #666;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s;
}

.bd-social-icon:hover {
  color: #00c2cb;
}

/* Author bio */
.bd-author-bio {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 40px;
}

.bd-author-bio h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #222;
}

.bd-author-bio p {
  margin: 0;
  color: #666;
}

/* Comments 
.bd-comments-section {
  margin-bottom: 50px;
}

.bd-comments-section h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #222;
}

.bd-comment {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.bd-comment:last-child {
  border-bottom: none;
}

.bd-comment-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bd-comment-content h4 {
  margin: 0 0 8px 0;
  font-size: 1rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bd-comment-date {
  font-size: 12px;
  color: #999;
  font-weight: normal;
}

.bd-comment-content p {
  margin: 0 0 12px 0;
  color: #444;
}

.bd-comment-actions {
  display: flex;
  gap: 15px;
}

.bd-comment-actions button {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.bd-comment-actions button:hover {
  color: #fb8500;
}

.bd-comment-form {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
}

.bd-comment-form h3 {
  margin: 0 0 15px 0;
  font-size: 1.2rem;
}

.bd-comment-form textarea,
.bd-comment-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}

.bd-comment-form textarea:focus,
.bd-comment-form input:focus {
  outline: none;
  border-color: #fb8500;
}

.bd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.bd-comment-form button {
  background: #fb8500;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.bd-comment-form button:hover {
  background: #e67700;
}
/* Comment form */

/* like button */
.bd-like-btn {
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: transparent;
}

.bd-like-btn:hover {
    transform: translateY(-2px);
}

.bd-like-btn i {
    transition: all 0.3s ease;
}

.bd-like-btn.liked i {
    color: #ff4757 !important;
}

/* Related posts */
.bd-related-posts {
  margin-bottom: 30px;
}

.bd-related-posts h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #222;
}

.bd-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bd-related-post {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bd-related-post img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

.bd-related-post .bd-category {
  font-size: 12px;
  font-weight: 600;
}

.bd-related-post h4 {
  font-size: 1rem;
  margin: 0;
  color: #222;
  line-height: 1.4;
}

.bd-read-more {
  color: #fb8500;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.bd-read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .bd-article-title {
    font-size: 1.8rem;
  }
  
  .bd-related-grid {
    grid-template-columns: 1fr;
  }
  
  .bd-form-row {
    grid-template-columns: 1fr;
  }
  
  .bd-actions {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .bd-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .bd-article-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .bd-comment {
    flex-direction: column;
  }
}
/*blog detail end*/

/*================================================== blog page end =========================================================*/

/*================================================== terms and conditions page start =========================================================*/
.terms-conditions {
  padding: 60px 0;
  background: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

.tc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tc-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
}

.tc-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.tc-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.tc-updated {
  font-size: 0.9rem;
  color: #777;
  margin-top: 15px;
  font-style: italic;
}

.tc-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

.tc-nav {
  position: sticky;
  top: 30px;
  align-self: start;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
}

.tc-nav h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #222;
  padding-bottom: 10px;
  border-bottom: 2px solid #fb8500;
}

.tc-nav ul {
  list-style: none;
}

.tc-nav li {
  margin-bottom: 12px;
}

.tc-nav-link {
  color: #555;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
  padding: 5px 0;
  border-left: 3px solid transparent;
  padding-left: 10px;
  cursor: pointer;
}

.tc-nav-link:hover,
.tc-nav-link.active {
  color: #fb8500;
  border-left-color: #fb8500;
}

.tc-sections {
  padding-right: 20px;
}

.tc-section {
  margin-bottom: 50px;
  scroll-margin-top: 30px;
}

.tc-section h2 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}

.tc-section h3 {
  font-size: 1.3rem;
  color: #222;
  margin: 25px 0 15px;
}

.tc-section p {
  margin-bottom: 15px;
  color: #555;
}

.tc-section ul, 
.tc-section ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.tc-section li {
  margin-bottom: 10px;
  color: #555;
}

.tc-highlight {
  background: rgba(251, 133, 0, 0.1);
  border-left: 4px solid #fb8500;
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 5px 5px 0;
}

.tc-contact-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-top: 40px;
}

.tc-contact-box h3 {
  margin-top: 0;
  color: #fb8500;
}

.tc-acceptance {
  background: rgba(251, 133, 0, 0.05);
  border: 1px solid #fb8500;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
}

.tc-acceptance h3 {
  color: #fb8500;
  margin-bottom: 15px;
}

@media (max-width: 900px) {
  .tc-content {
    grid-template-columns: 1fr;
  }
  
  .tc-nav {
    position: static;
    margin-bottom: 30px;
  }
  
  .tc-sections {
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .tc-header h1 {
    font-size: 2rem;
  }
  
  .tc-section h2 {
    font-size: 1.5rem;
  }
}
/*================================================== terms and conditions page end =========================================================*/

/*================================================== contact page start =========================================================*/
.contact-section {
  padding: 60px 0;
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.contact-row {
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.contact-form-column {
  padding: 50px;
  background: #000000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-input, .contact-select, .contact-textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #00ffff;
  color: #ffffff;
  font-size: 16px;
  border-radius: 5px;
}

.contact-input:focus, .contact-select:focus, .contact-textarea:focus {
  outline: none;
  border-bottom-color: #fb8500;
  border-radius: 5px;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #ffffff;
  opacity: 1;
}

.contact-select option {
  background: #0d121b;
  color: #ffffff;
  padding: 12px;
  font-size: 16px;
}

.contact-textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-submit-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #00ffff;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
  align-self: flex-start;
}

.contact-submit-btn:hover {
  background: #fb8500;
  color: #ffffff;
  border-color: #ffffff;
}

.contact-info-column {
  padding: 50px;
  background: #002233;
}

.contact-info-header {
  color: #fb8500;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info-icon {
  color: #ffffff;
  font-size: 1.3rem;
  min-width: 25px;
}

.contact-info-text, .contact-info-link {
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
}

.contact-info-link:hover {
  color: #00ffff;
  text-decoration: none;
}

@media (max-width: 992px) {
  .contact-form-column,
  .contact-info-column {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
  }
    
  .contact-form-column,
  .contact-info-column {
    width: 100%;
  }
    
  .contact-submit-btn {
    align-self: center;
  }
    
  .contact-info-header,
  .contact-info-content {
    text-align: center;
  }
    
  .contact-info-item {
    justify-content: center;
  }
}
/*================================================================== contact page end ========================================================= */

/* ================ footer Styling  start ================= */
.footer {
  background-color: #0d121b;
  color: #ffffff;
}

.footer a {
  text-decoration: none;
}

.footer p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.footer-text {
  color: #ffffff;
  font-size: 1rem;
}

.footer-link {
  color: #ffffff;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.arrow-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #00ffff !important;
  transform: translateX(5px);
  text-decoration: none !important;
}

.footer-link:hover .arrow-icon {
  opacity: 1;
  left: -3px;
  color: #00ffff !important;
}

.contact-header {
  padding-left: 20px;
}

.contact-content {
  padding-left: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding-left: 0;
  transition: all 0.3s ease;
}

.contact-icon {
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
  flex-shrink: 0;
  color: #ffffff;
  transition: all 0.3s ease;
}

.contact-item a.footer-link {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-item:hover a.footer-link {
  color: #00ffff !important;
  transform: translateX(5px);
}

.contact-item:hover .contact-icon {
  color: #00ffff !important;
}

.social-icon {
  color: #ffffff;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 4px !important;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: #00ffff !important;
  border-color: #00ffff !important;
  transform: scale(1.05);
}

.footer-divider {
  border-top: 2px solid #00ffff;
  opacity: 0.4;
  margin: 1.5rem 0;
}

.mobile-divider {
  border-top: 1px solid #00ffff;
  opacity: 0.3;
  margin: 1.5rem 0;
}

.copyright-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.divider {
  color: #00ffff;
  padding: 0 4px;
}

.terms-link {
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.terms-link:hover {
  color: #00ffff !important;
}

@media (max-width: 768px) {
  .footer p {
    font-size: 1.1rem;
  }
  
  .footer-column {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .footer-column:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid #00ffff;
    opacity: 0.3;
  }
  
  .mobile-divider {
    display: none;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
  }

  .copyright-text {
    justify-content: center;
  }
}
/* ================ footer Styling  end ================= */