/* =====================================================
   ROOT
===================================================== */

:root {

    --bg: #fae9ed;
    --bg-soft: #fff8f9;
    --bg-pink: #f5dce2;

    --white: #ffffff;

    --text: #292329;
    --text-soft: #51484d;
    --muted: #7f747a;

    --pink: #d96d89;
    --pink-dark: #b94f70;
    --pink-light: #efadbc;

    --border: rgba(90, 50, 60, 0.10);

    --shadow:
        0 25px 70px rgba(100, 45, 60, 0.12);

    --shadow-soft:
        0 12px 35px rgba(100, 45, 60, 0.08);

    --container: 1180px;

    --radius: 26px;

}



/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background:
        linear-gradient(
            135deg,
            #fae9ed,
            #fff8f9 50%,
            #f5dce2
        );

    overflow-x: hidden;

}

a {

    text-decoration: none;

    color: inherit;

}

button,
input,
textarea,
select {

    font-family: inherit;

}



/* =====================================================
   BACKGROUND
===================================================== */

.background {

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -2;

    overflow: hidden;

}

.background::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(90, 50, 60, 0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(90, 50, 60, 0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

}

.glow {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    filter: blur(90px);

    opacity: 0.25;

}

.glow-1 {

    top: 5%;

    left: -180px;

    background: #efadbc;

}

.glow-2 {

    top: 45%;

    right: -180px;

    background: #e7b9c5;

}

.glow-3 {

    bottom: 5%;

    left: 30%;

    background: #f5dce2;

}



/* =====================================================
   COMMON
===================================================== */

.section-container {

    width: min(
        var(--container),
        90%
    );

    margin: auto;

}

.section-label {

    display: inline-block;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.20em;

    color: var(--pink-dark);

}

.section-heading {

    margin-bottom: 70px;

}

.section-heading h2 {

    max-width: 850px;

    margin-top: 18px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(42px, 6vw, 76px);

    line-height: 1.05;

    font-weight: 600;

}

.section-heading h2 span {

    color: var(--pink);

    font-style: italic;

}



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

.navbar {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    padding: 20px 0;

    background:
        rgba(255, 248, 249, 0.78);

    backdrop-filter: blur(20px);

    border-bottom:
        1px solid var(--border);

}

.nav-container {

    width: min(
        1250px,
        92%
    );

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.logo {

    font-size: 27px;

    font-weight: 800;

    letter-spacing: -0.06em;

}

.logo span {

    color: var(--pink);

}

.nav-links {

    display: flex;

    align-items: center;

    gap: 30px;

}

.nav-links a {

    position: relative;

    font-size: 13px;

    font-weight: 600;

    color: var(--muted);

    transition: 0.3s;

}

.nav-links a:hover,
.nav-links a.active {

    color: var(--text);

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--pink);

    transition: 0.3s;

}

.nav-links a:hover::after,
.nav-links a.active::after {

    width: 100%;

}

.nav-contact {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 18px;

    border-radius: 50px;

    background: var(--text);

    color: white;

    font-size: 12px;

    font-weight: 700;

    transition: 0.3s;

}

.nav-contact:hover {

    background: var(--pink);

    transform: translateY(-2px);

}

.menu-btn {

    display: none;

    border: 0;

    background: transparent;

    font-size: 22px;

    cursor: pointer;

}



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

.hero-section {

    min-height: 115vh;

    padding:
        190px 0
        100px;

    position: relative;

    display: flex;

    align-items: center;

}

.hero-container {

    width: min(
        var(--container),
        90%
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    gap: 80px;

    align-items: center;

}

.welcome-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 14px;

    background:
        rgba(255, 255, 255, 0.65);

    border: 1px solid var(--border);

    border-radius: 50px;

    color: var(--muted);

    font-size: 11px;

    font-weight: 600;

}

.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #73b37a;

    box-shadow:
        0 0 0 5px
        rgba(115, 179, 122, 0.12);

}

.hero-kicker {

    margin-top: 45px;

    font-size: 14px;

    letter-spacing: 0.25em;

    font-weight: 700;

    color: var(--pink-dark);

}

.home-content h1 {

    margin-top: 12px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(64px, 8vw, 110px);

    line-height: 0.95;

    font-weight: 600;

    letter-spacing: -0.05em;

}

.gradient-text {

    color: var(--pink);

    font-style: italic;

}

.hero-title {

    margin-top: 20px;

    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}

.outline-text {

    font-size:
        clamp(30px, 4vw, 52px);

    font-weight: 800;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(41, 35, 41, 0.25);

}

