/* HEADER CSS */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f5f5f5;
}

/* =======================
   NAVBAR
======================= */

.navbar{
    gap:30px;
    display:flex;
    align-items:center;
    padding:16px 60px;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    position:relative;
    z-index:999;
}

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

.logo img{
    height:58px;
    width:auto;
    display:block;
}

.nav-container{
    margin-left:auto;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:bolder;
    transition:.3s;
}

.nav-links a:hover{
    color:#b97c1e;
}

.connect-btn{
    padding:12px 24px;
    background:#b97c1e;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.connect-btn:hover{
    background:#173822;
}

/* Desktop Button */

.desktop-connect{
    margin-left:40px;
}

/* Mobile Button */

.mobile-connect{
    display:none;
}

/* Hamburger */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    margin-left:15px;
    color:#173822;
}

/* =======================
   MOBILE
======================= */

@media(max-width:768px){

    .navbar{
        padding:15px 20px;
        flex-wrap:wrap;
    }

    @media(max-width:768px){

    .logo img{
        height:42px;
    }

}

    /* Hide desktop button */

    .desktop-connect{
        display:none;
    }

    /* Show Hamburger */

    .menu-toggle{
        display:block;
        margin-left:auto;
    }

    /* Menu */

    .nav-container{
        width:100%;
        display:none;
        margin-top:15px;
        order:3;
    }

    .nav-container.active{
        display:block;
    }

    .nav-links{
        flex-direction:column;
        gap:15px;
        text-align:center;
        width:100%;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;
        padding:10px;
    }

    /* Show button inside menu */

    .mobile-connect{
        display:block;
        margin-top:10px;
    }

    .mobile-connect .connect-btn{
        display:block;
        width:100%;
        text-align:center;
    }
}

/* =======================
   MENU ANIMATION
======================= */

.nav-container{
    animation:fadeDown .3s ease;
}

@keyframes fadeDown{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

   /* Replace with your image */
    .hero{
    position:relative;
    min-height:100vh;

    background:url("/image/11.png")
    center center/cover no-repeat;

    display:flex;
    align-items:center;
    padding:0 8%;
}
.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(7,13,10,.95) 0%,
        rgba(7,13,10,.88) 35%,
        rgba(7,13,10,.55) 65%,
        rgba(7,13,10,.15) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
}

.hero h1{
    margin-top:20px;
    font-size:4rem;
    line-height:1;
    color:#fff;
    font-family:Georgia, serif;
    margin-bottom:15px;
}

.subtitle{
    font-size:1.25rem;
    color:#d4af37;
    font-weight:600;
    margin-bottom:25px;
}

.subtitle span{
    margin:0 12px;
}

.hero p{
    color:#ddd;
    font-size:1rem;
    line-height:1.8;
    max-width:500px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:60px;
}

.btn{
    padding:18px 32px;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
}

.btn-dark{
    background:#173822;
    color:#fff;
}

.btn-gold{
    background:#d4af37;
    color:#111;
}

.achievement-bar{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.15);
}

.item{
    display:flex;
    gap:12px;
    align-items:center;
}

.item span{
    font-size:32px;
}

.item h4{
    color:#fff;
    margin-bottom:4px;
}

.item p{
    margin:0;
    color:#bbb;
    font-size:.9rem;
}
.btn-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    vertical-align: middle;
}
/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 1024px){

    .hero{
        padding:0 5%;
    }

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

    .achievement-bar{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }
}

@media (max-width: 768px){

    .hero{
        min-height:auto;
        padding:80px 20px 50px;
    }

    .hero-content{
        max-width:100%;
    }

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

    .subtitle{
        font-size:1rem;
    }

    .hero p{
        max-width:100%;
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
        margin-bottom:35px;
    }

    .btn{
        width:100%;
        text-align:center;
        padding:14px 20px;
    }

    .achievement-bar{
        grid-template-columns:1fr 1fr;
        gap:15px;
        padding-top:20px;
    }

    .item{
        gap:8px;
    }

    .item span{
        font-size:24px;
    }

    .item h4{
        font-size:14px;
    }

    .item p{
        font-size:12px;
    }
}

