/* =========================================
   GLOBAL STYLES
========================================= */

:root {
    --primary: #0057d9;
    --secondary: #00c96b;
    --dark: #00152e;
    --light: #f5f9ff;
    --white: #ffffff;
    --text: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #fff;
    color: var(--text);
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* =========================================
   NAVBAR
========================================= */

.navbar {
    transition: 0.4s;
    padding: 18px 0;
    z-index: 999;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar-brand {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 600;
    margin-left: 15px;
    color: #222 !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--secondary);
    transition: 0.4s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* =========================================
   BUTTONS
========================================= */

.btn-main {
    background: var(--secondary);
    border: none;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.btn-main:hover {
    background: #00a75a;
    transform: translateY(-3px);
    color: #fff;
}

/* =========================================
   HERO
========================================= */

/* .hero {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  
  align-items: center;
  color: #fff;
  position: relative;
}  */

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
}

/* HERO VARIANTS */
.hero {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    align-items: center;
    position: relative;
    display: flex;
    color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?q=80&w=1600");
}

.hero-home {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=1600");
}

.hero-about {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    align-items: center;
    position: relative;
    display: flex;
    color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url("/images/gb_front.png");
}

.hero-services {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url("https://images.unsplash.com/photo-1580281657527-47f249e8f4df?q=80&w=1600");
}

.hero-contact {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url("https://images.unsplash.com/photo-1586773860418-d37222d8fce3?q=80&w=1600");
}

/* =========================================
   SECTION TITLES
========================================= */

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
}

.section-subtitle {
    color: #6c757d;
    max-width: 700px;
    margin: auto;
}

/* =========================================
   CARDS
========================================= */

.service-card,
.contact-card,
.feature-card,
.why-card,
.team-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card:hover,
.contact-card:hover,
.feature-card:hover,
.why-card:hover,
.team-card:hover {
    transform: translateY(-10px);
}

.service-card::before,
.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

/* =========================================
   ICONS
========================================= */

.service-icon,
.contact-icon,
.feature-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(0, 87, 217, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 40px;
}

/* =========================================
   ABOUT
========================================= */

.about-img img {
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.experience-box {
    background: var(--primary);
    color: #fff;
    border-radius: 25px;
    padding: 30px;
    position: absolute;
    bottom: -30px;
    right: -20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* =========================================
   FORM
========================================= */

.form-section {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-control {
    height: 58px;
    border-radius: 15px;
    border: 1px solid #dfe7f3;
    padding-left: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

textarea.form-control {
    height: 180px;
    padding-top: 20px;
}

/* =========================================
   INFO BOX
========================================= */

.info-box {
    background: linear-gradient(135deg, var(--primary), #003f9e);
    color: #fff;
    border-radius: 30px;
    padding: 50px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    margin-right: 20px;
    color: #7dffb3;
}

/* =========================================
   STATS
========================================= */

.stats {
    background:
        linear-gradient(rgba(0, 87, 217, 0.9), rgba(0, 87, 217, 0.9)),
        url("https://images.unsplash.com/photo-1581093458791-9f3c3900df4b?q=80&w=1400");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-box h2 {
    font-size: 4rem;
    font-weight: 800;
}

/* =========================================
   TEAM
========================================= */

.team-card img {
    height: 320px;
    object-fit: cover;
    width: 100%;
}

/* =========================================
   FAQ
========================================= */

.accordion-item {
    border: none;
    border-radius: 20px !important;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.accordion-button {
    font-weight: 600;
    padding: 22px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

/* =========================================
   MAP
========================================= */

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

iframe {
    width: 100%;
    border: 0;
}

/* =========================================
   CTA
========================================= */

.cta {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1516549655169-df83a0774514?q=80&w=1600");
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* =========================================
   FOOTER
========================================= */

footer {
    background: var(--dark);
    color: #fff;
}

.footer-link {
    color: #cfd8e3;
}

.footer-link:hover {
    color: #fff;
}

/* =========================================
   FLOATING BUTTON
========================================= */

.floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* =========================================
   SWIPER
========================================= */

.hero-slider,
.hero-slide {
    height: 100vh;
}

.hero-slide {
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .hero h1,
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero h1,
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-section,
    .info-box {
        padding: 30px;
    }

    .experience-box {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }

    .stat-box h2 {
        font-size: 2.5rem;
    }
}
