@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

*{
    box-sizing: border-box;
    border: none;
    outline: none;
}

html{
  margin-right: 0;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    transition: background-color 0.5s, color 0.5s;
    /* Fallback for browsers that do not support overscroll-behavior */
    /* No overscroll-behavior here by default */
}

/* Apply overscroll-behavior only if supported */
@supports (overscroll-behavior: none) {
  body {
    overscroll-behavior: none;
  }
}

html, body {
  overflow-x: hidden;
  width: 100%;
  overscroll-behavior: none;
}


/* search.css */

.search-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-bar {
  padding: 10px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}
/* Place this in your global CSS (or inside a <style> block) */
#search-results-desktop {
  position: absolute;       /* sit on top of flow */
  top: 100%;                /* directly under its parent nav */
  left: 0;
  right: 0;
  margin-top: 0.5rem;       /* a little breathing room */
  background: #ffffff;      /* white background */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* soft drop shadow */
  border-radius: 0 0 0.5rem 0.5rem;       /* round bottom corners */
  max-height: 22rem;        /* cap height to allow scrolling */
  overflow-y: auto;         /* scroll if too tall */
  z-index: 1000;            /* float above other page elements */
  padding: 0.75rem;         /* inner padding */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 0.75rem;             /* space between cards */
}
#search-results-mobile{
  
  position: absolute;       /* sit on top of flow */
  top: 100%;                /* directly under its parent nav */
  left: 0;
  right: 0;
  margin-top: 0.5rem;       /* a little breathing room */
  background: var(--nav-color);      /* white background */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* soft drop shadow */
  border-radius: 0 0 0.5rem 0.5rem;       /* round bottom corners */
  min-height: 22rem;        /* cap height to allow scrolling */
  overflow-y: auto;         /* scroll if too tall */
  z-index: 1000;            /* float above other page elements */
  padding: 0.75rem;         /* inner padding */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 0.75rem;     

}

/* Optional: style your cards within */
.search-container #search-results-desktop {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25%;
}


#results-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: none;
  z-index: 1000;
  padding: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}



#results-container h3 {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #333;
}

#results-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#results-container li {
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 5px;
}

#results-container li:hover {
  background-color: #f0f0f0;
}

#results-container a {
  text-decoration: none;
  color: #333;
}

.theme-toggle {
  margin-top: 5px;
}

.sun-icon {
  width: 20px;
  height: 20px;
}

:root{
    --primary-color:hsla(210, 40%, 96%, 0.644);
    --nav-color: rgba(255, 255, 255, 0.904);
    --text-color: #212121;
    --shodow-color:rgba(0, 0, 0, 0.863);
    --sign-color:#1d1d1d;
    --nav-bg-color: rgba(255, 255, 255, 0.2);

}

.dark-theme{
    --primary-color:hsla(223, 84%, 5%, 0.945);
    --text-color: rgba(255, 255, 255, 0.952);
    --nav-color:hsla(223, 84%, 5%, 0.973);
    --shodow-color: rgba(250, 56, 250, 0.726);
    --sign-color:#2563eb;
     --nav-bg-color: rgba(34, 34, 34, 0.7);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--nav-color);
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    z-index: 1000;
}



/* Navbar stays transparent with no blur */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  box-shadow: none;
}

/* Background blur effect */
.nav-background {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px; /* Match your navbar height */
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.2); /* Light frosted white */
  background-color: var(--nav-color);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}



.logo {
    margin-left: 5%;
}

body.dark-theme .logo{
  margin-left: 6%;
}

.nav_logo1 {
    height: 75px;
    width: 95px;
}

body.dark-theme .nav_logo1 {
  height: 65px;   /* New height in dark mode */
  width: 65px;    /* New width in dark mode */
}


.nav-links {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    transition: background-color 0.5s, backdrop-filter 0.5s;
}



.nav-links li {
    margin: 0 8px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    transition: 0.3s;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #4083ff;
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #4083ff;
}

.nav-right {
    display: flex;
    align-items: center;
}

.search-bar {
    background-color: var(--primary-color);
    padding: 10px 13px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    margin-right: 15px;
    color: var(--text-color);
}


.search-bar:hover{
  border: 2px solid rgb(80, 80, 252);
}


.theme-btn {
    border-color: var(    --text-color);
    border-radius: 5px;
    background: var(--primary-color);
    cursor: pointer;
    font-size: 16px;
    padding: 2.5px 7px;
    margin-right: 15px;
    margin-left: 3px;
}

.theme-btn:hover {
    transition: 0.5s;
    background-color: #deeffd;
}