@media (max-width: 480px){

    .hero{
        padding:70px 15px 40px;
    }

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

    .subtitle{
        font-size:14px;
        line-height:1.6;
    }

    .subtitle span{
        margin:0 6px;
    }

    .hero p{
        font-size:14px;
    }

    .achievement-bar{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .btn{
        font-size:14px;
        padding:12px 18px;
    }

    .btn-icon{
        width:14px;
        height:14px;
    }
}

.about{
    background-image:url("/image/22.png");
    background-size:cover;
    background-position:center;
}
.about-text{
    max-width:500px;
    margin:20px 160px 20px 50px;    
}
.achievement-bar1 {
    display: flex;   /* or flex-start */
    align-items: center;
    gap: 70px;                 /* controls spacing between items */
    flex-wrap: wrap;           /* keeps responsive on small screens */
    margin-left: 50px;               /* aligns with about-text */
}

.item1 {
    
    display: flex;
    flex-direction: column;     /* stack icon above text */
    align-items: center;
    gap: 8px;                  /* space between icon and text */
    padding: 8px 12px;
}
.about-text h2 {
    margin-left: 80px;
    font-size: 2.5rem;
    color: #173822;
    margin-bottom: 20px;
}
/* =========================
   ABOUT RESPONSIVE
========================= */
.about{
    position: relative;
}

@media (max-width: 768px){
    .about::before{
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.6);
        z-index: 1;
    }

    .about > *{
        position: relative;
        z-index: 2;
    }
}

.about{
    padding:60px 5%;
}

@media (max-width: 1024px){

    .about-text{
        max-width:100%;
        margin:20px auto;
    }

    .about-text h2{
        margin-left:0;
        text-align:center;
    }

    .achievement-bar1{
        margin-left:0;
    }
}

@media (max-width: 768px){

    .about{
        padding:40px 20px;
    }

    .about-text{
        margin:0;
        max-width:100%;
    }

    .about-text h2{
        font-size:2rem;
        text-align:center;
        margin-left:0;
        margin-bottom:15px;
    }

    .about-text p{
        font-size:14px;
        line-height:1.7;
        text-align:center;
        margin-bottom:15px;
    }

    .achievement-bar1{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        margin:20px 20px 0 0;
        justify-items:center;
    }

    .item1{
        padding:10px;
    }

    .item1 span{
        font-size:28px;
    }

    .item1 h4{
        font-size:14px;
    }
}
.icon-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    vertical-align: middle;
}

