/* Base Styles and Color Variables */
:root {
    --primary-color: #ff4d8f; /* Pink */
    --secondary-color: #000000; /* Black */
    --accent-color: #ff1a75; /* Brighter pink for hover/accent */
    --text-color: #333333;
    --light-color: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #555555;
    --transition: all 0.3s ease-in-out;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  h1 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
  }
  
  h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: skewX(-20deg);
    transition: var(--transition);

  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 15px;
  }
  
  h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--primary-color);
    transform: skewY(45deg);
  }
  
  h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  /* Links and Buttons */
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
  }
  
  a:hover {
    color: var(--accent-color);
  }
  
  a:not(nav a):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
  }
  
  a:not(nav a):hover:after {
    width: 100%;
  }
  
  button, 
  input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    transform: skewX(-5deg);
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  button:hover, 
  input[type="submit"]:hover {
    background-color: var(--accent-color);
    transform: skewX(-5deg) translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Layout */
  section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  section:nth-child(odd) {
    background-color: var(--light-gray);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header Styles */
  /* header {
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
  }
  
  header h1 {
    color: var(--light-color);
    margin-bottom: 1rem;
    transform: perspective(300px) rotateX(5deg);
  }
  
  header p {
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 0.5rem;
    margin-top: 1pc;
  }
  
  header a {
    color: var(--primary-color);
  }
  
  header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--secondary-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  
  /* Hero Section */
  /* #hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: var(--light-color);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
  }
  
  #hero h2 {
    color: var(--light-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  #hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
  }
  
  #hero a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    transform: skewX(-5deg) translateZ(0);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 77, 143, 0.3);
  }
  
  #hero a:hover {
    background-color: var(--accent-color);
    transform: skewX(-5deg) translateY(-5px) translateZ(0);
    box-shadow: 0 8px 25px rgba(255, 77, 143, 0.5);
  }
  
  #hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(255, 77, 143, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 77, 143, 0.1) 0%, transparent 50%);
  }
 */ 

 /* Enhanced Header */
header {
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
    background-image: linear-gradient(45deg, var(--secondary-color), #444, var(--secondary-color));
    background-size: 200% 200%;
  }
  
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  header h1 {
    color: var(--light-color);
    margin-bottom: 1rem;
    transform: perspective(300px) rotateX(5deg);
    animation: titlePulse 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  
  @keyframes titlePulse {
    0%, 100% { transform: perspective(300px) rotateX(5deg) scale(1); }
    50% { transform: perspective(300px) rotateX(5deg) scale(1.05); }
  }
  
  header p {
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 0.5rem;
    margin-top: 1pc;
    animation: fadeInUp 1s ease-out forwards;
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.9; transform: translateY(0); }
  }
  
  header a {
    color: var(--primary-color);
    position: relative;
    transition: var(--transition);
  }
  
  header a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  header a:hover::after {
    width: 100%;
  }
  
  header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--secondary-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    animation: wavyMotion 3s ease-in-out infinite;
  }
  
  @keyframes wavyMotion {
    0%, 100% { clip-path: polygon(0 0, 100% 0, 50% 100%); }
    50% { clip-path: polygon(0 0, 100% 0, 50% 90%, 0 100%); }
  }
  
  /* Enhanced Hero Section */
  #hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: var(--light-color);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  #hero h2 {
    color: var(--light-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: glowPulse 3s infinite alternate;
  }
  
  @keyframes glowPulse {
    from { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 10px var(--primary-color); }
  }
  
  #hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeIn 1.5s ease-out forwards;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Hero Button with enhanced animation */
  #hero a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    transform: skewX(-5deg) translateZ(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(255, 77, 143, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  #hero a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
  }
  
  #hero a:hover::before {
    left: 100%;
  }
  
  #hero a:hover {
    background-color: var(--accent-color);
    transform: skewX(-5deg) translateY(-5px) translateZ(0);
    box-shadow: 0 15px 25px rgba(255, 77, 143, 0.5);
  }
  
  /* Hero floating animation */
  #hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,181.3C960,181,1056,203,1152,208C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    animation: floatUp 3s ease-in-out infinite;
  }
  
  @keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
  
  /* Floating elements in hero */
  #hero .floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.5;
  }
  
  #hero .floating-element:nth-child(1) {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
  }
  
  #hero .floating-element:nth-child(2) {
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    border-radius: 50%;
    top: 60%;
    left: 75%;
    animation-delay: 1s;
  }
  
  #hero .floating-element:nth-child(3) {
    width: 20px;
    height: 20px;
    background-color: var(--light-color);
    border-radius: 50%;
    top: 30%;
    left: 80%;
    animation-delay: 2s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
  }
  
  #hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(255, 77, 143, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 77, 143, 0.1) 0%, transparent 50%);
    animation: backgroundGlow 8s ease infinite alternate;
  }
  
  @keyframes backgroundGlow {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
  }
  
  /* Add particles to hero section */
  @keyframes particle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
  }
  
  .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--light-color);
    border-radius: 50%;
    bottom: 0;
    animation: particle 10s linear infinite;
  }
  
  .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
  .particle:nth-child(2) { left: 20%; animation-delay: 2s; }
  .particle:nth-child(3) { left: 30%; animation-delay: 4s; }
  .particle:nth-child(4) { left: 40%; animation-delay: 6s; }
  .particle:nth-child(5) { left: 50%; animation-delay: 8s; }
  .particle:nth-child(6) { left: 60%; animation-delay: 1s; }
  .particle:nth-child(7) { left: 70%; animation-delay: 3s; }
  .particle:nth-child(8) { left: 80%; animation-delay: 5s; }
  .particle:nth-child(9) { left: 90%; animation-delay: 7s; }
  .particle:nth-child(10) { left: 95%; animation-delay: 9s; }


  
  /* Navigation */
  nav {
    background-color: var(--light-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
  }
  
  nav li {
    margin: 0;
    position: relative;
  }
  
  nav a {
    display: block;
    padding: 1.5rem 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    transition: var(--transition);
  }
  
  nav a:hover {
    color: var(--primary-color);
  }
  
  nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
  }
  
  nav a:hover::after {
    width: 70%;
  }
  
  /* About Section */
  #about {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
  }
  
  #about p {
    max-width: 800px;
    text-align: center;
  }
  
  #about strong {
    color: var(--primary-color);
  }
  
  /* Mission & Vision Section */
  #mission-vision {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  #mission-vision div {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  #mission-vision div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  #mission-vision h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  #mission-vision div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
  }
  
  #mission-vision div:hover::before {
    transform: scaleY(1);
  }
  
  /* Services Section */
