:root {
    --orange: #F36C21;
}


/* GLOBAL FONT */
body {
    font-family: 'Poppins', sans-serif;
}

/* HEADINGS FONT (Premium Look) */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}



/* HERO */
.about-hero {
    height: 80vh;
    background: url('../images/service.jpg') center/cover no-repeat;
    position: relative;

    
}

.about-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
}

/* ABOUT */
.about-section {
    padding: 80px 0;
}

.main-img {
    width: 100%;
    border-radius: 20px;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.about-list {

  font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.floating-img {
    position: absolute;
    width: 80px;
    animation: float 3s infinite ease-in-out;
}

.flight { top: -20px; left: -20px; }
.passport { bottom: -20px; right: -20px; }

@keyframes float {
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-15px)}
}

/* MEMBERS */
.members-section {
    padding: 60px;
    background: #f9f9f9;
}

.logo-card {
    border: 2px solid var(--orange);
    padding: 15px;
    border-radius: 10px;
}

.logo-card img {
    width: 100%;
}


.main-img {
    width: 100%;
    border-radius: 20px;
}

/* Common icon style */
.floating-icon {
    position: absolute;
    font-size: 35px;
    color: #ff6b00; /* Orange theme */
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
}

/* Positions */
.flight {
    top: 10%;
    left: -20px;
}

.passport {
    bottom: 10%;
    right: -20px;
}

.visa {
    top: 50%;
    left: -30px;
}

.tour {
    top: 20%;
    right: -30px;
}

.ticket {
    bottom: 20%;
    left: 40%;
}

/* Animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}



/* VISION */
/* SECTION */
.vision-section {
    padding: 80px 0;
}

/* CARD BASE */
.vm-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

/* GRADIENT FRAME */
.vm-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #ff6600, #ffcc00, #ff3300);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* DIFFERENT COLORS */
.vm-card.vision::before {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.vm-card.mission::before {
    background: linear-gradient(135deg, #ff6600, #ff3300);
}

/* ICON BOX (3D STYLE) */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;

    /* 3D EFFECT */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2),
                inset 0 -4px 8px rgba(0,0,0,0.2);
}

/* ICON COLORS */
.vm-card.vision .icon-box {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.vm-card.mission .icon-box {
    background: linear-gradient(135deg, #ff6600, #ff3300);
}

/* ICON ANIMATION */
.icon-box i {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

/* HOVER EFFECT */
.vm-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* RIGHT CONTENT */
.goal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.goal-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* LIST */
.goal-list {
    list-style: none;
    padding: 0;
}

.goal-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .vision-section {
        text-align: center;
    }
}


/* SECTION */
.certificate-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff7f0, #ffffff);
}

/* TITLE */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.section-subtitle {
    color: #777;
    margin-bottom: 15px;
}

/* COUNT */
.certificate-count {
    font-size: 18px;
    font-weight: 600;
    color: #ff6600;
    margin-bottom: 40px;
}

.certificate-count span {
    font-size: 28px;
    font-weight: bold;
}

/* FLEX WRAPPER */
.certificate-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARD BASE */
.certificate-card {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

/* COLORFUL BORDER FRAME */
.certificate-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 3px;
    background: linear-gradient(45deg, #ff6600, #ffcc00, #ff6600);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* IMAGE */
.certificate-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* HORIZONTAL CERTIFICATE */
.certificate-card.horizontal {
    width: 350px;
    height: 220px;
}

/* VERTICAL CERTIFICATE */
.certificate-card.vertical {
    width: 220px;
    height: 320px;
}

/* HOVER EFFECT */
.certificate-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


/* SMOOTH ENTRY */
[data-aos] {
    transition-timing-function: ease-in-out !important;
}

/* GLOW ANIMATION ON HOVER */
.certificate-card:hover::before {
    background: linear-gradient(45deg, #ff6600, #ffcc00, #ff6600, #ff3300);
    animation: glowMove 2s linear infinite;
}

@keyframes glowMove {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* IMAGE ZOOM EFFECT */
.certificate-card img {
    transition: transform 0.4s ease;
}

.certificate-card:hover img {
    transform: scale(1.05);
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .certificate-card.horizontal,
    .certificate-card.vertical {
        width: 100%;
        height: auto;
    }
}

/* SECTION */
.timeline-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fbff, #ffffff);
}

/* TITLE */
.timeline-title {
    font-size: 34px;
    font-weight: 700;
}

.timeline-subtitle {
    color: #666;
    margin-bottom: 50px;
}

/* TIMELINE WRAPPER */
.timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

/* CENTER LINE */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(#ff6600, #ffcc00);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

/* ITEM */
.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

/* LEFT */
.timeline-item.left {
    left: 0;
}

/* RIGHT */
.timeline-item.right {
    left: 50%;
}

/* CONTENT CARD */
.timeline-item .content {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s;
}

/* HOVER */
.timeline-item .content:hover {
    transform: translateY(-8px);
}

/* ICON */
.timeline-icon {
    position: absolute;
    top: 25px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6600, #ff3300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    z-index: 1;

    /* 3D EFFECT */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3),
                inset 0 -5px 10px rgba(0,0,0,0.2);
}

/* RIGHT SIDE ICON FIX */
.timeline-item.right .timeline-icon {
    left: -30px;
}

/* DOT */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    right: -9px;
    background: #fff;
    border: 4px solid #ff6600;
    top: 35px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -9px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item .timeline-icon {
        left: 0;
        right: auto;
    }

    .timeline-item::after {
        left: 10px;
    }
}