@media (max-width: 480px){

    .about-text h2{
        font-size:1.8rem;
    }

    .achievement-bar1{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .item1 span{
        font-size:24px;
    }

    .item1 h4{
        font-size:13px;
    }
}
    .icon21 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon21 img {
    width: 40px; /* adjust as needed */
    height: 40px;
    object-fit: contain;
}
.brands-section {
    padding: 20px;
    text-align: center;
    background: #f7f7f2;
}

.brands-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.brands-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.brand-card {
    background: #fff;
    width: 300px;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: left;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.brand-card{
    transition:all 0.3s ease;
}

.brand-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.brand-card.highlight:hover{
    transform:scale(1.03) translateY(-5px);
}

.brand-card .icon21 {
    margin-left: 85px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #1f3d2b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}
.brand-card .icon22 {
    margin-left: 85px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #9b6e13;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.brand-card h3 {
    margin: 0;
    font-size: 18px;
}

.role {
    font-size: 13px;
    color: gray;
    margin-bottom: 10px;
}

.desc {
    font-size: 14px;
    margin-bottom: 15px;
}

.brand-card ul {
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bt21 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f3d2b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.bt22 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #9b6e13;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.brand-card.highlight {
    transform: scale(1.03);
    border: 2px solid #c9a227;
}

.journey-section{
    padding:20px 0 20px 3%;
    background:#f8f5ef;
    overflow:hidden;
}

.journey-title{
    text-align:center;
    font-size:42px;
    font-family:Georgia, serif;
    color:#173822;
}

.journey-wrapper{
    display:flex;
    align-items:flex-end;
    gap:30px;
}

/* 65% Cards */

.timeline{
    margin:auto;
    width:65%;
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    left:28px;
    top:0;
    bottom:0;
    width:3px;
    background:#d8d0c0;
}

.journey-item{
    display:flex;
    align-items:center;
    margin-bottom:15px;
    position:relative;
}

.timeline-number{
    width:56px;
    height:56px;
    min-width:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    font-weight:700;
    z-index:2;
}

.green{
    background:#173822;
}

.gold{
    background:#b88a1b;
}

.olive{
    background:#8d8444;
}

.journey-card{
    margin-left:20px;
    width:100%;

    background:rgba(255,255,255,.92);

    border-radius:18px;
    padding:14px 18px;

    display:flex;
    align-items:center;
    gap:18px;

    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.journey-icon{
    width:65px;
    height:65px;
    min-width:65px;

    background:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.journey-content h3{
    font-size:19px;
    color:#222;
    margin-bottom:4px;
}

.journey-content p{
    font-size:14px;
    color:#555;
    line-height:1.5;
}

/* 35% Image */

.journey-image{
    width:40%;
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
}

.journey-image img{
    height:auto;
    display:block;
    object-fit:contain;
}

/* Tablet */
@media (max-width: 1024px) {
    .journey-image {
        display: none;
    }
}

@media(max-width:1024px){

    .journey-wrapper{
        flex-direction:column;
    }

    .timeline{
        width:100%;
    }

    .journey-image{
        width:100%;
        justify-content:center;
        margin-top:20px;
    }

    .journey-image img{
        max-width:320px;
    }
}

/* Mobile */

@media(max-width:768px){

    .journey-section{
        padding:40px 20px;
    }

    .journey-title{
        font-size:30px;
        margin-bottom:25px;
    }

    .timeline::before{
        left:20px;
    }

    .timeline-number{
        width:42px;
        height:42px;
        min-width:42px;
        font-size:14px;
    }

    .journey-card{
        margin-left:12px;
        padding:10px;
        gap:10px;
    }

    .journey-icon{
        width:45px;
        height:45px;
        min-width:45px;
        font-size:18px;
    }

    .journey-content h3{
        font-size:15px;
    }

    .journey-content p{
        font-size:12px;
    }

    .journey-image img{
        max-width:220px;
    }
}
@media (max-width: 768px) {
    .journey-image {
        display: none;
    }
}
/* =========================
   CLIENT / BRAND LOGO STRIP
========================= */

.logo-strip{

    background:#f8f5ef;

    padding:30px 0;

    overflow:hidden;

    position:relative;

    border-top:1px solid rgba(212,175,55,.15);
    border-bottom:1px solid rgba(212,175,55,.15);
}

/* Fade Edges */

.logo-strip::before,
.logo-strip::after{

    content:"";

    position:absolute;

    top:0;

    width:120px;
    height:100%;

    z-index:2;
}

.logo-strip::before{

    left:0;

    background:linear-gradient(
        to right,
        #f8f5ef,
        transparent
    );
}

.logo-strip::after{

    right:0;

    background:linear-gradient(
        to left,
        #f8f5ef,
        transparent
    );
}

/* Moving Track */

.logo-track{

    display:flex;

    align-items:center;

    gap:80px;

    width:max-content;

    animation:logoScroll 35s linear infinite;
}

/* Pause On Hover */

.logo-track:hover{
    animation-play-state:paused;
}

/* Logo */

.logo-track img{
    width:auto;
    object-fit:contain;
    opacity:.85;
    transition:.3s ease;
}

.logo-track img:hover{
    transform:scale(1.08);
    opacity:1;
}

/* Animation */

@keyframes logoScroll{

    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Tablet */

@media(max-width:992px){

    .logo-track{

        gap:60px;
    }
    .logo-track img{

        height:60px;
    }
}

/* Mobile */

@media(max-width:768px){

    .logo-strip{

        padding:20px 0;
    }

    .logo-track{

        gap:40px;

        animation:logoScroll 25s linear infinite;
    }

    .logo-track img{

        height:45px;
    }

    .logo-strip::before,
    .logo-strip::after{

        width:50px;
    }
}

/* =========================
   MEDIA HEADING
========================= */

.media-heading{

    background:#f8f5ef;

    text-align:center;

    padding:70px 20px 35px;
}

.media-tag{

    display:inline-block;

    color:#d4af37;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:12px;

    text-transform:uppercase;
}

.media-heading h2{
    color:#173822;
    font-size:42px;
    font-family:Georgia, serif;
    margin-bottom:18px;
    line-height:1.2;
}

.media-heading p{
    max-width:850px;
    margin:auto;
    color:#555;
    font-size:16px;
    line-height:1.3;
}

/* Mobile */

@media(max-width:768px){

    .media-heading{

        padding:55px 20px 25px;
    }

    .media-heading h2{

        font-size:30px;
    }

    .media-heading p{

        font-size:15px;
    }
}
    .vision-section{
    background:#f8f5ef;
    padding:40px 7% 20px;
}

.section-heading{
    text-align:center;
    font-size:42px;
    color:#173822;
    font-family:Georgia, serif;
    margin-bottom:35px;
}

.vision-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.vision-card{
    background:#173822;
    border-radius:16px;
    padding:30px 25px;
    text-align:center;
    color:white;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.vision-icon{
    font-size:42px;
    margin-bottom:15px;
}

.vision-card h3{
    color:#d4af37;
    font-size:24px;
    margin-bottom:12px;
}

.vision-card p{
    line-height:1.6;
    font-size:15px;
}

.highlights-section{
    background:#f8f5ef;
    padding:30px 7% 70px;
}

.highlights-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.highlight-card{
    background:#fff;
    border-radius:14px;
    padding:25px 18px;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    border:1px solid #ececec;
}

.highlight-icon{
    font-size:38px;
    margin-bottom:15px;
}

.highlight-card p{
    font-size:15px;
    color:#333;
    line-height:1.6;
}

/* Tablet */

@media(max-width:1100px){

    .vision-grid{
        grid-template-columns:1fr;
    }

    .highlights-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */

@media(max-width:768px){

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

    .highlights-grid{
        grid-template-columns:1fr;
    }

    .vision-card{
        padding:25px 20px;
    }

    .highlight-card{
        padding:20px;
    }
}
.passion-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:320px;
    background:#173822;
    overflow:hidden;
}

.passion-image{
    width:200%;
    height:100%;
    overflow:hidden;
}

.passion-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.passion-content{
    padding:30px 40px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.passion-content h2{
    font-family:Georgia, serif;
    font-size:30px;
    margin-bottom:15px;
    text-align:center;
}

.passion-divider{
    width:140px;
    height:2px;
    background:#d4af37;
    margin:0 auto 20px;
}

.passion-content blockquote{
    font-family:Georgia, serif;
    font-size:22px;
    line-height:1.5;
    color:#d4af37;
    font-weight:700;
    margin-bottom:20px;
    margin-left:38px;
}

.passion-content p{
    margin-left:35px;
    font-size:15px;
    line-height:1.7;
    color:#f1f1f1;
}

/* Tablet */

@media(max-width:992px){

    .passion-section{
        grid-template-columns:1fr;
    }

    .passion-image{
        height:320px;
    }

    .passion-content{
        padding:35px 25px;
    }

    .passion-content h2{
        font-size:28px;
    }

    .passion-content blockquote{
        font-size:20px;
    }
}

/* Mobile */

@media(max-width:768px){

    .passion-section{
        min-height:auto;
    }

    .passion-image{
        height:250px;
    }

    .passion-content{
        padding:25px 20px;
    }

    .passion-content h2{
        font-size:24px;
    }

    .passion-divider{
        width:100px;
    }

    .passion-content blockquote{
        font-size:18px;
        margin-bottom:15px;
    }

    .passion-content p{
        font-size:14px;
        line-height:1.6;
    }
}
    .contact-section{
    background:#f8f5ef;
    padding:60px 7%;
}

.contact-title{
    text-align:center;
    font-size:42px;
    font-family:Georgia, serif;
    color:#173822;
    margin-bottom:40px;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    outline:none;
}

.contact-form textarea{
    height:140px;
    resize:none;
}

.send-btn{
    width:220px;
    background:#173822;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.send-btn:hover{
    background:#204d2f;
}

.contact-info h3{
    color:#173822;
    font-size:24px;
    margin-bottom:25px;
    line-height:1.5;
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
}

.info-item span{
    font-size:20px;
}

.info-item p{
    color:#444;
    line-height:1.6;
}

.contact-info h4{
    margin-top:30px;
    color:#173822;
    font-size:20px;
}

.social-links{
    margin-top:15px;
    margin-left:10px;
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.social-links a{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#173822;
    font-weight:600;
    transition:.3s;
}

.social-links a:hover{
    color:#d4af37;
    transform:translateY(-3px);
}

.social-links img{
    width:40px;
    height:40px;
    object-fit:contain;

}

@media(max-width:900px){

    .contact-container{
        grid-template-columns:1fr;
    }

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

    .send-btn{
        width:100%;
    }
}

  .footer{

    background:
    linear-gradient(
        90deg,
        rgba(8,19,13,.97) 0%,
        rgba(8,19,13,.93) 35%,
        rgba(8,19,13,.75) 60%,
        rgba(8,19,13,.35) 100%
    ),
    url('/image/55.png');

    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;

    color:#fff;
    position:relative;
    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */

.footer-container{
    margin-right:30%;
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:30px;
    padding:30px 5%;
    position:relative;
    z-index:2;
}

/* =========================
   BOXES
========================= */

.footer-box{
    border-left:1px solid rgba(212,175,55,.12);
    padding-left:20px;
}

.footer-about{
    border-left:none;
    padding-left:0;
}

/* =========================
   ABOUT
========================= */

.footer-about h2{
    font-family:Georgia, serif;
    color:#d4af37;
    font-size:28px;
    margin-bottom:6px;
}

.footer-about h4{
    color:#d4af37;
    font-size:14px;
    font-weight:500;
    margin-bottom:12px;
}

.footer-about p{
    color:#e3e3e3;
    font-size:14px;
    line-height:1.8;
    max-width:280px;
}

.footer-compass{
    margin-top:12px;
    color:#d4af37;
    font-size:22px;
}

/* =========================
   LINKS
========================= */

.footer-box h3{
    color:#d4af37;
    font-size:18px;
    margin-bottom:15px;
}

.footer-box ul{
    list-style:none;
}

.footer-box li{
    margin-bottom:10px;
}

.footer-box a{
    text-decoration:none;
    color:#d7d7d7;
    font-size:14px;
    transition:.3s;
}

.footer-box a:hover{
    color:#d4af37;
    padding-left:5px;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{
    text-align:center;
    padding:12px;
    border-top:1px solid rgba(212,175,55,.12);
    color:#d7d7d7;
    font-size:13px;
    position:relative;
    z-index:2;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}
.footer-social{
    margin-top:15px;
    display:flex;
    gap:12px;
    align-items:center;
}

.footer-social a{
    display:inline-flex;
    transition:.3s;
}

.footer-social a:hover{
    transform:translateY(-3px);
}

.footer-social img{
    width:32px;
    height:32px;
    object-fit:contain;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer{

        background:
            linear-gradient(
                rgba(8,19,13,.95),
                rgba(8,19,13,.95)
            ),
            url('{{ asset("image/55.png") }}');

        background-size:cover;
        background-position:center;
    }

    .footer-container{
        margin-right:0;
        grid-template-columns:1fr;
        gap:25px;
        text-align:center;
        padding:25px 20px;
    }

    .footer-box{
        border-left:none;
        padding-left:0;
    }

    .footer-about p{
        margin:auto;
    }
    .footer-social{
    justify-content:center;
}
    
}

/* ABOUT US PAGE */

   .about-hero{
   background:
    linear-gradient(
        90deg,
        rgba(23,56,34,.97) 0%,
        rgba(23,56,34,.92) 30%,
        rgba(23,56,34,.65) 55%,
        rgba(23,56,34,.15) 75%,
        rgba(23,56,34,0) 100%
    ),
    url('/image/profilepic2.png');
    background-repeat:no-repeat;
    background-size:cover;

    padding:60px 7%;
    min-height:600px;

    display:flex;
    align-items:center;

    overflow:hidden;
}

.about-container{
    width:100%;
}

.about-left{
    width:55%;
    position:relative;
    z-index:2;
}

.about-tag{
    color:#d4af37;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;
}

.about-left h2{
    font-size:48px;
    color:#fff;
    margin-bottom:15px;
    letter-spacing:2px;
    font-family:Georgia, serif;
}

.about-left h3{
    color:#f8f5ef;
    font-size:20px;
    margin-bottom:25px;
}

.about-left p{
    color:#e5e5e5;
    font-size:18px;
    line-height:1.9;
    max-width:650px;
}

.stats-grid{
    margin-top:45px;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:18px;
}

.stat-card{
    background:#d4af37;

    border-radius:16px;

    padding:22px 15px;

    text-align:center;

    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(212,175,55,.25);
}

.stat-card h2{
    color:#173822;
    margin:10px;
    font-size:28px;
}

.stat-card span{
    color:#173822;
    font-size:14px;
    font-weight:600;
}

/* Tablet */

@media(max-width:992px){

    .about-hero{

        background:#173822;

        min-height:auto;

        padding:70px 20px;
    }

    .about-left{
        width:100%;
        text-align:center;
    }

    .about-left p{
        margin:auto;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-left h2{
        font-size:42px;
    }
}

/* Mobile */

@media(max-width:768px){

    .about-hero{
        padding:60px 20px;
    }

    .about-left h2{
        font-size:34px;
    }

    .about-left h3{
        font-size:18px;
    }

    .about-left p{
        font-size:16px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .stat-card{
        padding:18px 10px;
    }

    .stat-card h2{
        font-size:22px;
    }

    .stat-card span{
        font-size:12px;
    }
}


    .bio-values-section{
    padding:40px 7% 20px;
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:30px;
}

.bio-card,
.values-card{
    background:#d4af37;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    transition:.3s;
}

.bio-card:hover,
.values-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,179,164,.12);
}

.bio-card h2,
.values-card h2{
    color:#f8f5ef;
    font-size:28px;
    margin-bottom:25px;
    font-family:Georgia, serif;
}

.bio-card p{
    line-height:1.9;
    margin-bottom:18px;
    font-size:15px;
}

.value-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.value-item:last-child{
    border-bottom:none;
}

.value-item span{
    width:40px;
    height:40px;
    min-width:40px;

    background:#f8f5ef;
    color:#061018;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    font-weight:700;
}

.value-item p{
    font-size:16px;
    line-height:1.6;
    margin:0;
}

/* Tablet */

@media(max-width:992px){

    .bio-values-section{
        grid-template-columns:1fr;
    }
}

/* Mobile */

@media(max-width:768px){

    .bio-values-section{
        padding:30px 20px 50px;
    }

    .bio-card,
    .values-card{
        padding:25px;
    }

    .bio-card h2,
    .values-card h2{
        font-size:24px;
    }

    .bio-card p,
    .value-item p{
        font-size:14px;
    }
}
    
    .timeline-section{
    background:#173822;
    padding:80px 7%;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading span{
    color:azure;
    font-size:24px;
    letter-spacing:2px;
    font-weight:600;
}
.section-heading1 span{
    display:flex;
    justify-content:center;
    align-items:center;
    color:black;
    font-size:35px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:40px;
}

.section-heading h2{
    color:#fff;
    font-size:42px;
    margin-top:10px;
    font-family:Georgia, serif;
}

.timeline-container{
    max-width:900px;
    margin:auto;
    position:relative;
}

.timeline-container::before{
    content:"";
    position:absolute;
    left:110px;
    top:0;
    bottom:0;
    width:3px;
    background:#f8f5ef;
}

.timeline-item{
    display:flex;
    gap:40px;
    margin-bottom:35px;
    position:relative;
}

.timeline-year{
    width:90px;
    min-width:90px;
    color:#f8f5ef;
    font-size:18px;
    font-weight:700;
    text-align:right;
}

.timeline-content{
    position:relative;

    background:#d4af37;
    border:1px solid rgba(255,255,255,.08);

    padding:20px 25px;
    border-radius:16px;

    flex:1;

    transition:.3s;
}

.timeline-content::before{
    content:"";
    position:absolute;
    left:-31px;
    top:25px;

    width:14px;
    height:14px;

    background:#f8f5ef;
    border-radius:50%;
}

.timeline-content:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,179,164,.15);
}

.timeline-content h3{
    color:#fff;
    margin-bottom:8px;
}

.timeline-content p{
    color:black;
    line-height:1.7;
    font-size:14px;
}

/* Tablet */

@media(max-width:768px){

    .timeline-container::before{
        left:20px;
    }

    .timeline-item{
        gap:20px;
    }

    .timeline-year{
        width:60px;
        min-width:60px;
        font-size:14px;
    }

    .timeline-content{
        padding:15px;
    }

    .timeline-content::before{
        left:-18px;
    }

    .section-heading h2{
        font-size:32px;
    }
}

/* Mobile */

@media(max-width:576px){

    .timeline-item{
        flex-direction:column;
        padding-left:40px;
        gap:10px;
    }

    .timeline-year{
        text-align:left;
    }

    .timeline-container::before{
        left:15px;
    }

    .timeline-content::before{
        left:-32px;
    }
}

    .interests-section{
    padding:80px 7%;
}

.interests-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:40px;
    align-items:center;
}

.interest-content{
    border-radius:20px;
    padding: 50px;
}

.interest-content p{
    color:#061018;
    line-height:1.9;
    margin-bottom:18px;
    font-size:20px;
}

.interest-gallery{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-top:40px;
}

.gallery-card{
    overflow:hidden;
    border-radius:18px;
    height:px;
}

.gallery-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.4s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-card:nth-child(1){
    height:280px;
}

.gallery-card:nth-child(4){
    height:280px;
}

/* Tablet */

@media(max-width:992px){

    .interests-grid{
        grid-template-columns:1fr;
    }

    .interest-gallery{
        margin-top:10px;
    }
}

/* Mobile */

@media(max-width:768px){

    .interests-section{
        padding:60px 20px;
    }

    .interest-content{
        padding:25px;
    }

    .interest-content p{
        font-size:14px;
    }

    .gallery-card{
        height:170px;
    }

    .gallery-card:nth-child(1),
    .gallery-card:nth-child(4){
        height:220px;
    }
}
    .leadership-section{
    background:#173822;
    padding:80px 7%;
}

.leadership-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    align-items:center;
    margin-top:40px;
}

.leader-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-icon img {
    width: 40px; /* adjust as needed */
    height: 50px;
    object-fit: contain;
}

.leadership-image{
    overflow:hidden;
    border-radius:20px;
}

.leadership-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.leadership-content{
    background:#d4af37;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
}

.leadership-content p{
    color:black;
    line-height:1.9;
    margin-bottom:18px;
    font-size:15px;
}

.leadership-cards{
    margin-top:40px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.leader-card{
    background:#d4af37;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:25px;
    text-align:center;

    transition:.3s;
}

.leader-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,179,164,.15);
}

.leader-icon{
    font-size:32px;
    margin-bottom:15px;
}

.leader-card h3{
    color:#fff;
    margin-bottom:10px;
}

.leader-card p{
    color:black;
    font-size:14px;
    line-height:1.6;
}

/* Tablet */

@media(max-width:992px){

    .leadership-grid{
        grid-template-columns:1fr;
    }

    .leadership-cards{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */

@media(max-width:768px){

    .leadership-section{
        padding:60px 20px;
    }

    .leadership-content{
        padding:25px;
    }

    .leadership-cards{
        grid-template-columns:1fr;
    }

    .leader-card{
        padding:20px;
    }
}

    /* =========================
   CONTACT HERO
========================= */

.contact-hero{
    background:#173822;
    padding: 45px 7%;
    text-align:center;
}

.contact-tag{
    color:#d4af37;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.contact-hero h1{
    color:#fff;
    font-size:58px;
    margin:15px 0 25px;
    font-family:Georgia, serif;
}

.contact-hero p{
    color:#e5e5e5;
    max-width:850px;
    margin:0 auto 15px;
    line-height:1.9;
    font-size:16px;
}

/* =========================
   CONTACT CONTENT
========================= */

.contact-content{
    background:#f8f5ef;
    padding:80px 7%;

    display:grid;
    grid-template-columns:40% 60%;
    gap:30px;
}

.contact-left,
.contact-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* =========================
   CARDS
========================= */

.contact-card,
.contact-form-card{
    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.contact-card:hover,
.contact-form-card:hover{
    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(212,175,55,.18);
}

.contact-card h2,
.contact-form-card h2{
    color:#173822;
    margin-bottom:25px;
    font-size:28px;
    font-family:Georgia, serif;
}

.contact-card h3{
    color:#173822;
    margin-bottom:12px;
}

.contact-card p{
    color:#555;
    line-height:1.8;
}

.contact-item{
    margin-bottom:20px;
}

.contact-item h4{
    color:#b88a1b;
    margin-bottom:8px;
}

.contact-item a{
    color:#173822;
    text-decoration:none;
    font-weight:600;
}

.contact-item a:hover{
    color:#d4af37;
}

/* =========================
   SOCIAL LINKS
========================= */

.social-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.social-links a{
    color:#173822;
    text-decoration:none;
    font-weight:600;

    padding:12px 15px;

    background:#f8f5ef;

    border-radius:10px;

    transition:.3s;
}

.social-links a:hover{
    background:#173822;
    color:#fff;
}

.website-link{
    display:inline-block;

    margin-top:20px;

    color:#d4af37;

    text-decoration:none;

    font-weight:700;
}

/* =========================
   FORM
========================= */

.contact-form-card form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form-card input,
.contact-form-card textarea{

    width:100%;

    padding:14px 16px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    font-size:15px;

    transition:.3s;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus{

    border-color:#d4af37;
}

.contact-form-card button{

    background:#173822;

    color:#fff;

    border:none;

    padding:15px;

    border-radius:10px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.contact-form-card button:hover{

    background:#d4af37;

    color:#173822;
}
.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.social-links a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* =========================
   MAP
========================= */

.map-section{

    background:#f8f5ef;

    padding:0 7% 80px;
}

.map-section iframe{

    width:100%;

    height:450px;

    border:none;

    border-radius:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* =========================
   CTA
========================= */

.contact-cta{

    background:#173822;

    text-align:center;

    padding:80px 20px;
}

.contact-cta h2{

    color:#fff;

    font-size:42px;

    margin-bottom:20px;

    font-family:Georgia, serif;
}

.contact-cta p{

    color:#e5e5e5;

    max-width:700px;

    margin:0 auto 30px;

    line-height:1.8;
}

.contact-cta a{

    display:inline-block;

    padding:14px 30px;

    background:#d4af37;

    color:#173822;

    text-decoration:none;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.contact-cta a:hover{

    background:#fff;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .contact-content{

        grid-template-columns:1fr;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .contact-hero{

        padding:70px 20px;
    }

    .contact-hero h1{

        font-size:38px;
    }

    .contact-content{

        padding:60px 20px;
    }

    .contact-card,
    .contact-form-card{

        padding:25px;
    }

    .contact-card h2,
    .contact-form-card h2{

        font-size:24px;
    }

    .map-section{

        padding:0 20px 60px;
    }

    .map-section iframe{

        height:300px;
    }

    .contact-cta{

        padding:60px 20px;
    }

    .contact-cta h2{

        font-size:30px;
    }
}

    .portfolio-table td a{
    color:#173822;
    text-decoration:none;
    font-weight:600;
}

.portfolio-table td a:hover{
    color:#d4af37;
}
.portfolio-section{
    background:#f8f5ef;
    padding:80px 7%;
}

.portfolio-header{
    text-align:center;
    margin-bottom:50px;
}

.portfolio-header h1{
    font-size:52px;
    color:#173822;
    font-family:Georgia, serif;
    margin-bottom:15px;
}

.portfolio-header p{
    color:#b88a1b;
    font-size:22px;
    font-weight:600;
}

.portfolio-table-wrapper{
    overflow-x:auto;
}

.portfolio-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.portfolio-table th{
    background:#173822;
    color:#fff;
    padding:20px;
    font-size:18px;
}

.portfolio-table td{
    padding:22px;
    border-bottom:1px solid #eee;
    line-height:1.8;
}

.portfolio-table td:first-child{
    width:250px;
    font-weight:700;
    color:#173822;
    background:#faf8f1;
}

.portfolio-table tr:hover{
    background:#fffdf7;
}
td a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

td a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

@media(max-width:768px){

    .portfolio-section{
        padding:60px 20px;
    }

    .portfolio-header h1{
        font-size:36px;
    }

    .portfolio-header p{
        font-size:18px;
    }

    .portfolio-table td,
    .portfolio-table th{
        padding:15px;
        font-size:14px;
    }
}

@media (max-width: 992px){

    .services-grid{
        grid-template-columns:1fr 1fr;
    }

    .skills-grid{
        grid-template-columns:1fr;
    }
}

/* Mobile */

@media (max-width: 768px){

    .services-hero{
        padding:70px 20px;
    }

    .services-hero h1{
        font-size:38px;
        line-height:1.2;
    }

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

    .services-section,
    .skills-section,
    .achievement-section{
        padding:60px 20px;
    }

    .services-section h2,
    .skills-section h2,
    .achievement-section h2{
        font-size:30px;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .skills-grid{
        grid-template-columns:1fr;
    }

    .service-card,
    .skill-box,
    .achievement-card{
        padding:20px;
    }
}

/* Small Mobile */

@media (max-width: 480px){

    .services-hero h1{
        font-size:30px;
    }

    .services-section h2,
    .skills-section h2,
    .achievement-section h2{
        font-size:26px;
    }

    .service-card h3{
        font-size:18px;
    }

    .service-card p,
    .achievement-card{
        font-size:14px;
        line-height:1.7;
    }
}

    .service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}
    .services-section{
    background:#f8f5ef;
    padding:80px 7%;
}

.services-section h2{
    text-align:center;
    color:#173822;
    font-size:42px;
    margin-bottom:50px;
    font-family:Georgia, serif;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(212,175,55,.2);
}

.service-card h3{
    color:#173822;
    margin-bottom:15px;
}

.service-card p{
    line-height:1.8;
    color:#555;
}
    .skills-section{
    background:#173822;
    padding:80px 7%;
}

.skills-section h2{
    color:#fff;
    text-align:center;
    margin-bottom:40px;
    font-size:42px;
}

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

.skill-box{
    background:#214a2f;
    color:#fff;
    padding:25px;
    border-radius:15px;
    border-left:5px solid #d4af37;
}
    .achievement-section{
    background:#f8f5ef;
    padding:80px 7%;
}

.achievement-section h2{
    text-align:center;
    color:#173822;
    margin-bottom:40px;
}

.achievement-list{
    display:grid;
    gap:20px;
}

.achievement-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    border-left:6px solid #d4af37;
}

@media (max-width: 992px){

    .services-grid{
        grid-template-columns:1fr 1fr;
    }

    .skills-grid{
        grid-template-columns:1fr;
    }
}

/* Mobile */

@media (max-width: 768px){

    .services-hero{
        padding:70px 20px;
    }

    .services-hero h1{
        font-size:38px;
        line-height:1.2;
    }

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

    .services-section,
    .skills-section,
    .achievement-section{
        padding:60px 20px;
    }

    .services-section h2,
    .skills-section h2,
    .achievement-section h2{
        font-size:30px;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .skills-grid{
        grid-template-columns:1fr;
    }

    .service-card,
    .skill-box,
    .achievement-card{
        padding:20px;
    }
}

/* Small Mobile */

@media (max-width: 480px){

    .services-hero h1{
        font-size:30px;
    }

    .services-section h2,
    .skills-section h2,
    .achievement-section h2{
        font-size:26px;
    }

    .service-card h3{
        font-size:18px;
    }

    .service-card p,
    .achievement-card{
        font-size:14px;
        line-height:1.7;
    }
}
.services-hero{
    background:#173822;
    padding:90px 7%;
    text-align:center;
}

.services-content{
    max-width:900px;
    margin:auto;
}

.services-content span{
    display:inline-block;
    color:#d4af37;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.services-content h1{
    color:#fff;
    font-size:58px;
    line-height:1.2;
    font-family:Georgia, serif;
    margin-bottom:25px;
}

.services-content p{
    color:#e5e5e5;
    font-size:17px;
    line-height:1.9;
    max-width:750px;
    margin:auto;
}

/* Tablet */

@media(max-width:992px){

    .services-content h1{
        font-size:46px;
    }
}

/* Mobile */

@media(max-width:768px){

    .services-hero{
        padding:70px 20px;
    }

    .services-content h1{
        font-size:34px;
    }

    .services-content p{
        font-size:15px;
        line-height:1.8;
    }

    .services-content span{
        font-size:13px;
    }
}
    



    

    
    
    
    







    