/* ===== COLOR THEME ===== */
:root {
    --blue: #acffaf;
    --green: #20bf6b;
    --light: #f5f6fa;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial;
    background: var(--light);
}



/* ============================= */
/* 🔥 PREMIUM BUTTON SYSTEM */
/* ============================= */

.btn-primary,
.btn-secondary,
.btn,
.promo-btn,
.view-btn,
.cv-form button,
.image-card button {

    position: relative;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;

    font-weight: 600;
    letter-spacing: 0.5px;

    transition: all 0.35s ease;

    /* 🔥 glass + depth */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* PRIMARY */
.btn-primary,
.btn,
.cv-form button {
    background: linear-gradient(135deg, #20bf6b, #15a863);
    color: #fff;
}

/* SECONDARY */
.btn-secondary {
    background: #fff;
    color: #20bf6b;
    border: 2px solid #20bf6b;
}

/* 🔥 HOVER EFFECT */
.btn-primary:hover,
.btn:hover,
.cv-form button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(23, 176, 0, 0.25);
}

/* SECONDARY HOVER */
.btn-secondary:hover {
    background: #20bf6b;
    color: #fff;
    transform: translateY(-3px);
}

/* 🔥 CLICK EFFECT */
.btn-primary:active,
.btn:active,
.btn-secondary:active {
    transform: scale(0.95);
}

/* ============================= */
/* ✨ SHINE EFFECT */
/* ============================= */

.btn-primary::before,
.btn::before,
.btn-secondary::before,
.promo-btn::before {

    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );

    transform: skewX(-20deg);
}

/* shine animation */
.btn-primary:hover::before,
.btn:hover::before,
.btn-secondary:hover::before,
.promo-btn:hover::before {
    left: 120%;
    transition: 0.7s;
}

/* ============================= */
/* 🔥 GLOW EFFECT */
/* ============================= */

.btn-primary:hover {
    box-shadow:
        0 0 10px rgba(32,191,107,0.6),
        0 0 20px rgba(32,191,107,0.4),
        0 10px 30px rgba(0,0,0,0.2);
}

/* ============================= */
/* 🔥 EXTRA PREMIUM LOOK */
/* ============================= */

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;

    background: linear-gradient(45deg, #20bf6b,#20bf6b);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.3s;
}

.btn-primary:hover::after {
    opacity: 1;
}




/* ===== HERO ===== */
.hero {
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* IMAGE ADD */
    background: url('/assets/images/hero.jpg') no-repeat center center/cover;

    color: rgb(255, 255, 255);
    text-align: center;
    position: relative;
}

/* DARK OVERLAY (TEXT CLEAR દેખાય માટે) */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgb(201, 229, 211);
}

/* TEXT ABOVE OVERLAY */
.hero h1,
.hero p,
.hero-buttons {
    position: relative;
    z-index: 1;


}




/* ===== JOB TYPES ===== */


.job-type-section {
    padding: 60px 20px;
    background: #f5f8f6;
}

.job-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT SIDE */
.job-left {
    flex: 1;
}

.job-heading {
    font-size: 28px;
    margin-bottom: 10px;
}

.job-sub {
    color: #666;
    margin-bottom: 25px;
}

/* GRID (2x2 BOXES) */
.job-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.job-box {
    background: #4a7e44;
    color: #fff;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.job-box:hover {
    background: #4CAF50;
    transform: translateY(-4px);
}

/* RIGHT SIDE IMAGE */
.job-right {
    flex: 1;
    text-align: center;
}

.job-right img {
    width: 100%;
    max-width: 350px;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .job-container {
        flex-direction: column;
        text-align: center;
    }

    .job-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-right img {
        margin-top: 20px;
    }
}

.job-type-section::after {
    content: "";
    display: block;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #4CAF50, transparent);
    margin: 40px auto 0;
}

/* ===== BOX SECTION ===== */
.box-section {
    padding: 40px 20px;
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    text-align: center;
}

.box:hover {
    transform: translateY(-5px);
}

/* ===== SLIDER ===== */
.slider {
    padding: 40px 20px;
    overflow: hidden;
}

.slide-track {
    display: flex;
    gap: 15px;
    animation: scroll 12s linear infinite;
}

.slide {
    min-width: 200px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* ===== COMPANY LOGO ===== */
.companies {
    padding: 40px 20px;
    text-align: center;
}

.logo-track {
    display: flex;
    gap: 30px;
    animation: scroll 15s linear infinite;
}

.logo-track img {
    width: 100px;
}

/* ===== IMAGE GRID ===== */
.image-grid {
    padding: 40px 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.image-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-card button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== CTA ===== */
.cta {
    text-align: center;
    padding: 40px 20px;
}

/* ===== WHATSAPP ===== */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--green);
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
}