.services-container {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
  }
  
  #services h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    font-size: 1.5rem;
  }
  
  #services h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  #services ul {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 2rem;
    padding-left: 0;
  }
  
  #services li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  #services li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
  }
  
  /* Optional Title and Intro */
  .section-title {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .section-intro {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .services-container {
      padding: 1.5rem;
      max-width: 100%;
    }
    
    #services h3 {
      font-size: 1.3rem;
    }
    
    #services li {
      font-size: 0.9rem;
    }
  }
  
  /*  Our Designs Sections */
  #our-designs {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #carry{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
  }
  
  #portfolio ul, #our-designs ul {
    list-style-type: none;
  }
  
  #portfolio li, #our-designs li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
  }
  
  #portfolio li::before, #our-designs li::before {
    content: '\f0c8';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 0.7rem;
  }
  
  #case-studies div, #our-designs div {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    width: 100%;
    max-width: 800px;
  }
  
  #case-studies div:hover, #our-designs div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

/* another */

  #portfolio, #case-studies{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
  }
  
  #portfolio ul, #our-designs ul {
    list-style-type: none;
  }
  
  #portfolio li, #our-designs li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
  }
  
  #portfolio li::before, #our-designs li::before {
    content: '\f0c8';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 0.7rem;
  }
  
  #case-studies div, #our-designs div {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    width: 100%;
    max-width: 800px;
  }
  
  #case-studies div:hover, #our-designs div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Gallery Section */
  /* Modern Gallery Styling */