.typing-title {

    font-size:
        clamp(30px, 4vw, 52px);

    font-weight: 800;

}

.hero-description {

    max-width: 650px;

    margin-top: 30px;

    font-size: 17px;

    line-height: 1.85;

    color: var(--muted);

}

.hero-education {

    margin-top: 30px;

    display: flex;

    gap: 15px;

    align-items: center;

}

.hero-education > i {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: var(--bg-pink);

    color: var(--pink-dark);

}

.hero-education strong {

    display: block;

    font-size: 14px;

}

.hero-education span {

    display: block;

    margin-top: 4px;

    font-size: 12px;

    color: var(--muted);

}

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 35px;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 23px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s;

}

.btn-primary {

    background: var(--text);

    color: white;

}

.btn-primary:hover {

    background: var(--pink);

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px
        rgba(217, 109, 137, 0.22);

}

.btn-outline {

    border: 1px solid var(--border);

    background: rgba(255,255,255,0.5);

}

.btn-outline:hover {

    background: white;

    transform: translateY(-3px);

}

.social-row {

    display: flex;

    gap: 10px;

    margin-top: 35px;

}

.social-row a {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid var(--border);

    background:
        rgba(255,255,255,0.55);

    color: var(--muted);

    transition: 0.3s;

}

.social-row a:hover {

    background: var(--text);

    color: white;

    transform: translateY(-4px);

}



/* =====================================================
   PROFILE
===================================================== */

.home-image {

    display: flex;

    justify-content: center;

}

.profile-showcase {

    width: 480px;
    height: 580px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}

.profile-light {

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(217, 109, 137, 0.20);

    filter: blur(60px);

}

.profile-orbit {

    position: absolute;

    border: 1px solid
        rgba(185, 79, 112, 0.20);

    border-radius: 50%;

}

.orbit-1 {

    width: 460px;
    height: 460px;

    transform: rotate(-20deg);

}

.orbit-2 {

    width: 390px;
    height: 520px;

    transform: rotate(30deg);

}

.profile-frame {

    width: 390px;
    height: 390px;

    padding: 10px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #efadbc
        );

    box-shadow: var(--shadow);

    z-index: 3;

}

.profile-frame-inner {

    width: 100%;
    height: 100%;

    border-radius: 50%;

    overflow: hidden;

    background: #f5dce2;

}

.profile-photo {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

}

.profile-label {

    position: absolute;

    top: 45px;
    left: 25px;

    z-index: 5;

    padding: 10px 14px;

    border-radius: 50px;

    background: white;

    box-shadow: var(--shadow-soft);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.12em;

}

.profile-label span {

    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 5px;

    border-radius: 50%;

    background: var(--pink);

}

.profile-project-card {

    position: absolute;

    right: 0;
    bottom: 75px;

    width: 185px;

    padding: 20px;

    background:
        rgba(255,255,255,0.88);

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow-soft);

    z-index: 5;

}

.profile-project-card small {

    display: block;

    color: var(--muted);

    font-size: 8px;

    letter-spacing: 0.12em;

}

.profile-project-card strong {

    display: block;

    margin-top: 7px;

    font-size: 14px;

}

.profile-project-card span {

    display: inline-block;

    margin-top: 8px;

    color: var(--pink-dark);

    font-size: 10px;

}

.profile-number {

    position: absolute;

    left: 20px;
    bottom: 70px;

    font-size: 80px;

    font-weight: 800;

    color:
        rgba(41,35,41,0.05);

}

.floating-icon {

    position: absolute;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: white;

    color: var(--pink-dark);

    box-shadow: var(--shadow-soft);

    z-index: 6;

}

.floating-code {

    top: 130px;
    right: 30px;

}

.floating-bulb {

    left: 30px;
    bottom: 170px;

}

.scroll-indicator {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: 0.18em;

}



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

.about-section {

    padding: 150px 0;

    background:
        rgba(255,255,255,0.38);

}

.about-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr;

    gap: 20px;

}

.about-card {

    min-height: 340px;

    padding: 35px;

    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    background:
        rgba(255,255,255,0.72);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-soft);

    transition: 0.4s;

}

.about-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}

.about-main {

    background:
        linear-gradient(
            135deg,
            #f5dce2,
            #fff8f9
        );

}

.card-number {

    position: absolute;

    top: 25px;
    right: 25px;

    color: rgba(41,35,41,0.25);

    font-size: 11px;

    font-weight: 800;

}

.about-card h3 {

    margin-top: 50px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 30px;

}

.about-card p {

    margin-top: 18px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 14px;

}

.about-signature {

    position: absolute;

    right: 25px;
    bottom: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 80px;

    color:
        rgba(217,109,137,0.12);

}