.sun-icon{
    height: 25px;
    width: 25px;
}

.contact-btn {
    background: #4083ff;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.contact-btn:hover {
    padding: 10px 17px;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 1001; /* Higher than nav-links */
    color: var(--text-color);
}

.hamburger .menu-icon,
.hamburger .close-icon {
    stroke: var(--shodow-color); /* Change to your desired color */
}

.hamburger .menu-icon {
    display: block;
}

.hamburger .close-icon {
    display: none;
}

.hamburger.active .menu-icon {
    display: none;
}

.hamburger.active .close-icon {
    display: block;
}

.mobile-contact-btn {
    display: none;
}

.search-container {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        margin-right: 5%;
    }

    .nav-actions {
        display: flex;
        align-items: center;
    }

    .mobile-contact-btn {
        display: block;
        margin-right: 15px;
        background: #4083ff;
        color: white;
        padding: 4px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        transition: 0.3s;
    }

    .mobile-contact-btn:hover {
        padding: 10px 17px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -80%;
        width: 80%;
        height: 100vh;
        background: var(--nav-color);
        padding: 20px;
        box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
        flex-direction: column;
        transition: right 2s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: left;
    }

    .nav-right {
        display: none;
    }

    .search-container {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }

    .search-container .search-bar {
        width: 70%;
    }

    .search-container .theme-btn {
        margin-left: 10px;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 20%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.3);
        z-index: 998;
    }

    .overlay.active {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav_logo1 {
        height: 50px;
        width: 60px;
    }

    .navbar {
        height: 50px;
        padding: 10px 15px;
    }

    .mobile-contact-btn {
        padding: 4px 15px;
        font-size: 12px;
    }
}



/* contant  */





/* Hero section container */
.contanner0001 {
    width: 100%;
    min-height: 450px;
    background-color: var(--primary-color);
    margin-top: 60px; /* Matches navbar height */
    display: flex;
    padding: 0 20px; /* Add padding for consistent spacing */
    box-sizing: border-box;
}

/* Ensure dark theme background */
.dark-theme .contanner0001 {
    background-color: var(--primary-color);
}

.child0001 {
    width: 55%;
    min-height: 100%;
    margin: 0; /* Remove auto margin to prevent centering */
    padding: 20px; /* Add padding for internal spacing */
    box-sizing: border-box;
}

.kid00001 {
    width: 100%;
    height: 10vh;
    position: relative;
    margin-top: 20px; /* Fixed unit instead of percentage */
}

.contant_kid00001 {
    border-radius: 8px;
    height: 30px;
    width: 240px;
    background-color: #aac6f8;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 20px; /* Fixed unit instead of percentage */
    bottom: 0;
    color: #1867fa;
    font-weight: 500;
}

.kid00002 {
    width: 100%;
    min-height: 25%;
    max-width: 100%;
    overflow-wrap: break-word;
}

.contant_kid00002 {
    display: flex;
    font-size: 60px;
    font-weight: 700;
    margin-left: 20px; /* Fixed unit */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.1;
    overflow: hidden;
    border-right: 3px solid #fff;
    color: var(--text-color);
}

.kid00003 {
    width: 100%;
    min-height: 10%;
}


.contant_kid00003 {
    display: flex;
    font-size: 20px;
    color: rgba(128, 128, 128, 0.603);
    margin-left: 20px; /* Fixed unit */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.1;
    padding-bottom: 10px;
}

.kid00004 {
    width: 100%;
    height: 20%;
    gap: 5px;
}

.kid00004_btn1 {
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: white;
    padding: 13px 30px;
    border-radius: 7px;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    margin-left: 20px; /* Fixed unit */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}

.kid00004_btn1:hover {
    transform: scale(1.06);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.kid00004_btn2 {
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #2563eb;
    padding: 13px 30px;
    border-radius: 7px;
    background-color: var(--primary-color);
    border: 1px solid #2563eb;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.kid00004_btn2:hover {
    background: #c5d8f8;
    color: black;
    transform: scale(1.04);
}

.child0002 {
    width: 45%;
    min-height: 100%;
    margin: 0; /* Remove auto margin */
    padding: 20px; /* Add padding for spacing */
    box-sizing: border-box;
}



.Heroimage_cantaner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 50vh;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px auto; /* Fixed margin instead of percentage */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0px 10px 25px rgba(209, 3, 216, 0.404);
}

.Heroimage_cantaner:hover {
    transform: scale(1.03);
    box-shadow: 0px 10px 25px rgb(209, 3, 216);
}

