*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
scroll-behavior:smooth;
}

:root{
--bg:#ffffff;
--text:#111;
--primary:#0077ff;
}

.dark{
--bg:#ffffff;
--text:#111;
}

body{
background:var(--bg);
color:var(--text);
}

/* ==========================
   HEADER & NAVBAR
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#0f172a;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

.navbar{
    max-width:1200px;
    margin:auto;
    padding:18px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:1.8rem;
    font-weight:700;
    color:#3b82f6;
    text-decoration:none;
}

/* NAV LINKS */

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    color:#111;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#3b82f6;
}

/* RIGHT ICONS */

.icons{
    display:flex;
    align-items:center;
    gap:15px;
}

/* DARK MODE BUTTON */

#theme-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

#theme-btn:hover{
    background:#2563eb;
}

/* MENU BUTTON */

.menu-btn{
    display:none;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    cursor:pointer;
    font-size:22px;
    transition:.3s;
}

.menu-btn:hover{
    background:#2563eb;
}
/* ==========================
   HEADER & NAVBAR
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#ebecef;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

/* ==========================
   LOGO SECTION
========================== */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    
    width:50px;
    height:50px;
    object-fit:contain;
    border-radius:50%;
    transition:0.4s ease;
}

.logo img:hover{
    transform:rotate(360deg);
}

.brand{
    text-decoration:none;
    font-size:1.5rem;
    font-weight:700;
    color:#111;
    letter-spacing:1px;
    transition:0.3s ease;
}

.brand:hover{
    color:#3b82f6;
}

/* ==========================
   HEADER CONTAINER
========================== */

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 5%;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .logo img{
        width:40px;
        height:40px;
    }

    .brand{
        font-size:1.1rem;
    }

}

/* NAV LINKS */

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    color:#0f172a;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:blue;
}

/* RIGHT ICONS */

.icons{
    display:flex;
    align-items:center;
    gap:15px;
}

/* DARK MODE BUTTON */

#theme-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

#theme-btn:hover{
    background:#2563eb;
}

/* MENU BUTTON */

.menu-btn{
    display:none;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    cursor:pointer;
    font-size:22px;
    transition:.3s;
}

.menu-btn:hover{
    background:#2563eb;
}

/* ==========================
   MOBILE MENU
========================== */

@media(max-width:768px){

    .menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .nav-links{
        position:absolute;
        top:80px;
        left:-100%;
        width:100%;
        background:#0f172a;
        flex-direction:column;
        text-align:center;
        padding:25px 0;
        transition:.4s;
    }

    .nav-links.active{
        left:0;
    }

    .nav-links li{
        margin:15px 0;
    }

}

/* ==========================
   HERO SECTION
========================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 8% 80px;
    
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background: #2563eb;
    color: #ffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeIn 1s ease;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1f2937;
}

.hero-text h1 span {
    color: #3b82f6;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 30px;
    max-width: 650px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s;
}

.btn.primary {
    background: #2563eb;
    color: #fff;
}

.btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-4px);
}

/* ==========================
   HERO IMAGE
========================== */

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
    animation: floatImage 4s ease-in-out infinite;
}

/* ==========================
   STATS SECTION
========================== */

.stats {
    display: flex;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 80px 8%;
   
}