.about-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 17px;

    background: var(--bg-pink);

    color: var(--pink-dark);

    font-size: 22px;

}



/* =====================================================
   COLLEGE
===================================================== */

.college-section {

    padding: 150px 0;

}

.college-container {

    width: min(
        var(--container),
        90%
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 100px;

    align-items: center;

}

.college-visual {

    min-height: 440px;

    position: relative;

    border-radius: 35px;

    background:
        linear-gradient(
            145deg,
            #f5dce2,
            #fff8f9
        );

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}

.college-glow {

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        rgba(217,109,137,0.20);

    filter: blur(50px);

}

.college-icon {

    width: 150px;
    height: 150px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    color: var(--pink-dark);

    font-size: 60px;

    box-shadow: var(--shadow);

    z-index: 2;

}

.college-badge {

    position: absolute;

    top: 25px;
    left: 25px;

    font-size: 10px;

    letter-spacing: 0.15em;

    font-weight: 800;

    color: var(--pink-dark);

}

.small-title {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.18em;

    color: var(--pink-dark);

}

.college-info h2 {

    margin-top: 15px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(40px, 5vw, 68px);

    line-height: 1.05;

}

.college-location {

    margin-top: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--pink-dark);

    font-size: 14px;

    font-weight: 600;

}

.college-info p {

    max-width: 650px;

    margin-top: 25px;

    color: var(--muted);

    line-height: 1.9;

}

.college-tags {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin-top: 25px;

}

.college-tags span {

    padding: 9px 13px;

    border-radius: 50px;

    background: var(--bg-pink);

    color: var(--pink-dark);

    font-size: 11px;

    font-weight: 600;

}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 30px;

    font-size: 13px;

    font-weight: 700;

    color: var(--pink-dark);

}

.text-link:hover {

    text-decoration: underline;

}



/* =====================================================
   STATS
===================================================== */

.stats-section {

    padding: 40px 0 150px;

}

.stats-container {

    width: min(
        var(--container),
        90%
    );

    margin: auto;

    display: grid;

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

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}

.stat-box {

    padding: 55px 25px;

    text-align: center;

    border-right:
        1px solid var(--border);

}

.stat-box:last-child {

    border-right: none;

}

.stat-box strong {

    display: block;

    font-family:
        "Playfair Display",
        serif;

    font-size: 55px;

    color: var(--pink-dark);

}

.stat-box span {

    display: block;

    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;

}



/* =====================================================
   SERVICES
===================================================== */

.services-section {

    padding: 150px 0;

    background:
        rgba(255,255,255,0.4);

}

.services-grid {

    display: grid;

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

    gap: 18px;

}

.service-card {

    min-height: 380px;

    padding: 30px;

    position: relative;

    border-radius: var(--radius);

    background: white;

    border: 1px solid var(--border);

    transition: 0.4s;

}

.service-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow);

}

.service-number {

    position: absolute;

    right: 25px;
    top: 25px;

    color: var(--muted);

    font-size: 10px;

}

.service-icon {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 35px;

    border-radius: 18px;

    background: var(--bg-pink);

    color: var(--pink-dark);

    font-size: 23px;

}

.service-card h3 {

    margin-top: 30px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 27px;

}

.service-card p {

    margin-top: 15px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}

.service-tech {

    position: absolute;

    left: 30px;
    bottom: 30px;

    color: var(--pink-dark);

    font-size: 10px;

    font-weight: 700;

}



/* =====================================================
   PROJECTS
===================================================== */

.projects-section {

    padding: 150px 0;

}

.projects-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

}

.featured-grid {

    display: grid;

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

    gap: 22px;

}

.project-card {

    min-height: 510px;

    padding: 25px;

    border-radius: 30px;

    background: white;

    border: 1px solid var(--border);

    box-shadow: var(--shadow-soft);

    transition: 0.4s;

}

.project-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}

.project-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--muted);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.12em;

}

.project-top a {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--bg-pink);

    color: var(--pink-dark);

}

.project-visual {

    height: 240px;

    margin-top: 20px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}

.project-visual i {

    font-size: 80px;

    color: var(--pink-dark);

    transition: 0.4s;

}

.project-card:hover .project-visual i {

    transform: scale(1.12)
        rotate(-5deg);

}

.project-sign {

    background: #f8e7ec;

}

.project-agro {

    background: #f7eadc;

}

.project-flood {

    background: #e8edf4;

}

.project-job {

    background: #eee7ef;

}

.project-info h3 {

    margin-top: 25px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 30px;

}