.Hero_image1 {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contanner0001 {
        display: block;
        background-color: var(--primary-color);
        min-height: auto;
        padding: 0 10px; /* Reduced padding for smaller screens */
        margin-top: 0;
        /* padding-top: 20px; */
    }

    .dark-theme .contanner0001 {
        background-color: var(--primary-color);
    }

    .child0001 {
        width: 100%;
        min-height: auto;
        padding: 10px;
        margin: 0;
    }

    .contant_kid00001 {
        height: 25px;
        width: 200px;
        font-size: 12px;
        left: 10px; /* Fixed unit */
        font-weight: 600;
    }

    .contant_kid00002 {
        margin-top: 5px;
        font-size: 35px;
        font-weight: 700;
        margin-left: 10px; /* Fixed unit */
        line-height: 1;
    }

    .contant_kid00003 {
        margin-top: 13px;
        font-size: 14px;
        margin-left: 10px; /* Fixed unit */
        line-height: 1.2;
    }

    .kid00004 {
        margin-top: 7px;
    }

    .kid00004_btn1 {
        font-weight: 500;
        font-size: 10px;
        padding: 10px 25px;
        border-radius: 5px;
        margin-left: 10px; /* Fixed unit */
        margin-right: 5px;
    }

    .kid00004_btn2 {
        font-weight: 500;
        font-size: 10px;
        padding: 10px 25px;
        border-radius: 5px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .child0002 {
        width: 100%;
        min-height: auto;
        padding: 10px;
        margin: 0;
        padding-bottom: 5%;
    }

    .Heroimage_cantaner {
        width: 90%;
        height: 25vh;
        border-radius: 10px;
        overflow: hidden;
        margin: 10px auto; /* Fixed margin */
    }
}


/* Our Services */

.Our-Services1,
.Our-Services2,
.Our-Services3 {
    height: auto;
    min-height: some_px; 
}

.Our-Services_contaner{
    min-height: 920px; /* ensures it’s tall enough initially */
    height: auto; 
    width: 100%;
    background-color: var(--nav-color) !important;
    
}


.Our-Services1{
    width: 100%;
    position: relative;
    background-color: var(--nav-color);
}

.our-service11 {
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: center;    /* center horizontally */
    align-items: flex-end;      /* push to bottom vertically */
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.05em; 
    padding-top: 1%;     
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: var(--nav-color);
}

.our-service11 h2{
    color: var(--text-color) !important;
    font-size: 3rem !important; 
    line-height: 1;
    padding-top: 5%;
    font-weight: 800 !important;
    text-align: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@media screen and (max-width: 768px){
    .our-service11{
        font-size: 28px;
    }
}

.our-service12 {
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;   

}


.our-service122 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 800px;
    letter-spacing: 1px;
    text-align: center;   
    color: rgba(128, 128, 128, 0.603);          
    font-weight: 500;
    padding-top: 1%;    
}

@media screen and (max-width: 768px){
    .our-service122{
        font-size: 15px;
        line-height: 1.1rem;
    }
}


.Our-Services2{
    width: 100%;
    background-color: var(--nav-color);
}

.card-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: nowrap;
    padding-top: 2%;    
  }

  @media screen and (max-width: 768px){
    .card-container{
        flex-wrap: wrap;
    }
}
  
  .card {
    background-color: var(--nav-color);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shodow-color);
    width: 380px;
    transition: 0.3s ease;
    overflow: hidden;
    height: 450px;
    margin-top: 30px;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px var(--card-color);
  }
  
  .card-icon {
    background-color:var(--primary-color);
    padding: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card-icon img {
    min-width: 35px;
    height: 35px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(88%) saturate(750%) hue-rotate(210deg) brightness(99%) contrast(89%);
  }
  
  .card-content {
    padding: 20px;
    background-color:var(--nav-color);
  }
  
  .tag {
    display: inline-block;
    background-color: #e6f0ff;
    color: #377dff;
    font-size: 15px;
    padding: 4px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .tag.purple {
    background-color: #f1e6ff;
    color: #8a63d2;
  }
  
  .card-content h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 10px 0;
    color: var(--text-color);
  }
  
  .card-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .card-content a {
    text-decoration: underline;
    color: #377dff;
    font-weight: 600;
    font-size: 16px;
  }



  .Our-Services3{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 5%; 
    background-color: var(--nav-color);   
  }

  .btn-view-service{

    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #2563eb;
    padding: 13px 30px;
    border-radius: 7px;
    background-color: var(--primary-color);
    border: 1px solid #2563eb;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    display: inline-block;
    cursor: pointer;
    margin-top: 10%;  
  }



  .btn-view-service:hover{
    background: #c5d8f8;
    color: black;
    transform: scale(1.04);
    border: 1px solid black;
  }





  /* about US */

  .about-us-contaner{
    min-height: 700px;
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    padding: 60px 80px;
  }

  .about-us-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 90px;

    margin: 0 ;
    flex-wrap: wrap-reverse;
  }

  @media screen and (max-width: 768px) {
    .about-us-contaner {
      flex-direction: column;
      height: auto;
      padding: 60px 20px;
      gap: 20px;
    }

    .about-us-container{
        gap: 40px;
    }
}

  
  .image-box {
    flex: 1 1 400px;
    background-color: #eaeaea;
    border-radius: 16px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .content-box {
    flex: 1 1 400px;
  }
  
  .yotag {
    display: inline-block;
    padding: 6px 14px;
    background-color: #e1e8fd;
    color: #3653f8;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .content-box h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--text-color);
  }
  
  .content-box p {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #4b4b4b;
  }
  
  .features {
    list-style: none;
    margin-bottom: 25px;
  }
  
  .features li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--sign-color);
  }

  
  .Learn-More-About-Us-btn {
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #2563eb;
    padding: 13px 30px;
    border-radius: 7px;
    background-color: var(--primary-color);
    border: 1px solid #2563eb;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
  }
  
  .Learn-More-About-Us-btn:hover {
    background: #c5d8f8;
    color: black;
    transform: scale(1.04);
    border: 1px solid black;
  }


  /* our work */


  .Our-work1{
    min-height: 600px;
    height: auto;
    width: 100%;
    background-color: var(--nav-color);
  }


