/* ======================================================
   COSLIFE GLOBAL STYLE SYSTEM - Moved to Global.css!!
====================================================== */


/* ======================================================
   GOOGLE FONT
====================================================== */
/*
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
*/

/* ======================================================
   ROOT VARIABLES
====================================================== */
/*
:root {

    --primary-color: #001F3D;
    --secondary-color: #11D89C;
    --accent-color: #0A84FF;

    --white-color: #ffffff;
    --dark-color: #0d1117;
    --light-color: #f5f7fb;
    --text-color: #4b5563;
    --border-color: #e5e7eb;

    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);

    --transition: all 0.3s ease;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --container-width: 1200px;
}
*/


/* ======================================================
   RESET
====================================================== */
/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;

    color: var(--text-color);
    background: var(--white-color);

    overflow-x: hidden;
}
*/


/* ======================================================
   ELEMENTS
====================================================== */
/*
img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font-family: inherit;
    outline: none;
}
*/

/* ======================================================
   CONTAINER
====================================================== */
/*
.container {

    width: 90%;
    max-width: var(--container-width);

    margin: auto;
}
*/

/* ======================================================
   SECTION SPACING
====================================================== */
/*
section {
    padding: 100px 0;
    position: relative;
}
*/


/* ======================================================
   SECTION TITLES
====================================================== */
/*
.section-title {

    text-align: center;
    margin-bottom: 70px;
}

.section-title span {

    display: inline-block;

    color: var(--secondary-color);

    font-weight: 600;

    margin-bottom: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.section-title h2 {

    font-size: 46px;

    color: var(--primary-color);

    line-height: 1.2;

    margin-bottom: 18px;
}

.section-title p {

    max-width: 700px;

    margin: auto;
}
*/

/* ======================================================
   BUTTONS
====================================================== */
/*
.btn-primary,
.btn-secondary {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 34px;

    border-radius: 50px;

    font-weight: 600;

    transition: var(--transition);
}

.btn-primary {

    background: var(--secondary-color);

    color: var(--white-color);
}

.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow-lg);
}

.btn-secondary {

    background: var(--primary-color);

    color: var(--white-color);
}

.btn-secondary:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow-lg);
}
*/


/* ======================================================
   GRID SYSTEM
====================================================== */
/*
.grid-2 {

    display: grid;

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

    gap: 50px;
}

.grid-3 {

    display: grid;

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

    gap: 30px;
}

.grid-4 {

    display: grid;

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

    gap: 30px;
}
*/


/* ======================================================
   CARDS
====================================================== */
/*
.card {

    background: var(--white-color);

    border-radius: var(--radius-md);

    overflow: hidden;

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

    transition: var(--transition);
}

.card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);
}

.card-content {
    padding: 30px;
}
*/


/* ======================================================
   NAVBAR
====================================================== */
/*
.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

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

    backdrop-filter: blur(14px);

    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.navbar-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 85px;
}

.logo-area img {
    max-height: 55px;
}

.nav-menu {

    display: flex;

    align-items: center;

    gap: 28px;
}

.nav-menu li a {

    color: var(--primary-color);

    font-weight: 500;

    position: relative;
}

.nav-menu li a::after {

    content: '';

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: var(--secondary-color);

    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}
*/

/* ======================================================
   MOBILE TOGGLE
====================================================== */
/*
.mobile-toggle {

    display: none;

    width: 40px;

    cursor: pointer;

    z-index: 1001;
}

.mobile-toggle span {

    display: block;

    width: 100%;
    height: 3px;

    margin: 8px 0;

    background: var(--primary-color);

    border-radius: 20px;

    transition: var(--transition);
}
*/

/* ======================================================
   MOBILE NAVIGATION
====================================================== */
/*
@media (max-width: 768px) {

    .mobile-toggle {
        display: block;
    }

    .main-navigation {

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: var(--white-color);

        padding: 20px 0;

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

        opacity: 0;
        visibility: hidden;

        transform: translateY(-20px);

        transition: var(--transition);
    }

    .main-navigation.active {

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .nav-menu {

        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

    .navbar-wrapper {

        min-height: 80px;
    }

    /* HAMBURGER ANIMATION */
/*
    .mobile-toggle.active span:nth-child(1) {

        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-toggle.active span:nth-child(2) {

        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {

        transform: rotate(-45deg) translate(8px, -8px);
    }
}
*/