.project-info p {

    margin-top: 12px;

    color: var(--muted);

    line-height: 1.7;

    font-size: 13px;

}

.project-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;

}

.project-tags span {

    padding: 7px 10px;

    border-radius: 50px;

    background: var(--bg-pink);

    color: var(--pink-dark);

    font-size: 9px;

    font-weight: 700;

}

.working-status {

    padding: 7px 10px;

    border-radius: 50px;

    background: #f5dce2;

    color: var(--pink-dark);

}

.coming-soon {

    display: inline-block;

    margin-top: 18px;

    font-size: 10px;

    font-weight: 700;

    color: var(--muted);

}



/* =====================================================
   TECHNOLOGY
===================================================== */

.technology-section {

    padding: 150px 0;

    background:
        #f5dce2;

}

.tech-cloud {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    max-width: 1000px;

}

.tech-cloud span {

    padding: 18px 25px;

    border-radius: 50px;

    background:
        rgba(255,255,255,0.75);

    border:
        1px solid
        rgba(90,50,60,0.08);

    color: var(--text-soft);

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s;

}

.tech-cloud span:hover {

    background: var(--text);

    color: white;

    transform: translateY(-5px);

}



/* =====================================================
   REPORT SECTION
===================================================== */

.report-section {

    padding: 150px 0;

    background: #fff8f9;

}

.report-container {

    width: min(
        var(--container),
        90%
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr;

    gap: 70px;

    align-items: center;

    padding: 75px;

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #f5dce2,
            #fff8f9
        );

    border:
        1px solid var(--border);

    box-shadow: var(--shadow-soft);

}

.report-content h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(45px, 6vw, 78px);

    line-height: 1;

    margin: 20px 0;

}

.report-content h2 span {

    color: var(--pink);

    font-style: italic;

}

.report-content p {

    max-width: 620px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 16px;

}

.report-btn {

    margin-top: 30px;

    padding: 16px 26px;

    border: none;

    border-radius: 50px;

    background: var(--text);

    color: white;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: 0.3s;

}

.report-btn:hover {

    background: var(--pink);

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px
        rgba(217,109,137,0.25);

}

.report-icon-box {

    min-height: 280px;

    border-radius: 30px;

    background:
        rgba(255,255,255,0.7);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 20px;

    border:
        1px solid var(--border);

}

.report-icon-box i {

    width: 90px;
    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--bg-pink);

    color: var(--pink-dark);

    font-size: 35px;

}

.report-icon-box span {

    color: var(--muted);

    font-size: 13px;

}



/* =====================================================
   REPORT MODAL
===================================================== */

.report-modal {

    position: fixed;

    inset: 0;

    background:
        rgba(41,35,41,0.58);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

    z-index: 9999;

}

.report-modal.active {

    opacity: 1;

    visibility: visible;

}

.report-modal-box {

    width: min(
        600px,
        100%
    );

    max-height: 90vh;

    overflow-y: auto;

    background: #fff8f9;

    border-radius: 30px;

    padding: 45px;

    position: relative;

    transform:
        translateY(30px)
        scale(0.96);

    transition: 0.3s;

}

.report-modal.active
.report-modal-box {

    transform:
        translateY(0)
        scale(1);

}

.report-close {

    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background: var(--bg-pink);

    color: var(--text);

    cursor: pointer;

    font-size: 18px;

}

.report-close:hover {

    background: var(--pink);

    color: white;

}

.report-modal-box h2 {

    margin-top: 15px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 42px;

    line-height: 1.1;

}

.report-subtitle {

    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;

}

.report-field {

    margin-top: 20px;

}

.report-field label {

    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 700;

    color: var(--text-soft);

}

.report-field input,
.report-field select,
.report-field textarea {

    width: 100%;

    padding: 15px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background: white;

    color: var(--text);

    font-size: 14px;

    outline: none;

    transition: 0.3s;

}

.report-field textarea {

    resize: vertical;

}

.report-field input:focus,
.report-field select:focus,
.report-field textarea:focus {

    border-color: var(--pink);

    box-shadow:
        0 0 0 4px
        rgba(217,109,137,0.10);

}

.report-submit {

    width: 100%;

    margin-top: 25px;

    padding: 16px;

    border: none;

    border-radius: 14px;

    background: var(--text);

    color: white;

    cursor: pointer;

    font-weight: 700;

    transition: 0.3s;

}

.report-submit:hover {

    background: var(--pink);

}

.report-success {

    display: none;

    margin-top: 20px;

    padding: 14px;

    border-radius: 12px;

    background: var(--bg-pink);

    color: var(--pink-dark);

    font-size: 13px;

}

