/* Base Styles */
:root {
  --primary-color: #2543ad;
  --secondary-color: #07207a;
  --dark-color: #222e56;
  --light-color: #e3e6f4;
  --white: #ffffff;
  --black: #000000;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  
  /* Gradient Colors */
  --accent-gradient: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 50%, #ff6b8b 100%);
  --accent-gradient-horizontal: linear-gradient(90deg, #3a7bd5 0%, #00d2ff 50%, #ff6b8b 100%);
  --accent-gradient-button: linear-gradient(90deg, #3a7bd5 0%, #ff6b8b 100%);

  --transition: all 0.3s ease;
}

/* Add these at the top of your CSS */
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.container, .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-color);
  background-image: url(../images/bg1.png);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Big Shoulders Text', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent-gradient-button);
  border: none;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--accent-gradient-button);
  color: var(--white);
  border-color: transparent;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  padding: 10px 15px;
  margin: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar.scrolled {
  top: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
  transition: transform 0.3s ease-in-out;
  height: 40px;
  width: auto;
}

.navbar-brand:hover .logo {
  transform: scale(1.1);
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  font-weight: 600;
  color: var(--dark-color) !important;
  padding: 10px 15px !important;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after, 
.nav-link.active::after {
  width: 100%;
}


@media (min-width: 992px) {
  .navbar {
    border-radius: 50px;
    margin: 20px auto;
    max-width: calc(100% - 40px);
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 767.98px) {
  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
  }
}

.footer {
  text-align: center;
}

@media (min-width: 768px) {
  .footer {
    text-align: left;
  }
}

.footer-heading::after {
  left: 0;
  transform: none;
}

@media (min-width: 768px) {
  .footer-heading::after {
    left: 0;
    transform: none;
  }
}


/* Hero Section */
.hero-section {
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.hero-image {
  animation: float 6s ease-in-out infinite;
  max-width: 100%;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.trust-badges {
  margin-top: 2rem;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
}

.feature-main-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.feature-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(37, 67, 173, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.feature-icon img {
  width: 50px;
}

/* Rotating Text */
.rotating-text-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 3rem auto;
}

.rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary-color);
  animation: rotate 10s linear infinite;
}

.rotating-text span {
  position: absolute;
  left: 50%;
  transform-origin: 0 100px;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* About Us - Luxurious Style */
.lux-about-us-section {
  background-color: var(--light-gray);
  color: var(--dark-color);
}

.lux-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-color);
  line-height: 1.2;
}
.lux-title .highlight {
  background: var(--accent-gradient-button);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FF5733; /* Fallback for non-supporting browsers */
}

.lux-subtext {
  font-size: 1.25rem;
  color: var(--gray);
  line-height: 1.7;
}

.lux-btn {
  background: var(--accent-gradient-button);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.lux-btn:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.lux-image-section {
  position: relative;
  height: 100%;
}

.lux-image-overlay {
  position: relative;
  height: 100%;
  background: var(--accent-gradient-horizontal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lux-img {
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive */
/* @media (max-width: 992px) {
  .lux-title {
    font-size: 3rem;
    text-align: center;
  }
  .lux-subtext {
    text-align: center;
  }
  .lux-btn {
    display: block;
    margin: 2rem auto 0;
  }
  .lux-image-section {
    padding: 2rem 1rem;
  }
} */


/* Services Section */
.services-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background-image: url(../images/brbg.png);
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

.services-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-accordion {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  padding: 1.5rem !important;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--accent-gradient-button) !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.service-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.service-icon {
  width: 30px;
}

.accordion-body {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
  color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
}

.accordion-body ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.accordion-body li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.accordion-body li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
}

/* Recent Work Section */
.recent-work-section {
  padding: 6rem 0;
}

.work-card {
  display: block;
  color: var(--dark-color);
  transition: var(--transition);
  height: 100%;
}

.work-card:hover {
  transform: translateY(-10px);
  color: var(--primary-color);
}

.work-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1/1;
}

.work-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 67, 173, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.work-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-card:hover .work-image {
  transform: scale(1.1);
}

.work-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.graphic-design .design-images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding: 1rem;
}

.graphic-design .design-image {
  width: 33%;
  height: 70%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.graphic-design .design-image.middle {
  height: 80%;
  margin: 0 -15px;
  z-index: 1;
}

.work-card:hover .design-image {
  transform: translateY(-10px);
}

/* Technology Section */
.technology-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-image: url(../images/brbg.png);
}

.tech-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

.tech-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.tech-item {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tech-item:hover::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--accent-gradient);
  z-index: -1;
  border-radius: inherit;
  animation: gradientBorder 3s linear infinite;
  background-size: 200% 200%;
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tech-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.tech-name {
  color: var(--white);
  font-weight: 600;
  display: block;
}

/* Industries Section */
.industries-section {
  padding: 6rem 0;
  background-color: #f5f7ff;
}

.industries-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.industries-list {
  margin-top: 2rem;
}

.industry-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1.25rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-left-color: var(--primary-color);
}

