/* General Styles */
/* Reset margin and padding on the body and html elements */
html, body {
    margin: 0;
    padding: 0;
    width: 100%; /* Ensure full width */
}
html{
  scroll-behavior:smooth;
}
nav {
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    align-items: center;
  
    width: 100%; /* Ensure it spans the full width */
    position: relative;
    left: -10px; /* Adjust this value to move it further left */
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #0a0a0a; /* Dark background */
    color: white;
    text-align: center;
    position: relative;
  
    box-shadow: inset 0 0 30px rgba(255, 77, 148, 0.3), inset 0 0 50px rgba(255, 184, 77, 0.3); /* Subtle glowing effect at the edges */
}

/* Header */
header {
    padding: 100px 20px;
}

header {
  background-color: #000;
  padding: 10px 20px;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* Brighter Gradient Text with Increased Opacity */
.gradient-text {
    background: linear-gradient(45deg, rgba(255, 77, 148, 0.3), rgba(255, 184, 77, 0.3)); /* Increased opacity for stronger gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    font-weight: 700;
}

/* Button with Brighter Gradient and Increased Opacity */






/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px 20px;
}

.stat-item {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Glowing Elements */
.glow-box {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 0, 150, 0.3);
    box-shadow: 0 0 80px rgba(255, 0, 150, 0.8);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s infinite alternate;
}

/* Glowing Positioning */
.glow-box:nth-child(1) { top: 10%; left: 10%; }
.glow-box:nth-child(2) { top: 20%; right: 10%; }
.glow-box:nth-child(3) { bottom: 15%; left: 5%; }
.glow-box:nth-child(4) { bottom: 10%; right: 5%; }

/* Glowing Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0.1; }
}

/* Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3); /* Adjust opacity here (0.3 for less opacity) */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}.header-dark {
    background: rgba(0, 0, 0, 1); /* Darker background */
}


.logo img {
    height: 50px;
    width: auto;
}

/* General Navigation Styles */



/* Reset default margin/padding */
/* SERVICES SECTION BASE STYLES */
.services-section {
  background-color: #0d0f12;
  padding: 20px 20px 40px 20px;
  color: #fff;
  text-align: center;
}

.section-title {
 
 
  font-weight: bold;
  color: white;
}

.services-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.service-box {
  flex: 1 1 300px;
  display: flex;
}

