* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.6s;
}

body {
    background-color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --main-color: #1565C0;
    --text-color: black;
    --hover-color: #1565C0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo {
    display: flex;
    align-items: center;
}

.logo h3 {
    position: relative;
    font-size: 30px;
    left: -10px;
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--hover-color);
    border-bottom: 2px solid var(--hover-color);
}

.menu-btn {
    display: none;
    font-size: 26px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 40;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 200px;
    height: 100vh;
    background: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease;
    z-index: 50;
}

.butt {
    width: 35px;
}

.side-menu.active {
    right: 0;
}

.side-menu a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-size: large;
}

.close-btn {
    align-self: flex-end;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* ===============================
   FOOTER
================================ */

/* Responsive */

.footer {
    width: 100%;
    background-color: #fff;
    margin-top: 100px;
    padding: 60px 100px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;

}

.foot1 {
    display: flex;
    justify-content: space-around;
}

.intro {
    max-width: 400px;
}

.intro-1 {
    display: flex;
    align-items: center;
}

.intro-1 img {
    width: 100px;
}

.intro p {
    margin-top: 15px;
    color: #333;
    line-height: 1.6;
}

.social {
    display: flex;
    justify-self: center;
    gap: 20px;
    margin-top: 30px;
}

.social img {
    width: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.social img:hover {
    transform: scale(1.1);
    padding: 4px;
    border: 2px solid #000;
    border-radius: 50%;
}

.list-33 {
    display: flex;
    gap: 100px;
}

.list-33 div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-33 section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-33 section a {
    text-decoration: none;
    color: #151515;
    font-weight: 500;
}

.list-33 section a:hover {
    border-bottom: 2px solid #000;
}

.right {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.right div {
    display: flex;
    gap: 50px;
}

.right div a {
    color: #282727;
    text-decoration: none;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 100px;
}

.hero img {
    width: 550px;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--main-color);
}

.hero-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.hero-content p {
    font-size: large;
}

.hero-content div {
    display: flex;
    gap: 25px;
}

.hero-content a {
    background-color: var(--main-color);
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    border-radius: 25px;
}

.hero-content a:hover {
    transform: scale(1.1);
}

.hero-tr {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-tr div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-self: center;
    border: 2px dotted var(--text-color);
    padding: 10px 5px;
    border-radius: 20px;
    width: 250px;
}

.hero-tr div:hover {
    border: 2px solid var();
}

.hero-tr div img {
    width: 40px;
}

.aboutus {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 10px;
    gap: 20px;
}

.aboutus h2 {

    font-size: 4rem;
}

.aboutus h3 {

    color: var(--hover-color);
}

.aboutus p {

    text-align: center;
}

.aboutus div {

    border: 3px dotted black;

    border-radius: 20px;
    padding: 50px 50px;
    width: 60%;
}

/* ===============================
   TOOLS CATEGORY SECTION
================================ */

.catagory {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cat-h1 h2 {
    margin-top: 50px;
    font-size: 3rem;
    color: var(--text-color);
    text-align: center;
}

.cat1 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cat1 a {
    text-decoration: none;
}

/* Category Card */
.cat {
    background-color: #fff;
    padding: 20px;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s ease;
}

.cat:hover {
    transform: translateY(-5px);
}

.cat img {
    width: 80px;
}

.cat h3 {
    font-size: 35px;
    color: var(--text-color);
}

.cat p {
    font-size: 16px;
    color: gray;
    font-weight: 500;
}

/* ===============================
   WHY CHOOSE US / OFFERS
================================ */

.offer-head {
    margin-top: 20px;
    text-align: center;
    font-size: 46px;
    padding: 0 20px;
}

.Offers {
    margin-top: 100px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

/* Offer Card */
.offer {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    width: 400px;
    text-align: center;
}

.offer img {
    width: 80px;
}

.offer h2 {
    font-size: 30px;
}

.offer p {
    line-height: 1.5;
    padding: 0 20px;
    font-weight: 500;
    color: gray;
}

.mission {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mission div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 15px;
    width: 350px;
    border-radius: 20px;
    padding: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.mission div h2 {
    color: var(--text-color);
    font-size: 30px;
}

.mission img {
    width: 80px;
}

.mission p {
    color: var(gray);
}

.team {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.teamh {
    font-size: 46px;
}

.teams {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
   
    
}

.teams img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.teams div {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    width: 350px;
}
.difference-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9fafb, #f1f5f9);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 18px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  padding: 35px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card ul li:last-child {
  border-bottom: none;
}

/* Problem Card */
.problem {
  background: #ffffff;
  border-left: 5px solid #ef4444;
}

.problem h3 {
  color: #ef4444;
}

/* Solution Card */
.solution {
  
  color: var(--text-color);
  border-left: 5px solid var(--hover-color);
}

.solution h3 {
  color: var(--hover-color);
}

.solution ul li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cta {
    padding: 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px;

}

.cta h2 {
    font-size: 46px;
}

.cta a {
    background-color: var(--main-color);
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    border-radius: 50px;
}

.cta a:hover {
    transform: scale(1.1);
}

.cta-div {

    display: flex;
    padding: 0px 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.cta-div a {
    color: var(--text-color);
    background: none;
    border: 2px solid var(--main-color);
}











/* Responsive */
@media (max-width: 768px) {
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }
}








/* Responsive */
@media (max-width: 1100px) {
    .Offers {
        gap: 20px;
    }

    .offer-head {
        font-size: 30px;
    }
    .teams div
    {
        width: 300px;;
    }
   
}

@media (max-width: 620px) {
    .offer {
        width: 300px;
    }
    
}






/* Responsive */
@media (max-width: 768px) {
    .cat {
        width: 100%;
        max-width: 320px;
    }

    .cat-h1 h2 {
        font-size: 2.2rem;
    }
     .teams div
    {
        width: 280px;;
    }
}





/* Responsive Footer */
@media (max-width: 1000px) {

    .foot1,
    .right {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .list-33 {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 1400px) {
    .hero {
        flex-direction: column;
    }

}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 16px;
    }
     .teams 
    {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .footer {
        padding: 40px 20px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .hero {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero img {
        width: 300px;
    }

    .hero-content a {
        padding: 10px 10px;
        font-size: 12px;
    }

    .aboutus h2 {

        font-size: 2rem;
    }

    .aboutus div {
        border: 2px dotted black;
        border-radius: 20px;
        padding: 20px 20px;
        width: 80%;
    }

}