.industry-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.industry-item h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.industry-item p {
  margin-bottom: 0;
  color: var(--gray);
}

.cta-box {
  background: var(--accent-gradient);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: center;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 1rem;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(37, 67, 173, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-info h5 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.author-info p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--gray);
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.contact-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.7);
}

.contact-content {
  background-color: rgba(34, 46, 86, 0.9);
  padding: 3rem;
  border-radius: 20px;
  max-width: 600px;
  color: var(--white);
}

.contact-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form textarea {
  min-height: 150px;
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent-gradient);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 6rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--accent-gradient);
}

.footer-logo {
  width: 180px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-gradient);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  height: 50px;
  margin-bottom: 1rem;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.footer-social {
  margin-top: 2rem;
}

.footer-social h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Animations *
[data-aos="fade-up"] {
  transform: translateY(50px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-down"] {
  transform: translateY(-50px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos="fade-left"] {
  transform: translateX(50px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}
 /* Preload body lock *
 body.preload {
  overflow: hidden;
  height: 100vh;
}

/* Preloader container */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Spinner */
.loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(37, 67, 173, 0.1);
  border-top-color: #2543ad; /* fallback for var(--primary-color) */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Progress bar */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #2543ad; /* fallback for var(--primary-color) */
  width: 0%;
  transition: width 0.3s ease;
}



/* Responsive Styles */
/* @media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .banner {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    padding: 0.5rem 0 !important;
  }

  .nav-link::after {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .banner {
    font-size: 2rem;
    gap: 15px;
  }
  
  .banner .circle {
    width: 30px;
    height: 30px;
  }
  
  .industries-image {
    margin-bottom: 3rem;
  }
  
  .accordion-body ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 4rem 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-title::after {
    width: 60px;
    bottom: -5px;
  }
  
  .about-banner {
    margin: 3rem -20px;
    width: calc(100% + 40px);
  }
  
  .banner {
    font-size: 1.5rem;
    gap: 10px;
  }
  
  .banner .circle {
    width: 20px;
    height: 20px;
  }
  
  .content-description,
  .bottom-description {
    font-size: 1.1rem;
  }
  
  .service-header h3 {
    font-size: 1.1rem;
  }
  
  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
  }
  
  .tech-logo {
    width: 50px;
    height: 50px;
  }
  
  .tech-name {
    font-size: 0.875rem;
  }
  
  .contact-content {
    padding: 2rem;
  }
  
  .footer {
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links {
    margin-bottom: 2rem;
  }

  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .banner {
    font-size: 1.2rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }
  
  .feature-icon img {
    width: 40px;
  }
  
  .rotating-text-container {
    width: 150px;
    height: 150px;
  }
  
  .footer-logo {
    width: 150px;
  }
} */


/* work grid css  */
/* 
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Adjust minmax as needed *
  gap: 1rem;
  padding: 1rem;
}
.masonry-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.masonry-grid-item:hover {
  transform: scale(1.05);
}
.masonry-grid-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.masonry-grid-item.expanded {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    transition: none; /* Disable transform transition *
}

.masonry-grid-item.expanded img {
    max-height: 80vh;
    max-width: 80vw;
    transition: none; /* Disable opacity transition *
}

.masonry-grid-item.expanded::after {
    content: ''; /* Empty content, but needed for the overlay *
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent overlay *
    z-index: -1; /* Place overlay behind the image *
}


@media (max-width: 768px) {
  .masonry-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
} */

