﻿/*body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
}*/

.hero {
    background: linear-gradient(135deg,#0d1b2a,#1b263b);
    color: white;
    padding: 80px 20px;
}

.founder-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid gold;
    object-fit: cover;
    margin-bottom: 20px;
}


.custom-navbar {
    background: #000000;
    padding: 8px 0;
}

.gn-logo {
    width: 65px;
    height: 60px;
    padding: 3px;
 }


.hero h1 {
    font-size: 50px;
    font-weight: 700;
}

.hero h3 {
    color: gold;
}

.service-card {
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-top: 25px;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.service-card:hover {
        transform: translateY(-10px);
    }

.service-card i {
        color: #f4b400;
        font-size: 50px;
        margin-bottom: 15px;
    }

.card {
    border-radius: 20px;
}

.btn-warning {
    background: linear-gradient(90deg,#d4af37,#f7d774);
    border: none;
    color: #000;
    font-weight: 600;
}

/*Gallry------------------------------------*/

.nav-glow {
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    transition: color .3s ease;
}

.nav-glow:hover {
        color: #1E90FF !important;
}


.tagline {
    font-family: "Playwrite IE", cursive;
    font-size: 26px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 1px;
}

/*
Search bar------------------------------------------
*/

.form-control {
    border-radius: 10px;
    height: 45px;
    font-size: 15px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f7fc;
}

h2 {
    font-weight: 700;
}

.search-bar {
    margin-left: 100px;
}
/* Brand Name */
.brand-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.profile-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FFD700;
}
/*
------------------------------*/

.services-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-behavior: smooth;
}

    .services-slider::-webkit-scrollbar {
        height: 8px;
    }

    .services-slider::-webkit-scrollbar-thumb {
        background: #1E90FF;
        border-radius: 10px;
    }

    .services-slider::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

.service-card {
    min-width: 250px;
    height: 220px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    transition: .3s;
    flex-shrink: 0;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(30,144,255,.30);
    }

    .service-card h5 {
        margin-top: 15px;
        font-weight: 600;
        color: #1F2937;
    }

.scroll-text-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 20px;
}
/*Registration----------------------------*/

.register-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.register-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.input-group-text {
    background: #696969;
    color: white;
    border: none;
    width: 55px;
    justify-content: center;
    font-size: 18px;
}

    /*.form-control:focus {
        border-color: #1E90FF;
        box-shadow: 0 0 10px rgba(30,144,255,.3);
    }*/