.services-left,
.service-card {
  background-color: #161a20;
  padding: 2rem;
  border-radius: 8px;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.services-left {
  background-color: rgba(255, 255, 255, 0.05);
  align-items: flex-start;
  text-align: left;
}

.feature-heading {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.btn-outline {
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}

.icon {
  height: 40px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  text-align: center;
}

.service-card p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}

/* INDUSTRIES SECTION (optional context) */
.industries-section {
  padding:20px 20px 47px 20px;
  background: #111;
  /* padding: 60px 20px; */
  text-align: center;
}

.section-title {
  margin-bottom: 40px;
  color: white;
  font-weight: bold;
}
/* Desktop view: Arrange 4 boxes in one row */
@media (min-width: 1200px) {
  .services-wrapper {
    flex-wrap: nowrap;
    gap: 1.5rem;
  }

  .service-box {
    flex: 1 1 25%; /* Each takes 25% width */
    max-width: 25%;
  }

  .services-left,
  .service-card {
    height: 100%;
    width: 100%;
  }
}


/* =========================
   RESPONSIVE BREAKPOINTS
============================ */

/* Tablets */
@media (max-width: 992px) {
  .services-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .service-box {
    flex: 1 1 45%;
  }

  .feature-heading {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* =========================
   MOBILE VIEW FIXES
============================ */

/* =========================
   MOBILE VIEW FIXES
============================ */

/* Mobiles */
@media (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .service-box {
    flex: 1 1 100%;
    max-width: 100%; /* Ensure each box takes full width */
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    height: 400px; /* Fixed height for all boxes */
  }

  /* Ensuring the services-left and service-card are the same size */
  .services-left,
  .service-card {
    width: 100%; /* Ensure both boxes take full width */
    height: 100%; /* Ensure both boxes have the same height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* Ensures padding does not affect the size */
    padding: 1rem;
    text-align: center;
  }

  /* Feature heading style */
  .feature-heading {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  /* Full width button on mobile */
  .btn-outline {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
  }

  /* Icon styling */
  .icon {
    height: 36px;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }
}

  
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-items: center;
  }
  
  .industry-card {
    perspective: 1000px;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
  }
  
  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .industry-card:hover .card-inner {
    transform: rotateY(180deg);
  }
  
  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: #161a20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .card-front {
    z-index: 2;
  }
  
  .card-back {
    transform: rotateY(180deg);
    background-color: #222;
    color: white;
    font-size: 1.2rem;
  }
  
  .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .card-front h3 {
    color: white;
    font-size: 1rem;
    margin: 0;
  }
  .navbar {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
  }
  
/* Logo */
.logo {
    margin-right: 20px; /* Space between logo and nav links */
}
.nav-right {
    display: flex;
    align-items: center;
    margin-left: 0; /* Pushes it to the right */
    justify-content: flex-end;
    gap: 20px;
   
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-right {
        margin-left: 0;
        justify-content: flex-end; /* Align to the right on smaller screens */
        gap: 10px;
    }

  
}



/* Navigation links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;          /* Center nav container itself */
}



.contact-btn {
  padding: 8px 18px;
  border: 2px solid transparent;
  background: linear-gradient(#000, #000) padding-box,
              linear-gradient(135deg, #584688, #D24195, #F27236) border-box;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  left: -24px;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #584688, #D24195, #F27236) border-box,
              linear-gradient(#000, #000) padding-box;
  color: white;
}

.contact-btn:hover {
  background:
    linear-gradient(135deg, #584688, #D24195, #F27236) border-box,
    linear-gradient(#000, #000) padding-box;
  color: white;
}

/* Styling for each navigation item */
.nav-links li {
    margin-left: 20px;

}

/* Link styling */
.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Hover effect for links */
.nav-links li a:hover {
    transform: scale(0.95); /* Slightly zoom out the link */
    transition: transform 0.3s ease;
}/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 150px 10px; /* Reduced the left and right padding */
  color: white;
  min-height: 70vh; /* Adjusted for better visual impact */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: no-repeat center center;
  background-size: cover; /* Ensures the background image scales down */
  background-position: center center; /* Keeps the image centered */
}

/* Responsive background image that shrinks with screen size */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-bg) no-repeat center center;
  background-size: cover; /* Ensures the image scales down */
  background-position: center center; /* Keeps the image centered */
  opacity: 0.5;
  z-index: -1;
  transition: background-size 0.3s ease-in-out, background-position 0.3s ease-in-out;
}

/* Gradient text */
.titlehead {
  background: linear-gradient(135deg, #584688, #D24195, #F27236); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subheading */
.titlebelow {
  color: white;
  font-weight: bolder;
}

/* Heading styles */
.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Paragraph styles */
.hero p {
  font-size: 20px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  margin-top: 0;
}

/* Call to Action Button */
.btn {
  padding: 10px 20px;
  font-weight: bold;
  font-size: 16px;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  border-radius: 50px;
  border: 2px solid #D24195;
  background: linear-gradient(black, black) padding-box;
  transition: 0.3s ease-in-out;
  position: relative;
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #584688, #D24195, #F27236);
  border: none;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .hero {
      padding: 100px 16px; /* Adjusted padding for tablet */
      min-height: 65vh;
      background-size: contain;
      background-position: center;
  }

  .hero h1 {
      font-size: 26px;
  }

  .hero p {
      font-size: 16px;
  }

  .btn {
      font-size: 14px;
      padding: 8px 18px;
  }
}

@media (max-width: 480px) {
  .hero {
      padding: 80px 10px; /* Reduced padding on mobile */
      min-height: 60vh;
      background-size: contain;
      background-position: center;
  }

  .hero h1 {
      font-size: 22px;
  }

  .hero p {
      font-size: 14px;
  }

  .btn {
      font-size: 13px;
      padding: 7px 16px;
  }
}





/* About Section */
.about {
    padding: 20px 20px 35px 20px;
    text-align: center;
    background: #111;
    color: white;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.about-text .highlight {
    background: linear-gradient(135deg, #584688, #D24195, #F27236); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    font-weight: bold;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #898989;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    width: 300px; /* Adjust as needed */
}

.about-image-grid img {
    max-width: 100%; /* Ensures the images are responsive */
    height: auto;    /* Maintains aspect ratio */
    border-radius: 10px;
}

.about-image-grid img:nth-child(1) {
    grid-column: span 2;
}

.about-image-grid img:nth-child(2),
.about-image-grid img:nth-child(3) {
    /* You can leave this as is or add specific size control */
}



/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
    }
    .left-image{
      margin-top:20px;
    }
}

.about-image-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
  .about-image-layout img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .right-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Responsive (optional) */
  @media (max-width: 768px) {
    .about-image-layout {
      flex-direction: column;
    }
  
    .right-images {
      flex-direction: row;
    }
  
    .about-image-layout img {
      width: 100px;
      height: auto;
    }
  }
  

/* Portfolio */
.portfolio-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-gallery img {
    width: 30%;
    border-radius: 10px;
    transition: 0.3s;
}

.portfolio-gallery img:hover {
    transform: scale(1.05);
}

/* Contact */
.contact {
    background: #000; /* or your theme background */
    color: white;
    padding: 60px 20px;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .contact-text {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact-text p {
    font-size: 1rem;
    color: #ccc;
  }
  
  #enquiry-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  #enquiry-form input,
  #enquiry-form textarea {
    padding: 12px 15px;
    background: #161a20;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
  }
  
  #enquiry-form textarea {
    resize: vertical;
    min-height: 50px;
  }
  #enquiry-form .btn {
    background: linear-gradient(135deg, #584688, #D24195, #F27236); /* Peach gradient */
    color: color;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  #enquiry-form .btn:hover {
    background: linear-gradient(135deg, #584688, #D24195, #F27236); /* Lighter gradient on hover */
  }
  
  

  /* === Desktop Version Styles === */
.contact-section {
  background: linear-gradient(#1e1c26cc, #1e1c26cc), url('./photo/sliders/ChatGPT%20Image%20Apr%209,%202025,%2004_19_18%20PM.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 30px;
  box-sizing: border-box;
  min-height: 100vh;
}

.contact-text {
  flex: 1 1 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.contact-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.contact-form {
  flex: 1 1 300px;
  max-width: 500px;
  background: rgba(30, 28, 38, 0.85);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 300px;
}
.hamburger{
  display: none;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  background: #161a20;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  background: linear-gradient(135deg, #584688, #D24195, #F27236);
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1rem;
}

.contact-form .btn:hover {
  background: linear-gradient(135deg, #F27236, #D24195, #584688);
}

/* === Responsive Toggle === */
.mobile-contact {
  display: none;
  background: linear-gradient(#1e1c26cc, #1e1c26cc), url('./photo/sliders/ChatGPT%20Image%20Apr%209,%202025,%2004_19_18%20PM.png') no-repeat center center;
  background-size: cover;
  padding: 40px 20px;
  box-sizing: border-box;
  color: white;
}

/* Show mobile layout only on small screens */
@media (max-width: 767px) {
  .desktop-contact {
    display: none !important;
  }

  .mobile-contact {
    display: block !important;
  }
}

/* Image Slider */
.slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Scrolling Experience Section */
.experience {
    text-align: center;
    padding: 50px 20px;
    background: #222;
    color: white;
}

.scrolling-container {
    display: flex;
    flex-direction: column;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.scrolling-container p {
    white-space: nowrap;
    animation: scrollText 8s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

/* Responsive */

@media (max-width: 768px) {
  /* On mobile, display hamburger and hide nav-links initially */
  .hamburger {
      display: block;
      position: absolute;
      top: -13px;                /* Adjust vertical position */
      right: 30px;              /* Move hamburger to the right-most corner */
      z-index: 999;             /* Ensure hamburger is above other content */
  }

  /* Navigation Links */
  .nav-links {
      display: none;            /* Initially hidden */
      flex-direction: column;
      background: rgba(0, 0, 0, 0.9); /* Semi-transparent black background */
      position: absolute;
      top: 60px;                /* Position it below the hamburger */
      right: 0;                 /* Align to the right */
      width: 100%;              /* Full width */
      padding: 10px;
      border-radius: 0 0 8px 8px;
      z-index: 998;             /* Ensure it stays behind the hamburger */
  }

  /* When nav-links are active (visible) */
  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      margin: 10px 0;            /* Spacing between list items */
      list-style: none;          /* Remove bullet points */
      font-size: 1rem;           /* Font size */
      color: white;
      text-align: center;        /* Center align text */
  }

  /* Hide desktop contact button */
  .desktop-contact {
      display: none;
  }

  /* Mobile Contact Button */
  .mobile-contact {
      display: block;
      padding: 8px 18px;
      border: 2px solid transparent;
      background: linear-gradient(#000, #000) padding-box,
                  linear-gradient(135deg, #584688, #D24195, #F27236) border-box;
      color: white;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      margin-top: 10px;           /* Space below navigation */
      text-align: center;
  }

  /* Hover effect for mobile contact button */
  .mobile-contact:hover {
      
      color: white;
  }

  .mobile-contact:focus, .mobile-contact:active {
      outline: none;             /* Remove focus outline */
  }

  /* Portfolio Gallery */
  .portfolio-gallery {
      display: flex;
      flex-direction: column;    /* Stack images vertically on mobile */
      gap: 1rem;                 /* Add spacing between images */
  }

  /* Portfolio images */
  .portfolio-gallery img {
      width: 90%;                /* Resize images to fit mobile view */
      margin: 0 auto;            /* Center images */
      border-radius: 8px;        /* Rounded corners */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for images */
  }

  /* Active state for hamburger when clicked */
  .hamburger.active + .nav-links {
      /* You can add additional styling here if needed when hamburger is active */
  }
}


/* Portfolio Container with Background Image */
.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
   
   
    
}
.portfolio {
  padding:20px 20px 40px 20px;
    position: relative;
    background: url('./photo/sliders/emily-bernal-v9vII5gV8Lw-unsplash.jpg') no-repeat center center/cover;
}
/* .portfolio h2{
  margin-bottom: 20px;
} */

/* Background overlay */
.portfolio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black; /* You can change this to any color */
    opacity: 0.6; /* Adjust opacity as needed */
    z-index: 0; /* Keeps overlay behind content */
}

/* Ensure content inside portfolio is above overlay */
.portfolio * {
    position: relative;
    z-index: 1;
}
h2 {
    position: relative;
    display: inline-block;
    font-size: 24px; /* Adjust as needed */
}

h2::after {
    content: "";
    display: block;
    width: 60px; /* Small underline width */
    height: 3px; /* Thickness of underline */
    background: linear-gradient(90deg, #584688, #D24195, #F27236); /* Gradient color */
    position: absolute;
    bottom: -8px; /* Adjust spacing */
    left: 50%;
    transform: translateX(-50%);
}

/* Portfolio Item */
.portfolio-item {
 
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
   /* Adds a subtle background to make images more visible */
    
    border-radius: 10px;
}

.portfolio-image {

    background-color: white;
    display: flex; /* Enables flexbox */
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
    border-radius: 10px;
    overflow: hidden; /* Prevents overflow */
}

/* Hover Effect */
.portfolio-item img:hover {
    transform: scale(1.05);
    opacity: 1;
}


/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.modal img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.testimonials {
  text-align: center;
  padding:20px 20px 47px 20px;
  background: #0d0f12; /* Black background */
}

.section-title {


  font-weight: bold;
  color: white;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background: #161a20;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 450px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
}

.testimonial-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  padding: 2px;
  background: linear-gradient(135deg, #584688, #D24195, #F27236); 
  border: none;
}


.testimonial-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.testimonial-content h3 span {
  font-size: 13px;
  color: #bbb;
  display: block;
  margin-top: 4px;
}

.testimonial-content p {
  font-size: 14px;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.5;
}


  .testimonial-card i {
    font-size: 24px;
    position: absolute;
    right: 15px;
    top: 15px;
    color:#F27236;
  }
  
  /* color: transparent; */


@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
}
.footer {
  background-color: #121016;
  color: white;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand,
.footer-newsletter,
.footer-contact {
  flex: 1 1 250px;
}
.footer-brand{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  max-width: 320px;
  font-family: 'Poppins', sans-serif;
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
}
.footer-brand h2 {
  font-size: 28px;
  font-weight: 600;
}

.footer-brand sup {
  font-size: 16px;
  color: #f7a6b8;
}

.footer-brand p {
  margin-top: 10px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.5;
}

.footer-newsletter .newsletter-title {
  font-size: 12px;
  color: #ccc;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.5;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 100%;
}

.subscribe-form input[type="email"] {
  padding: 10px;
  flex: 1;
  border: 1px solid #444;
  background: transparent;
  color: white;
  font-size: 14px;
  border-radius: 5px;
  outline: none;
}

.subscribe-form button {
  padding: 10px 20px;
  background: linear-gradient(135deg, #584688, #D24195, #F27236);
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-contact p {
  font-size: 12px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 5px;
}

.social {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social p {
  margin-bottom: 0;
  padding-bottom: 10px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 20px;
  margin-top: 0;
 justify-content: center;

  
}

.social-icons i {
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: #f7a6b8;
}

.call .number {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 30px auto 0;
  font-size: 12px;
  color: #999;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand,
  .footer-newsletter,
  .footer-contact {
    flex: 1 1 100%;
    text-align: center;
  }

  .subscribe-form {
    flex-direction: column;
    width: 100%;
  }

  .subscribe-form input[type="email"],
  .subscribe-form button {
    width: 100%;
    margin: 5px 0;
  }

  .social-icons {
    justify-content: center;
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links a {
    font-size: 14px;
  }
  .footer-brand {
    text-align: center;
    width: 100%;
  }

  .footer-brand img {
    display: block;
    margin: 0 auto;
  }

  .footer-brand p {
    margin-top: 10px; /* Add a little space between the logo and the text */
  }
}


.reach-us-section {
  position: relative;
  background: url('./photo/sliders/—Pngtree—illustrated 3d concept of a_6298119.jpg') no-repeat center center / cover;
  min-height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 47px 20px;
  overflow: hidden;
}

.reach-us-section::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.reach-us-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.reach-us-container h2 {
  color: white;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.reach-us-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.reach-us-buttons .btn {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  min-width: 220px;
  cursor: pointer;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
}

.reach-us-buttons .btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.07);
}


.card-back.graphics-back .graphics-title {
  color: white;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: bold;
}

.card-back.graphics-back .graphics-list {
  list-style-type: disc;
  padding-left: 53px;
  margin: 0;
  width: 100%;
  text-align: left;
}

.card-back.graphics-back .graphics-list li {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 6px;
  position: relative;
}