.gallery-container {
    padding: 5rem 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
  }
  
  .gallery-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 10% 10%, rgba(var(--primary-rgb), 0.03) 0%, transparent 30%),
      radial-gradient(circle at 90% 90%, rgba(var(--accent-rgb), 0.03) 0%, transparent 30%);
    z-index: 1;
  }
  
  .gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
  }
  
  .gallery-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
  }
  
  .gallery-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 2rem;
  }
  
  .gallery-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
  }
  
  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
  }
  
  .gallery-category {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .category-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .category-tag {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
  }
  
  .category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    position: relative;
  }
  
  .gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }
  
  .gallery-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .gallery-item-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
  }
  
  .item-description {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
  }
  
  .item-description h4 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
    color: white;
  }
  
  .item-description p {
    margin: 0 0 1rem;
    opacity: 0.8;
  }
  
  .view-project {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .view-project:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
  }
  
  .gallery-item-container:hover {
    transform: translateY(-8px);
  }
  
  .gallery-item-container:hover .gallery-image {
    transform: scale(1.05);
  }
  
  .gallery-item-container:hover .item-overlay {
    opacity: 1;
  }
  
  .gallery-item-container:hover .item-description {
    transform: translateY(0);
  }
  
  .item-caption {
    padding: 0 0.5rem;
  }
  
  .item-caption h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .item-tags {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
  }
  
  .gallery-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background-color: var(--secondary-color);
    border-radius: 12px;
    color: white;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }
  
  .gallery-cta p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  
  .cta-button {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
  }
  
  .cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.5);
    color: white;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .gallery-title {
      font-size: 2rem;
    }
    
    .gallery-items {
      grid-template-columns: 1fr;
    }
    
    .gallery-cta {
      padding: 2rem 1rem;
    }
    
    .gallery-cta p {
      font-size: 1.2rem;
    }
  }
  
  /* Process Section */
  #process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  #process div {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  #process div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  
  #process div:hover {
    transform: translateY(-10px);
  }
  
  #process div:hover::before {
    transform: scaleX(0.05);
  }
  
  #process div:hover h3 {
    color: var(--accent-color);
  }
  
  #process h3 {
    display: flex;
    align-items: center;
    transition: var(--transition);
  }
  
  #process h3::before {
    content: attr(data-number);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    margin-right: 1rem;
    font-weight: bold;
  }
  
  /* Stats Section */
  #stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 3rem;
  }
  
  #stats div {
    flex: 1;
    min-width: 200px;
  }
  
  #stats h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  /* Team Section */
  #team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