.Our-work11 {
 font-size: 3rem;
    line-height: 1;
    padding-top:5% ;
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  }



 h2 {
    font-size: 3rem;
    line-height: 1;
    padding-top:5% ;
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  }

  p.subtitle5 {
    color: #6b7280;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 1.1rem;
  }

  .work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2%;
    width: 90%;
    margin: 0% 5% 0% 5% ;
  }

  .work-card-1,
  .work-card-2,
  .work-card-3 {
    position: relative;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .work-card-1:hover,
  .work-card-2:hover,
  .work-card-3:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  }

  .img-1,
  .img-2,
  .img-3 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: filter 0.3s ease;
  }

  .work-card-1:hover .img-1,
  .work-card-2:hover .img-2,
  .work-card-3:hover .img-3 {
    filter: brightness(0.5);
  }

  .overlay-1,
  .overlay-2,
  .overlay-3 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }

  .work-card-1:hover .overlay-1,
  .work-card-2:hover .overlay-2,
  .work-card-3:hover .overlay-3 {
    opacity: 1;
    transform: translateY(0);
  }

  .tag-1,
  .tag-2,
  .tag-3 {
    background: #e6f0ff;
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 999px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #377dff;
  }

  .title-1,
  .title-2,
  .title-3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
  }

  .desc-1,
  .desc-2,
  .desc-3 {
    font-size: 0.9rem;
    color: #d1d5db;
  }

  .view-more {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .view-more-btn {
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: #fff;
    padding: 12px 26px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
  }

  .view-more-btn:hover {
    transform: scale(1.06); 
  }

  @media (max-width: 600px) {
    .Our-work11 h2 {
      font-size: 2rem;
    }
    p.subtitle5 {
      font-size: 1rem;
    }
    .view-more-btn {
        margin-bottom: 30px;
        margin-top: 30px;
    }
  }
  


  /* What Our Clients Say */



  .testimonials-section {
    text-align: center;
    width: 100%;
    height: auto;
    min-height: 550px;
    margin: 0 auto;
    background-color: var(--primary-color);
    align-content: center;
  }

  .testimonials-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    font-family: ui-sans-serif, system-ui, sans-serif, 
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";  }

  .p-in-testimonial {
    color: #6b7280;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 1.2rem;
  }

  .testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-left: 5%;
    margin-right: 5%;
  }

  .testimonial-card {
    background-color: var(--nav-color);
    padding: 25px;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-top: 25px;

  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #e5e7eb;
  }

  .profile-info {
    text-align: left;
  }

  .profile-info strong {
    color: var(--text-color);
  }

  .profile-info small {
    color: #6b7280;
  }

  .stars {
    color: #3b82f6;
    margin-bottom: 10px;
    font-size: 27px;
    display: flex;
    justify-content: flex-start;
  }

  .testimonial-text   {
    color: #4b5563;
    font-style: italic;
    font-size: 17px;
    text-align: start;
  }


  @media (max-width: 700px){
    .testimonials-section h2{
      font-size: 25px;
    }

    .p-in-testimonial{
      font-size: 16px;
    }

    .testimonials {
      gap: 10px;
      margin-bottom: 10%;
    }

    .testimonial-text {
      font-size: 13px;
      line-height: 1.3;
    }
  }



  /* Ready  */


  .Ready1{
    width: 100%;
    min-height: 350px;
    height: auto;
    background-color: var(--nav-color);
    align-content: center;
  }

  .Ready1 h2{
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    margin: auto;
    letter-spacing: -2px;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
 
  }

  .Ready1 p{
    color: #6b7280;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    margin-left: 20%;
    margin-right: 20%;
    text-align: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }

  .contant-btn1{
    margin-top: 2%;
    display: flex;
    justify-content: center;
    gap: 10px;

  }

  .Contact-Us-btn23{
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: #fff;
    padding: 12px 26px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;

  }

  .Contact-Us-btn23:hover{
    transform: scale(1.06);
  }

  .Explore-Services{
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #2563eb;
    padding: 13px 30px;
    border-radius: 7px;
    background-color: var(--primary-color);
    border: 1px solid #2563eb;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
  }

  .Explore-Services:hover {
    background: #c5d8f8;
    color: black;
    transform: scale(1.04);
    border: 1px solid black;
  }

  @media (max-width: 700px){
    .Ready1 h2{
      font-size: 30px;
   
    }

    .Ready1 p{
      font-size: 15px;
      margin-left: 5%;
      margin-right: 5%;
    }

    .contant-btn1{
      margin-top: 10%;
      flex-direction: column;
      gap: 10px;
      margin-left: 5%;
      margin-right: 5%;
  
    }
  }




  /* footer section */




  .footer {
    width: 100%;
    background-color:var(--primary-color);
    padding: 30px 10px 17px;
    border-top: 1px solid var(--text-color);
    
    
  }
  
  .footer-container {
    width: 100%;
    padding: 0 3px; 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    color: #444;
  }
  
  .footer-section{
    padding:20px 0;
  }
  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-color);
    font-family:sans-serif;
  }
  
  .footer-section p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
    color:rgb(63, 99, 113);
    font-family: sans-serif;
  }
  
  .footer-section ul {
    list-style: none;
    color: gray;
    /* gap: 23px; */
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: gray;
    /* gap: 3px; */
  }
  .head a{
    font-size:14px;
    /* font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
   
  }
  .head {
    margin-top: 30px;
  }
  .head li {
    padding-bottom:9px;

  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
    /* gap: 38px; */
  }
  .social-icons i{
    font-style:inherit;
    /* font-size:100px; */
    color: var(--text-color);
  }
  
  .footer-section ul li a:hover {
    color: #1d4ed8;
  }
  .contact {
   padding-top:30px;
  }
  .contact a{
    font-size:18px;
  }
  .contact-info i{
    color: #2563eb;
    font-size: 18px;
    font-style:normal;
  }
  .contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    
  }
  .contact-info li a:hover{
    color: #2563eb;
    cursor: pointer;
  }
  .social-icons {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    font-size: 20px;
  }
  
  .social-icons i {
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icons i:hover {
    color: #3b82f6;
    transform: scale(1.2);
  }
/* .footer-section .rating-stars i{ */
  /* border:1px  black; */
  /* background-color: #2563eb; */
 
  .rating-stars {
    display: flex;
    gap: 0.3px;
    cursor: pointer;
    
  }
   .star-icon svg{
    border:1px solid black;
  }
  .star-icon {
    width: 30px;
    height: 40px;
   color: #ddd;
    transition: fill 0.3s;
    margin-bottom: -20px;
        
  }
  .star-icon.filled {
    fill:yellow;
  }
  .star-icon.hovered {
    fill: yellow;
  }
  .rating-btn {
    margin-top: 16px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #214CD7;
    color: white;
    width: 23vw;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-align: center;
    align-items: center;
  }

  
  .rating-btn:hover {
    background: linear-gradient(to right, #4338ca, #2563eb);
  }
  
  .feedback-link {
    display: inline-block;
    margin-top: 10px;
    color: #2563eb;
    font-size: 14px;
    margin-left: 120px;
    text-decoration: none;
    text-align: center;
  }
  
  .feedback-link:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    margin-top: 2px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
  }

  .footer-bottom p{
    color: var(--text-color);
  }
  
  .footer-bottom a {
    color: #2563eb;
    margin: 0 0px;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
    @media (min-width:650px) {
  .footer-section  .rating-btn {
     
  .feedback-link{
    text-align: center;
    align-items: center;
  } 
    }
}

