*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;

}
 body {
            font-family: 'Helvetica Neue', Tahoma, Geneva, Verdana, sans-serif;
            background: #000000;
            overflow-x: hidden;
        }

.header {
  display: flex;                 
  justify-content: center;       
  align-items: center;            
  height: 110px;             
  background-color: #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  margin: 0px;
  position: sticky;
  top:0;
  z-index: 10;
}

/* ===== Logo Styling ===== */
.header img {
  height: 100px;                  
  width: auto;                    
  object-fit: contain;           
  transition: transform 0.3s ease, filter 0.3s ease;
   
}

.header img:hover {
  transform: scale(1.05);        
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)); 
}


@media (max-width: 768px) {
  .header {
    max-height: 130px;
  }

  .header img {
    height: 100%;
    padding: 10px 0px;
  }
}

/* services section */
.services-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
            letter-spacing: 0.5px;
        }
        .services-container .line-1{
         width: 1px;
         height: 100%;
         position: absolute;
         top: 0;
         left: 32.8%;
         background: radial-gradient(50% 50% at 50% 50%, #D7F346 50%, #000000 100%);
         opacity: 0.52;
        }
        .services-container .line-2{
            width: 1px;
            height: 100%;
            position: absolute;
            top: 0;
            right: 33%;
            background: radial-gradient(50% 50% at 50% 50%, #D7F346 50%, #000000 100%);
            opacity: 0.52;
        }
        .services-container .line-3{
            width: 100%;
            height: 1px;
            position: absolute;
            top: 54%;
            left: 0;
            background: radial-gradient(50% 50% at 50% 50%, #D7F346 58.17%, #000000 100%);
            opacity: 0.52;
        }
        .services{
            color:#fff;
            font-size: 2.2rem;
            text-align: center;
            margin-top: 3rem;
            margin-bottom: 4rem;
        }
        .service{
            color:#fff;
            font-size: 1.8rem;
            font-weight: 600;
            text-align: left;
            margin-top: 20px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            background: #000000;
            margin-top: 1.5rem;
        }

        .service-card {
            background: #000;
            padding: 25px 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            border-radius: 25px;
            
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #FFD700;
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.8, 1);
            z-index: 0;
        }

        .service-card:hover::before {
            transform: scaleY(1);
            transform-origin: center;
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        
        .service-card.auto-hover::before {
          transform: scaleY(1);
          transform-origin: center;
       }

        .learn-more {
          display: inline-block;
          margin-top: 1.5rem;
          color: rgb(125, 211, 252)
;
          font-weight: 600;
          text-decoration: none;
          transition: color 0.3s ease;
        }
        
        .learn-more:hover {
          color: #f90101;
        }
        

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            font-size: 32px;
            transition: all 0.4s ease;
            background: #FFD700;
            color: #000;
        }

        .service-card:hover .icon-box {
            background: #000;
            color: #ffffff;
            transform: rotate(10deg) scale(1.05);
        }

        .divider {
            width: 60px;
            height: 2px;
            background: #333;
            margin-bottom: 40px;
            transition: all 0.4s ease;
        }

        .service-card:hover .divider {
            width: 100%;
            background: #04ade0;
        }

        .service-title {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.3;
            transition: color 0.4s ease;
        }

        .service-card:hover .service-title {
            color: #000;
        }

        .service-description {
            font-size: 17px;
            color: #b4b4b4;
            line-height: 1.7;
            transition: color 0.4s ease;
        }

        .service-card:hover .service-description {
            color: #333;
        }

        /* Center card - Featured */
        .service-card.featured {
            background: #d4ff00;
        }

        .service-card.featured .icon-box {
            background: #000;
            color: #d4ff00;
        }

        .service-card.featured .service-title {
            color: #000;
        }

        .service-card.featured .service-description {
            color: #333;
        }

        .service-card.featured .divider {
            background: #000;
        }

        .service-card.featured:hover {
            background: #000;
        }

        .service-card.featured:hover::before {
            background: #000;
        }

        .service-card.featured:hover .icon-box {
            background: #d4ff00;
            color: #000;
        }

        .service-card.featured:hover .service-title {
            color: #fff;
        }

        .service-card.featured:hover .service-description {
            color: #999;
        }

        .service-card.featured:hover .divider {
            background: #333;
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
           .services-grid {
           display: flex;
           flex-direction: column;
           align-items: center;    
           justify-content: center; 
           gap: 20px;
         }
       
         .service-card {
            border: 1px solid #fff;
           padding: 20px 20px;
           min-height: 280px;
           width: 90%;
           margin: 0 auto;          
           text-align: left;
         }

            .service-title {
                font-size: 24px;
                margin-top: -10px !important;
                
            }
            .st1{
                margin-top: -10px !important;
            }

            .service-description {
                font-size: 15px;
                
            }
            .services-container .line-1,.line-2,.line-3{
                display:none
            }
            .service{
                text-align: center;
                padding-bottom: 10px !important;
            }
             
           
        }

        .Usefulness {
  background: linear-gradient(135deg, #1e1e2f, #2a2a4d);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #fff;
  max-width: 800px;
  margin: 40px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Usefulness:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.Usefulness .service {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffcc33;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.Usefulness ul {
  list-style: none;
  padding: 0;
}

.Usefulness ul li {
  font-size: 1.1rem;
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.Usefulness ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffcc33;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .Usefulness {
    padding: 25px 15px;
    margin: 20px 10px;
  }

  .Usefulness .service {
    font-size: 1.5rem;
  }

  .Usefulness ul li {
    font-size: 1rem;
  }
}

.use{
    text-align: left !important;
}


        /* all-services */
        
       
/* services */
.services2{
    margin-top: 50px;

}
.main-title2{
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    
}
.sub-title{
    text-align: left;
    font-size: 1.8rem;
    font-weight: 700; 
    margin-bottom: 2rem;
}
.services2-container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 50px;
        }

        .service2-card {
            background: #fff;
            border-radius: 24px;
            padding: 60px;
            margin-bottom: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.8s ease-out backwards;
            position: sticky;
            top:9rem
        }

        .service2-card:nth-child(1) {
            background: #e8e5ff;
            animation-delay: 0.1s;
        }

        .service2-card:nth-child(2) {
            background: #f4f8d4;
            animation-delay: 0.2s;
        }

        .service2-card:nth-child(3) {
            background: #ffe5e5;
            animation-delay: 0.3s;
        }

        .service2-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .card-image {
            width: 100%;
            height: 320px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service2-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

       .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap; /* allows proper wrapping on small screens */
  justify-content: center; /* centers on mobile */
  text-align: center;
}

.card-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #1a1a1a;
  flex-shrink: 0; /* prevents icon from shrinking */
}

.card-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

        .service2-card:hover .card-icon {
            transform: rotate(10deg) scale(1.1);
        }

       

        .card-subtitle {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 8px;
            text-align: center;
        }

        .card-description {
            font-size: 17px;
            color: #4a4a4a;
            line-height: 1.7;
            text-align: center;
        }

       
     


        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

      /* Responsive Design */
@media (max-width: 1024px) {
    .service2-card {
        padding: 40px;
        gap: 40px;
    }

    .card-title {
        font-size: 28px;
        margin-left: 0%;
    }

    .card-subtitle {
        font-size: 20px;
    }

    .card-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .services2-container {
        padding: 0 20px;
    }

    .service2-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
        
    }

    .card-image {
        height: 240px;
        border-radius: 12px;
    }

    .card-title {
        font-size: 26px;
        text-align:center;
        margin-left: 0%;
    }

    .card-subtitle {
        font-size: 18px;
        text-align: left;
    }

    .card-description {
        font-size: 15px;
        text-align: justify;
    }

    .card-content {
        align-items: center;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
  .service2-card {
    padding: 20px 15px;
    gap: 15px;
    border-radius: 14px;
  }

  .card-header {
    flex-direction: row;
    gap: 6px;
  }

  .card-icon {
    font-size: 26px;
    width: 45px;
    height: 45px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-subtitle {
    font-size: 18px;
    text-align: center;
  }

  .card-description {
    font-size: 16px;
    text-align: center;
    margin-top: -20px;
  }
}

/* footer */

:root{
--bg:#07060a; /* very dark */
--panel:#0f0e13;
--muted:#b8c0cc;
--accent:#7dd3fc; /* soft cyan */
}
.genie-footer{background:linear-gradient(180deg,var(--bg),#070611);color:var(--muted);padding:28px 18px;font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;}
.genie-footer a{color:var(--muted);text-decoration:none}
.genie-footer .footer-top{display:block;gap:20px;}


/* Brand */
.genie-footer .brand{margin-bottom:18px}
.genie-footer .logo{font-weight:700;font-size:20px;color:#fff;letter-spacing:0.2px}
.genie-footer .logo span{font-weight:600;color:var(--accent)}
.genie-footer .tag{margin-top:8px;font-size:13px;color:var(--muted);line-height:1.45}
.genie-footer .cta{display:inline-block;margin-top:12px;padding:10px 14px;border-radius:10px;background:linear-gradient(90deg,rgba(125,211,252,0.12),rgba(125,211,252,0.06));color:var(--accent);font-weight:600}


/* Links grid */
.genie-footer .links{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.genie-footer .col h3{font-size:14px;color:#fff;margin-bottom:8px}
.genie-footer .col ul{list-style:none;padding:0;margin:0}
.genie-footer .col ul li{margin:6px 0}
.genie-footer .col ul li a{font-size:14px}


.contact-col address{font-style:normal;font-size:14px;line-height:1.45}


.social{display:flex;gap:10px;margin-top:12px}
.icon{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:8px;background:rgba(255,255,255,0.02)}
.icon svg{display:block}


.footer-bottom{display:flex;flex-direction:column;gap:10px;margin-top:20px;border-top:1px solid rgba(255,255,255,0.04);padding-top:14px;align-items:center}
.footer-bottom .small{font-size:13px;color:var(--muted)}
.footer-bottom .legal{display:flex;gap:12px}
.footer-bottom .legal a{font-size:13px;color:var(--muted)}


/* Mobile-first adjustments */
@media (min-width:720px){
.genie-footer{padding:44px}
.genie-footer .footer-top{display:flex;align-items:flex-start;justify-content:space-between}
.genie-footer .brand{flex:1;max-width:320px;margin-right:24px}
.genie-footer .links{grid-template-columns:repeat(3,1fr);flex:1}
.footer-bottom{flex-direction:row;justify-content:space-between;align-items:center}
}


/* Utility: screen-reader only */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}