/* Team Section (continued) */
#team div {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  #team div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  #team div:hover h3 {
    color: var(--primary-color);
  }
  
  #team div::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
  }
  
  #team div:hover::after {
    transform: scaleX(1);
  }
  
  #team h3 {
    transition: var(--transition);
  }
  
  #team p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  /* Testimonials Section */
  #testimonials {
    text-align: center;
  }
  
  #testimonials blockquote {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
  }
  
  #testimonials blockquote:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  #testimonials blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
  }
  
  #testimonials cite {
    display: block;
    font-style: normal;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
  }
  
  /* Awards Section */
  #awards ul {
    list-style-type: none;
    max-width: 800px;
    margin: 0 auto;
  }
  
  #awards li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
  }
  
  #awards li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  #awards li::before {
    content: '\f559';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.5rem;
  }
  
  /* Partners Section */
  /* Enhanced Partners Section Styling */
  #partners {
    padding: 2rem 0;
    text-align: center;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.partner-item {
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-item:hover .partner-logo img {
    transform: scale(1.1);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.partner-item:nth-child(1) {
    animation-delay: 0s;
}

.partner-item:nth-child(2) {
    animation-delay: 0.5s;
}

.partner-item:nth-child(3) {
    animation-delay: 1s;
}

.partner-item:nth-child(4) {
    animation-delay: 1.5s;
}

@media (max-width: 768px) {
    .partner-item {
        padding: 0.5rem;
    }
    .partner-logo {
        width: 60px;
        height: 60px;
    }
}
  /* Blog/News Section */
  #blog {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #blog article {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    width: 100%;
    max-width: 800px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  #blog article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  #blog article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
  }
  
  #blog article:hover::before {
    transform: scaleY(1);
  }
  
  #blog h3 {
    margin-top: 0;
  }
  
  #blog a {
    font-weight: bold;
  }
  
  /* Events/Workshops Section */
  #events div {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  #events div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  #events div::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
  }
  
  #events div:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  #events h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  #events p:nth-of-type(1) {
    font-weight: bold;
  }
  
  /* FAQ Section */
  #faq {
    max-width: 800px;
    margin: 0 auto;
  }
  
  #faq details {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }
  
  #faq details:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  #faq summary {
    padding: 1.5rem;
    background-color: var(--light-color);
    cursor: pointer;
    font-weight: bold;
    position: relative;
    outline: none;
  }
  
  #faq summary::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
  }
  
  #faq details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  #faq details p {
    padding: 1.5rem;
    background-color: var(--light-gray);
    margin: 0;
  }
  
  /* Call to Action Section */
  section:has(> h2:first-child:contains("Ready to Work with Us?")) {
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
    padding: 4rem 2rem;
  }
  
  section:has(> h2:first-child:contains("Ready to Work with Us?")) h2 {
    color: var(--light-color);
  }
  
  section:has(> h2:first-child:contains("Ready to Work with Us?")) a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 1rem;
    transition: var(--transition);
  }
  
  section:has(> h2:first-child:contains("Ready to Work with Us?")) a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 143, 0.3);
  }
  
  /* Contact Section */
  #contact {
    max-width: 800px;
    margin: 0 auto;
  }
  
  #contact form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  #contact label {
    font-weight: bold;
    color: var(--secondary-color);
  }
  
  #contact input, 
  #contact textarea {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.3rem;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    transition: var(--transition);
  }
  
  #contact input:focus, 
  #contact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 77, 143, 0.2);
  }
  
  #contact button {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: 1rem;
    width: 100%;
  }
  
  #contact button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 143, 0.3);
  }
  
  /* Resources Section */
  #resources ul {
    list-style-type: none;
    margin-left: 0;
  }
  
  #resources li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }
  
  #resources li:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  #resources a {
    display: block;
    position: relative;
    padding-left: 2rem;
  }
  
  #resources a::before {
    content: '\f1c1';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
  }
  
  /* Newsletter Section */
  #newsletter {
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 4rem 2rem;
  }
  
  #newsletter h2 {
    color: var(--light-color);
  }
  
  #newsletter form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
  }
  
  #newsletter input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px 0 0 4px;
  }
  
  #newsletter button {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 0 25px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
  }
  
  #newsletter button:hover {
    background-color: var(--accent-color);
  }
  
  /* Footer Section */
  footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
  }
  
  footer p {
    margin-bottom: 1rem;
  }
  
  footer a {
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  }
  
  /* Icons */
  .contact-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .contact-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
  }
  
  .contact-icons a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 77, 143, 0.3);
  }
  