/* ===== ANIMATION ===== */
@keyframes scroll {
    0% {transform: translateX(0);}
    100% {transform: translateX(-50%);}
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .main-header {
        flex-direction: column;
        text-align: center;
    }

    .main-header nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 40px 10px;
    }

    .slide {
        min-width: 150px;
    }
}

/* ===== CV FORM MODERN ===== */
.cv-form {
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    animation: fadeIn 0.6s ease;
    transition: all 0.3s ease;
}

/* 🔥 Hover effect */
.cv-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* 🔥 Smooth animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔥 Input styling */
.cv-form input,
.cv-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

/* Focus effect */
.cv-form input:focus,
.cv-form textarea:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 8px rgba(255,107,107,0.3);
}

/* 🔥 Button styling */
.cv-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #447f46, #447f46);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.cv-form button:hover {
    background: linear-gradient(45deg, #447f46, #447f46);
    transform: scale(1.03);
}

.cv-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.cv-form input,
.cv-form select,
.cv-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.cv-form input:focus,
.cv-form select:focus,
.cv-form textarea:focus {
    border-color: #20bf6b;
    outline: none;
}

.cv-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #0a6217, #20bf6b);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.cv-form button:hover {
    opacity: 0.9;
}

/* EXPERIENCED BOX */
#experiencedFields {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

/* ===== ADMIN PANEL ===== */
.admin-container {
    padding: 30px;
}

.admin-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.cv-card {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.cv-card:hover {
    transform: translateY(-3px);
}

.cv-card h3 {
    margin-bottom: 10px;
    color: #0a6217;
}

.cv-card p {
    margin: 5px 0;
    font-size: 14px;
}

/* BUTTON */
.view-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #20bf6b;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

/* MOBILE */
@media(max-width:768px){
    .cv-form {
        margin: 20px;
        padding: 20px;
    }
}
.cv-form label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #0a622c;
    font-size: 14px;
}

/* ============================= */
/* 🔥 GLOBAL FONT IMPROVEMENT */
/* ============================= */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

/* HEADINGS SYSTEM */
h1 {
    font-size: 36px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-weight: 600;
}

h3 {
    font-size: 22px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 500;
}

/* TEXT */
p {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

small {
    font-size: 13px;
    color: #777;
}

/* ============================= */
/* 🔥 HEADER TYPOGRAPHY FIX */
/* ============================= */

.logo {
    font-size: 24px !important;
    font-weight: 700;
}

nav a {
    font-size: 15px !important;
    font-weight: 500;
}

/* ============================= */
/* 🔥 HERO IMPROVEMENT */
/* ============================= */

.hero h1 {
    font-size: 42px !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px !important;
    margin-bottom: 20px;
}

/* ============================= */
/* 🔥 BUTTON FIX */
/* ============================= */

.btn-primary, 
.btn-secondary, 
.btn {
    font-size: 15px !important;
    font-weight: 600;
}

/* ============================= */
/* 🔥 BOX / CARD TYPOGRAPHY */
/* ============================= */

.box h3 {
    font-size: 20px;
    font-weight: 600;
}

.box p {
    font-size: 14px;
}

/* ============================= */
/* 🔥 CV FORM TYPOGRAPHY */
/* ============================= */

.cv-form h2 {
    font-size: 26px;
    font-weight: 700;
}

.cv-form label {
    font-size: 14px;
    font-weight: 600;
}

.cv-form input,
.cv-form select,
.cv-form textarea {
    font-size: 14px;
}

/* ============================= */
/* 🔥 ADMIN PANEL */
/* ============================= */

.admin-title {
    font-size: 24px;
    font-weight: 700;
}

.cv-card h3 {
    font-size: 18px;
    font-weight: 600;
}

.cv-card p {
    font-size: 14px;
}

/* ============================= */
/* 🔥 MOBILE TYPOGRAPHY */
/* ============================= */

@media(max-width:768px){

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 28px !important;
    }

    .hero p {
        font-size: 14px !important;
    }
}





/* SECTION BACKGROUND */
.promo-section {
    width: 100%;
    padding: 50px 15px;
    background: #c9e5d3;
}

/* 🔥 MAIN BOX */
.promo-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: #fff;              /* box background */
    padding: 30px 40px;           /* inner spacing */
    border-radius: 20px;          /* rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* soft shadow */
}

/* IMAGE */
.promo-image img {
    width: 280px;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* CONTENT */
.promo-content {
    max-width: 500px;
}

.promo-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.promo-content p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

/* BUTTON */
.promo-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #c9e5d3, #278b4a);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(99, 241, 151, 0.4);
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    
    .promo-container {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .promo-image img {
        width: 220px;
        margin: auto;
    }

    .promo-content h2 {
        font-size: 22px;
    }
}

