
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html, body {
    overflow-x: hidden; 
    width: 100%;
    scroll-behavior: smooth;
}

body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:#333;
    background:#ffffff;
}

/* ============================= */
/* MAIN SECTION */
/* ============================= */

.main-section{
    width:100%;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about{
    background:#f0f4ff;
    padding:60px 40px;
    border-radius:15px;
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

/* ABOUT HEADING */

.about-header{
    text-align:center;
    margin-bottom:50px;
}

.about-heading{
    font-size:48px;
    font-weight:800;
    background:linear-gradient(90deg,#0b63ce,#1dd1a1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    position:relative;
    display:inline-block;
}

/* underline */

.about-heading::after{
    content:"";
    width:100px;
    height:5px;
    background:linear-gradient(90deg,#0b63ce,#1dd1a1);
    position:absolute;
    left:23%;
    bottom:-15px;
    transform:translateX(-50%);
    border-radius:5px;
}

/* ============================= */
/* ABOUT CONTENT */
/* ============================= */

.about-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:50px;
}

/* IMAGE */

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    width:100%;
    box-shadow:0 12px 28px rgba(0,0,0,0.1);
}

.about-image img{
    width:100%;
    display:block;
    transition:transform .6s ease;
}

.about-image:hover img{
    transform:scale(1.05);
}

/* overlay effect */

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(30,144,255,0.15);
    opacity:0;
    transition:opacity .5s;
}

.about-image:hover .overlay{
    opacity:1;
}

/* TEXT */

.about-text{
    max-width:800px;
    font-size:1.15rem;
    line-height:1.8;
    text-align:center;
    color:#1f2937;
    font-weight:bold;
}

/* ============================= */
/* CLIENT SECTION */
/* ============================= */

.client-list{
    background:#f9f9f9;
    padding:60px 40px;
    margin-top:80px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.client-list h2{
    font-size:2.4rem;
    color:#1f2937;
    margin-bottom:20px;
}

.client-list p{
    font-size:1.1rem;
    color:#4b5563;
    margin-bottom:40px;
}

/* CLIENT GRID */

.clients{
    list-style:none;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

/* CLIENT CARD */

.clients li{
    background:#fff;
    padding:18px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:all .3s ease;
}

.clients li:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 24px rgba(0,0,0,0.12);
}

.clients a{
    text-decoration:none;
    color:#111827;
    font-weight:500;
}

/* MORE CLIENTS */

.more-clients{
    margin-top:30px;
    font-style:italic;
    color:#6b7280;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (min-width:768px){

    .about-content{
        flex-direction:row;
        gap:60px;
    }

    .about-image,
    .about-text{
        flex:1;
        max-width:50%;
    }

    .about-text{
        text-align:left;
    }

}

@media (max-width:600px){

    .client-list h2{
        font-size:2rem;
    }

    .client-list p{
        font-size:1rem;
    }

}

/* ================= TEAM STRUCTURE ================= */

.team-structure {
    background: #f7f9fc;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 40px;
    margin-bottom: 40px;
    color: #0b63ce;
}

/* slider */

.team-slider {
    max-width: 900px;
    margin: auto;
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 60px;
    padding-top: 20px;
}

/* scrollbar styling */

.team-slider::-webkit-scrollbar {
    height: 8px;
}

.team-slider::-webkit-scrollbar-track {
    background: #e4e7ec;
    border-radius: 10px;
}

.team-slider::-webkit-scrollbar-thumb {
    background: #0b63ce;
    border-radius: 10px;
}

/* cards */

.team-card {
    flex: 0 0 350px;
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff, #eef4ff);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}

.team-card span {
    display: block;
    color: #0b63ce;
    font-weight: 600;
    margin: 10px 0;
}

.team-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .team-slider {
        display: block;       /* remove flex / horizontal scroll */
        overflow: visible;    /* no horizontal scroll */
        padding-bottom: 0;
    }

    .team-card {
        flex: none;           /* remove fixed width */
        width: 100%;          /* full width of container */
        margin-bottom: 20px;  /* spacing between stacked cards */
    }

    /* Optional: remove hover effect on mobile */
    .team-card:hover {
        transform: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    }
}


/* ================= FOOTER ================= */

.footer {
    background: #0f172a;
    color: #fff;
    padding: 70px 8% 25px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

/* headings */

.footer-col h3 {
    margin-bottom: 20px;
    color: #ff7a18;
    font-size: 20px;
}

.company h2 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 15px;
}

/* links */

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 15px;
    transition: .3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ff7a18;
    transform: translateX(6px);
}

/* social icons */

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1e293b;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    font-size: 16px;
    color: white;
    transition: .3s;
}

.social-icons a:hover {
    background: #ff7a18;
    transform: translateY(-3px);
}

/* bottom */

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 18px;
    font-size: 14px;
    color: #94a3b8;
}

@media(max-width:600px) {

    .footer-container {
        text-align: center;

    }
}

/* ================= NAVBAR ================= */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0F172A;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.logo img {
    height: 35px;
}

.logo span {
    color: whitesmoke;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: .35s;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: white;
    transition: .35s;
}

.nav-menu a:hover {
    color: white;
    transform: scale(1.1);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: whitesmoke;
    flex-direction: column;
    gap: 5px;
}

.nav-menu.active {
    display: flex;
}


.menu-toggle span {
    width: 26px;
    height: 3px;
    background: white;
    display: block;
    transition: 0.3s;
}

/* animation when active */

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


@media(max-width:768px) {

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: -100%;
        width: 220px;
        background: #ff6600;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
        transition: 0.4s;
        gap:17px;
    }

    .nav-menu.active {
        right: 5%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu a {
        color: white;
    }

}