/* Responsive Styles (continued) */
@media (max-width: 1024px) {
    h1 {
      font-size: 2.2rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    h3 {
      font-size: 1.3rem;
    }
    
    #hero {
      padding: 6rem 2rem;
    }
    
    #hero h2 {
      font-size: 2.2rem;
    }
    
    section {
      padding: 4rem 1.5rem;
    }
    
    #process div, #mission-vision div, #team div {
      min-width: 280px;
    }
  }
  
  @media (max-width: 768px) {
    header {
      padding: 1.5rem 1rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.6rem;
    }
    
    h3 {
      font-size: 1.2rem;
    }
    
    #hero {
      padding: 5rem 1.5rem;
    }
    
    #hero h2 {
      font-size: 1.8rem;
    }
    
    #hero p {
      font-size: 1rem;
    }
    
    
    
    section {
      padding: 3rem 1rem;
    }
    
    #process div, #mission-vision div, #team div, #case-studies div {
      min-width: 100%;
    }
    
    #newsletter form {
      flex-direction: column;
    }
    
    #newsletter input {
      border-radius: 4px;
      margin-bottom: 1rem;
    }
    
    #newsletter button {
      border-radius: 4px;
      padding: 12px;
    }
    .services-container {
        padding: 1.5rem; /* Reduce padding on smaller screens */
        max-width: 100%; /* Full width on mobile */
      }
      
      #services h3 {
        font-size: 1.3rem; /* Slightly smaller heading */
      }
      
      #services li {
        font-size: 0.9rem; /* Slightly smaller text */
      }
      nav {
        position: relative;
      }
  
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.8rem;
    }
    
    h2 {
      font-size: 1.4rem;
    }
    
    h3 {
      font-size: 1.1rem;
    }
    
    #hero {
      padding: 4rem 1rem;
    }
    
    #hero h2 {
      font-size: 1.6rem;
    }
    
    button, 
    input[type="submit"],
    #hero a {
      padding: 10px 20px;
    }
    
    section {
      padding: 2.5rem 1rem;
    }
    
    #stats h3 {
      font-size: 2.5rem;
    }
    
    #testimonials blockquote {
      padding: 1.5rem;
    }
    
    #testimonials blockquote::before {
      font-size: 1.5rem;
    }
    
    #contact form {
      padding: 1.5rem;
    }
  
  }

  @media (max-width: 320px) {
    nav ul {
        flex-direction: column;
        align-items: center;
      }
      nav li {
        width: 100%;
        text-align: center;
      }
      
      nav a {
        padding: 1rem;
        border-bottom: 1px solid var(--medium-gray);
      }
  }
  
  /* Animation Keyframes */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Animation Classes */
  .animate-fadeIn {
    animation: fadeIn 1s ease-out;
  }
  
  .animate-pulse {
    animation: pulse 2s infinite;
  }
  
  .animate-slideInLeft {
    animation: slideInLeft 1s ease-out;
  }
  
  .animate-slideInRight {
    animation: slideInRight 1s ease-out;
  }
  
  /* Scroll Animations */
  .reveal {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* SVG Styling */
  svg {
    max-width: 100%;
    height: auto;
  }
  
  .svg-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    margin-right: 10px;
    transition: var(--transition);
  }
  
  a:hover .svg-icon {
    fill: var(--accent-color);
    transform: translateY(-3px);
  }
  
  /* Utility Classes */
  .text-center {
    text-align: center;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-right {
    text-align: right;
  }
  
  .pink-text {
    color: var(--primary-color);
  }
  
  .bold {
    font-weight: bold;
  }
  
  .mb-1 {
    margin-bottom: 1rem;
  }
  
  .mb-2 {
    margin-bottom: 2rem;
  }
  
  .mb-3 {
    margin-bottom: 3rem;
  }
  
  .mt-1 {
    margin-top: 1rem;
  }
  
  .mt-2 {
    margin-top: 2rem;
  }
  
  .mt-3 {
    margin-top: 3rem;
  }
  
  .flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .flex-wrap {
    flex-wrap: wrap;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .align-center {
    align-items: center;
  }
  
  .gap-1 {
    gap: 1rem;
  }
  
  .gap-2 {
    gap: 2rem;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--light-gray);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
  }
  
  /* Loading Animation */
  .loader {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: relative;
  }
  
  .loader:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 32px solid var(--primary-color);
    border-color: var(--primary-color) transparent var(--primary-color) transparent;
    animation: loader 1.2s infinite;
  }
  
  @keyframes loader {
    0% {
      transform: rotate(0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
      transform: rotate(180deg);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  

  .portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content h3 {
    color: white;
    font-size: 1.2em;
    text-align: center;
}

.swiper-container {
    width: 100%;
    height: 400px; /* Adjust based on your design */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* cursor */
/* Custom cursor styles */
.cursor-outer,
.cursor-inner {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%); /* Centers both elements on the mouse */
  will-change: transform, width, height, background-color;
}

.cursor-outer {
  width: 30px; /* Slightly larger circle */
  height: 30px;
  border-radius: 50%;
  background-color: transparent; /* Transparent fill for a clean look */
  border: 1px solid var(--primary-color); /* Pink border */
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  transform-origin: center;
}

.cursor-inner {
  width: 6px; /* Slightly larger dot */
  height: 6px;
  border-radius: 50%;
  background-color: #333; /* Dark gray dot */
  z-index: 10000;
  transform-origin: center;
}

/* Hover effect on clickable elements */
.cursor-hover {
  width: 40px; /* Expands on hover */
  height: 40px;
  background-color: rgba(255, 77, 143, 0.1); /* Subtle pink fill */
}

/* Click animation */
.cursor-click {
  transform: translate(-50%, -50%) scale(0.9); /* Scales down slightly */
  background-color: rgba(255, 77, 143, 0.2); /* Darker pink on click */
}

/* Hide default cursor on interactive elements */
a,
button,
input[type="submit"],
input[type="button"],
.clickable,
[role="button"] {
  cursor: none !important;
}

/* Hide custom cursor on touch devices */
@media (max-width: 1024px) {
  .cursor-outer,
  .cursor-inner {
    display: none;
  }
}

/* Option to disable custom cursor */
.no-custom-cursor .cursor-outer,
.no-custom-cursor .cursor-inner {
  display: none;
}
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff4d8f; /* Change to your preferred color */
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

#back-to-top:hover {
    background-color: #ff1a75; /* Change to your hover color */
    transform: translateY(-3px);
}
label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

select {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  font-size: 1rem;
  border: 2px solid pink;
  border-radius: 8px;
  background: #f9f9f9;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease-in-out;
}

select:hover {
  border-color: #0056b3;
}

select:focus {
  border-color: #004085;
  box-shadow: 0 0 5px rgba(0, 91, 187, 0.5);
}
 


/* Base variable definitions */
:root {
  --primary-color: #ff69b4; /* Changed from blue to pink */
  --accent-color: #e67e22;
  --text-color: #333333;
  --light-color: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #cccccc;
}

/* Dark mode variables */
.dark-mode {
  --text-color: #e0e0e0;
  --light-color: #1e1e1e;
  --light-gray: #2c2c2c;
  --medium-gray: #3c3c3c;
  --dark-gray: #4c4c4c;
  --primary-color: #ff69b4; /* Hot pink */
}

/* Important: Apply dark mode to html and body elements */
.dark-mode,
.dark-mode html,
.dark-mode body {
  background-color: var(--light-color);
  color: var(--text-color);
}

/* Override any default backgrounds to ensure full coverage */
.dark-mode * {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dark-mode h1, 
.dark-mode h2, 
.dark-mode h3, 
.dark-mode h4, 
.dark-mode h5, 
.dark-mode h6 {
  color: #ffffff;
}

.dark-mode a {
  color: var(--primary-color); /* Now pink */
}

.dark-mode a:hover {
  color: var(--accent-color);
}

.dark-mode button, 
.dark-mode input[type="submit"] {
  color: #ffffff;
}

.dark-mode section:nth-child(odd) {
  background-color: var(--light-gray);
}

.dark-mode header {
  background-color: var(--light-color);
  color: var(--text-color);
  background-image: linear-gradient(45deg, var(--light-color), #333, var(--light-color));
}

.dark-mode header h1, 
.dark-mode header p {
  color: #ffffff;
}

.dark-mode nav {
  background-color: var(--light-color);
}

.dark-mode nav a {
  color: var(--text-color);
}

.dark-mode #hero {
  background: linear-gradient(135deg, var(--light-color) 0%, #333 100%);
}

.dark-mode #hero h2, 
.dark-mode #hero p, 
.dark-mode #hero a {
  color: #ffffff;
}

.dark-mode #mission-vision div, 
.dark-mode #case-studies div, 
.dark-mode #our-designs div, 
.dark-mode #process div, 
.dark-mode #team div, 
.dark-mode #testimonials blockquote, 
.dark-mode #events div, 
.dark-mode #blog article, 
.dark-mode #contact form, 
.dark-mode #resources li {
  background-color: var(--light-gray);
  color: var(--text-color);
}

.dark-mode .gallery-container {
  background-color: var(--light-color);
}

.dark-mode .gallery-cta {
  background-color: #333;
}

.dark-mode footer {
  background-color: var(--light-color);
  color: #ffffff;
}

.dark-mode #newsletter, 
.dark-mode section:has(> h2:first-child:contains("Ready to Work with Us?")) {
  background-color: #333;
}

/* Form elements */
.dark-mode input,
.dark-mode textarea,
.dark-mode select {
  background-color: var(--medium-gray);
  color: var(--text-color);
  border: 1px solid var(--dark-gray);
}

/* Force iframes and embedded content to respect dark mode */
.dark-mode iframe,
.dark-mode embed,
.dark-mode object {
  filter: invert(0.85) hue-rotate(180deg);
}

/* Dark mode toggle button */
.dark-mode-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--primary-color); /* Now pink */
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.dark-mode-toggle:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Apply dark mode to any potential popups or modals */
.dark-mode .modal,
.dark-mode .popup,
.dark-mode .dialog {
  background-color: var(--light-color);
  color: var(--text-color);
  border: 1px solid var(--dark-gray);
}