/* ======================================================
   HERO SECTION
====================================================== */
/* 
.hero-section {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    background-image: url('../images/hero.jpg');

    background-size: cover;

    background-position: center;

    overflow: hidden;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(
        rgba(0,31,61,0.88),
        rgba(0,31,61,0.72)
    );
}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 750px;

    color: var(--white-color);
}

.hero-subtitle {

    display: inline-block;

    margin-bottom: 20px;

    padding: 10px 18px;

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

    border-radius: 50px;

    backdrop-filter: blur(10px);
}

.hero-content h1 {

    font-size: 72px;

    line-height: 1.1;

    margin-bottom: 24px;
}

.hero-content p {

    font-size: 18px;

    margin-bottom: 35px;

    max-width: 620px;
}

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}
 */

/* ======================================================
   SERVICES
====================================================== */
/* 
.services-section {
    background: var(--light-color);
}

.service-card {

    padding: 40px 30px;

    text-align: center;
}

.service-icon {

    width: 85px;
    height: 85px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: auto auto 25px;

    border-radius: 50%;

    background: rgba(17,216,156,0.1);

    color: var(--secondary-color);

    font-size: 34px;
}

.service-card h3 {

    margin-bottom: 18px;

    color: var(--primary-color);
}
 */

/* ======================================================
   ABOUT
====================================================== */
/* 
.about-image img {

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);
}

.about-content {

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.about-content span {

    color: var(--secondary-color);

    font-weight: 600;

    margin-bottom: 15px;
}

.about-content h2 {

    font-size: 46px;

    color: var(--primary-color);

    margin-bottom: 25px;
}

.about-content p {

    margin-bottom: 30px;
} 
*/

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

/* .project-card img {

    height: 350px;

    object-fit: cover;

    transition: var(--transition);
}

.project-card:hover img {

    transform: scale(1.05);
} */

/* ======================================================
   TESTIMONIALS
====================================================== */

/* .testimonial-card {

    padding: 40px 30px;

    text-align: center;
}

.testimonial-card p {

    font-style: italic;

    margin-bottom: 25px;
}

.testimonial-card h4 {

    color: var(--primary-color);
} */

/* ======================================================
   BLOG
====================================================== */

/* .blog-card img {

    height: 250px;

    object-fit: cover;
}

.blog-card h3 {

    margin-bottom: 15px;
}

.blog-card h3 a {

    color: var(--primary-color);
}
*/


/* ======================================================
   CONTACT
====================================================== */

/* .contact-section {

    background: var(--light-color);
}

.contact-form {

    max-width: 850px;

    margin: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {

    width: 100%;

    padding: 18px 22px;

    border-radius: var(--radius-sm);

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

    background: var(--white-color);

    transition: var(--transition);
}

.form-control:focus {

    border-color: var(--secondary-color);

    box-shadow: 0 0 0 4px rgba(17,216,156,0.08);
}
 */

 /* ======================================================
   FOOTER
====================================================== */
/*
.site-footer {

    background: linear-gradient(
        135deg,
        #001F3D 0%,
        #002E5B 100%
    );

    color: var(--white-color);

    padding-top: 90px;
}

.footer-grid {

    display: grid;

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

    gap: 40px;

    padding-bottom: 50px;
}

.footer-column h3,
.footer-column h4 {

    margin-bottom: 22px;
}

.footer-column a {

    color: rgba(255,255,255,0.75);
}

.footer-column a:hover {

    color: var(--secondary-color);
}

.social-icons {

    display: flex;

    gap: 15px;
}

.social-icons a {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

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

    color: var(--white-color);
}

.social-icons a:hover {

    background: var(--secondary-color);
}

.copyright-area {

    text-align: center;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,0.08);
}
 */
/* ======================================================
   RESPONSIVE
====================================================== */
/* 
@media (max-width: 992px) {

    .grid-4 {
        grid-template-columns: repeat(2,1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2,1fr);
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .about-content h2,
    .section-title h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    section {
        padding: 75px 0;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .footer-grid {

        grid-template-columns: 1fr;
    }

    .navbar-wrapper {

        flex-direction: column;

        padding: 18px 0;
    }

    .nav-menu {

        flex-direction: column;

        width: 100%;

        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .section-title h2,
    .about-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .btn-primary,
    .btn-secondary {

        width: 100%;
    }
} */