.stat-card {
    
    padding: 35px 20px;
    text-align: center;
    border-radius: 20px;
    transition: 0.4s;
   
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h2 {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-card p {
    color: #111;
    font-size: 1rem;
}

/* ==========================
   ANIMATIONS
========================== */

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================
   RESPONSIVE TABLET
========================== */

@media (max-width: 992px) {

    .hero-section .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .buttons {
        justify-content: center;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================
   RESPONSIVE MOBILE
========================== */

@media (max-width: 768px) {

    .hero-section {
        padding: 100px 5% 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-image img {
        max-width: 320px;
    }

    .stats {
        grid-template-columns: 1fr;
        padding: 60px 5%;
    }

    .stat-card h2 {
        font-size: 2rem;
    }
}
/* ==========================
   ABOUT SECTION
========================== */

.about-section{
    padding:100px 8%;
    
    color:#1e293b;
}

.about-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:50px;
}

.about-left,
.about-right{
    flex:1;
}

/* LEFT SIDE */

.about-left h1{
    font-size:3rem;
    margin-bottom:20px;
    color:#3b82f6;
}

.about-left p{
    font-size:1rem;
    line-height:1.8;
    color:#1e293b;
    margin-bottom:30px;
}

.about-features{
    list-style:none;
}

.about-features li{
    margin-bottom:15px;
    font-size:1rem;
    color:#010101;
    display:flex;
    align-items:center;
    gap:10px;
}

.about-features li i{
    color:#22c55e;
    font-size:18px;
}

/* RIGHT SIDE */

.about-right h2{
    font-size:2rem;
    margin-bottom:25px;
    color:black;
}

.why-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    padding:18px;
    background:#a7a7a7;
    border-radius:15px;
    transition:.4s ease;
}

.why-item:hover{
    transform:translateX(10px);
    background:#ffff;
}

.number{
    width:45px;
    height:45px;
    min-width:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#2563eb;
    color:#fff;
    font-weight:bold;
    font-size:18px;
    border-radius:50%;
}

.why-item p{
    color:#111;
    font-size:1rem;
    line-height:1.5;
}

/* ==========================
   ANIMATIONS
========================== */

.about-left{
    animation:slideLeft 1s ease;
}

.about-right{
    animation:slideRight 1s ease;
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .about-container{
        flex-direction:column;
    }

    .about-left,
    .about-right{
        width:100%;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .about-section{
        padding:80px 5%;
    }

    .about-left h1{
        font-size:2.2rem;
        text-align:center;
    }

    .about-left p{
        text-align:center;
    }

    .about-right h2{
        font-size:1.6rem;
        text-align:center;
    }

    .why-item{
        padding:15px;
    }

    .why-item p{
        font-size:0.95rem;
    }

}

/* ==========================
   SERVICES SECTION
========================== */

.services-section{
    padding:100px 8%;
    
    text-align:center;
}

.services-section h2{
    font-size:3rem;
    color:black;
    margin-bottom:15px;
}

.services-section > p{
    color:#111;
    font-size:1rem;
    margin-bottom:50px;
}

/* SERVICES GRID */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

/* SERVICE CARD */

.service-card{
    background:#a2a3a4;
    padding:35px 25px;
    border-radius:20px;
    transition:0.4s ease;
    border:1px solid rgba(255,255,255,0.08);
    cursor:pointer;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(37,99,235,0.25);
}

.icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon i{
    font-size:32px;
    color:#fff;
}

.service-card h3{
    color:#fff;
    font-size:1.4rem;
    margin-bottom:15px;
}

.service-card p{
    color:black;
    line-height:1.7;
    font-size:0.95rem;
}

/* ==========================
   ANIMATIONS
========================== */

.service-card{
    animation:fadeUp 0.8s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==========================
   TABLET
========================== */

@media (max-width:992px){

    .services-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .services-section h2{
        font-size:2.5rem;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .services-section{
        padding:80px 5%;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-section h2{
        font-size:2rem;
    }

    .service-card{
        padding:30px 20px;
    }

    .icon{
        width:70px;
        height:70px;
    }

    .icon i{
        font-size:28px;
    }

}

.carousel-section{
    padding:100px 5%;
    
    text-align:center;
}

.carousel-section h2{
    color:#fff;
    font-size:2.5rem;
    margin-bottom:40px;
}

.slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.slide-track{
    display:flex;
    width:calc(300px * 12);
    animation:scroll 30s linear infinite;
}

.slide{
    width:300px;
    padding:15px;
    flex-shrink:0;
}

.slide img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:20px;
    transition:.5s;
    box-shadow:0 10px 30px rgba(94, 93, 93, 0.4);
}

.slide img:hover{
    transform:scale(1.08);
}

.slider::before,
.slider::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
}

.slider::before{
    left:0;
    background:linear-gradient(to right,#111,transparent);
}

.slider::after{
    right:0;
    background:linear-gradient(to left,#111,transparent);
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(calc(-300px * 6));
    }
}
@media (max-width:768px){

    .slide{
        width:220px;
    }

    .slide img{
        height:160px;
    }

    .slide-track{
        width:calc(220px * 12);
    }

    @keyframes scroll{
        0%{
            transform:translateX(0);
        }

        100%{
            transform:translateX(calc(-220px * 6));
        }
    }

}

/* ==========================
   CONTACT SECTION
========================== */

.contact-section{
    padding:100px 8%;
    
}

.section-title{
    text-align:center;
    font-size:3rem;
    color:black;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#111;
    margin-bottom:50px;
}

/* CONTACT CONTAINER */

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

/* LEFT SIDE */

.contact-info{
    
    padding:35px;
    border-radius:20px;
}

.contact-info h3{
    color:#111;
    margin-bottom:25px;
    font-size:1.5rem;
}

.info-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.icon-box{
    width:55px;
    height:55px;
    background:#2563eb;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    color:#fff;
    font-size:24px;
}

.info-item strong{
    color:#111;
    display:block;
    margin-bottom:5px;
}

.info-item p{
    color:#111;
}

/* SOCIAL ICONS */

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
    flex-wrap:wrap;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#0f172a;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    transition:.4s;
}

.social-icons a:hover{
    background:#2563eb;
    transform:translateY(-5px);
}

/* FORM */

.contact-form{
    background: #cbd5e1;
    padding:35px;
    border-radius:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    color:#111;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px;
    border:none;
    outline:none;
    border-radius:10px;
    background:#ffffff;
    color:black;
    font-size:15px;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#111;
}

.contact-form button{
    width:38%;
    padding:13px;
    background:#2563eb;
    color:#fff;
    border:none;
    border-radius:35px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.contact-form button:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

/* ==========================
   ANIMATION
========================== */

.contact-info,
.contact-form{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .contact-container{
        grid-template-columns:1fr;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .contact-section{
        padding:80px 5%;
    }

    .section-title{
        font-size:2rem;
    }

    .contact-info,
    .contact-form{
        padding:25px;
    }

    .social-icons{
        justify-content:center;
    }

    .info-item{
        align-items:flex-start;
    }

}

/* ==========================
   FOOTER
========================== */

.site-footer{
    background:#0f172a;
    color:#fff;
    padding-top:70px;
    margin-top:50px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:40px;
    max-width:1200px;
    margin:auto;
    padding:0 8% 50px;
}

/* FOOTER TITLES */

.footer-section h3{
    font-size:1.5rem;
    margin-bottom:20px;
    color:#3b82f6;
}

/* FOOTER TEXT */

.footer-section p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:10px;
}

/* QUICK LINKS */

.footer-section ul{
    list-style:none;
}

.footer-section ul li{
    margin-bottom:12px;
}

.footer-section ul li a{
    text-decoration:none;
    color:#cbd5e1;
    transition:.3s;
}

.footer-section ul li a:hover{
    color:#3b82f6;
    padding-left:5px;
}

/* SOCIAL ICONS */

.footer-socials{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-socials a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1e293b;
    color:#fff;
    border-radius:50%;
    font-size:22px;
    text-decoration:none;
    transition:.4s;
}

.footer-socials a:hover{
    background:#2563eb;
    transform:translateY(-5px);
}

/* CONTACT ICONS */

.footer-section p i{
    color:#3b82f6;
    margin-right:10px;
    font-size:18px;
}

/* FOOTER BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    padding:20px;
}

.footer-bottom p{
    color:white;
    font-size:0.95rem;
}

/* ==========================
   ANIMATION
========================== */

.footer-section{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .footer-content{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-section ul li a:hover{
        padding-left:0;
    }

}

/* EXPERIENCE */
.experience {
  padding: 100px 10%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-title p {
  color: #777;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 2px;
  height: 82%;
  background: #2563eb;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 50px;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: blue;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 15px #f5f6f6;
}

.timeline-content {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: .3s;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-date {
  color: #2563eb;
  font-weight: 600;
}

.timeline-content h3 {
  margin: 10px 0;
}

.timeline-content h4 {
  color: blue;
  margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .experience {
    padding: 80px 5%;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}