.report-success.show {

    display: block;

}



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

.cta-section {

    padding: 180px 0;

    text-align: center;

}

.cta-container {

    width: min(
        900px,
        90%
    );

    margin: auto;

}

.cta-container h2 {

    margin-top: 20px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(48px, 8vw, 95px);

    line-height: 1;

}

.cta-container h2 span {

    color: var(--pink);

    font-style: italic;

}

.cta-container p {

    max-width: 600px;

    margin: 30px auto;

    color: var(--muted);

    line-height: 1.8;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

}



/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding: 65px 0 25px;

    background: #292329;

    color: white;

}

.footer-container {

    width: min(
        var(--container),
        90%
    );

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.footer-logo {

    color: white;

}

.footer-container p {

    margin-top: 10px;

    color: #aaa0a5;

    font-size: 12px;

}

.footer-social {

    display: flex;

    gap: 10px;

}

.footer-social a {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.08);

    color: white;

    transition: 0.3s;

}

.footer-social a:hover {

    background: var(--pink);

    transform: translateY(-3px);

}

.footer-bottom {

    width: min(
        var(--container),
        90%
    );

    margin: 50px auto 0;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,0.1);

    color: #8e8589;

    font-size: 11px;

}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .nav-links {

        gap: 18px;

    }

    .hero-container {

        gap: 40px;

    }

    .profile-frame {

        width: 340px;
        height: 340px;

    }

    .profile-showcase {

        width: 420px;
        height: 520px;

    }

    .orbit-1 {

        width: 400px;
        height: 400px;

    }

    .orbit-2 {

        width: 340px;
        height: 450px;

    }

    .services-grid {

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

    }

}



@media (max-width: 850px) {

    .nav-links,
    .nav-contact {

        display: none;

    }

    .menu-btn {

        display: block;

    }

    .hero-section {

        padding-top: 150px;

    }

    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .hero-description {

        margin-left: auto;
        margin-right: auto;

    }

    .hero-education {

        justify-content: center;

        text-align: left;

    }

    .hero-buttons,
    .social-row {

        justify-content: center;

    }

    .home-image {

        margin-top: 50px;

    }

    .about-grid {

        grid-template-columns: 1fr;

    }

    .about-card {

        min-height: 300px;

    }

    .college-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .college-info {

        text-align: center;

    }

    .college-location,
    .college-tags {

        justify-content: center;

    }

    .college-info .text-link {

        justify-content: center;

    }

    .stats-container {

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

    }

    .stat-box:nth-child(2) {

        border-right: none;

    }

    .stat-box:nth-child(-n+2) {

        border-bottom:
            1px solid var(--border);

    }

    .featured-grid {

        grid-template-columns: 1fr;

    }

    .projects-heading {

        display: block;

    }

    .projects-heading > .text-link {

        margin-top: 20px;

    }

    .report-container {

        grid-template-columns: 1fr;

        padding: 50px 35px;

    }

}



@media (max-width: 600px) {

    .hero-section {

        min-height: auto;

        padding:
            140px 0
            100px;

    }

    .home-content h1 {

        font-size: 60px;

    }

    .hero-title {

        justify-content: center;

    }

    .profile-showcase {

        width: 340px;
        height: 450px;

    }

    .profile-frame {

        width: 280px;
        height: 280px;

    }

    .orbit-1 {

        width: 330px;
        height: 330px;

    }

    .orbit-2 {

        width: 280px;
        height: 370px;

    }

    .profile-label {

        left: 0;

    }

    .profile-project-card {

        right: -5px;

        bottom: 45px;

    }

    .floating-code {

        right: 5px;

        top: 90px;

    }

    .floating-bulb {

        left: 5px;

        bottom: 120px;

    }

    .section-heading {

        margin-bottom: 45px;

    }

    .services-grid {

        grid-template-columns: 1fr;

    }

    .service-card {

        min-height: 330px;

    }

    .stats-container {

        grid-template-columns: 1fr 1fr;

    }

    .stat-box {

        padding: 40px 10px;

    }

    .stat-box strong {

        font-size: 42px;

    }

    .project-card {

        min-height: 480px;

    }

    .report-container {

        padding: 40px 22px;

        border-radius: 25px;

    }

    .report-modal-box {

        padding: 35px 22px;

    }

    .report-modal-box h2 {

        font-size: 34px;

    }

    .footer-container {

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

    }

}



@media (max-width: 400px) {

    .home-content h1 {

        font-size: 50px;

    }

    .profile-showcase {

        transform: scale(0.85);

        margin: -30px;

    }

    .profile-project-card {

        right: -20px;

    }

}