/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1a1f2c;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* header */
.site-header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(0px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
}



.highlight {
    color: #e63946;
}

.tagline {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #5b6e8c;
    margin-top: 2px;
}

/* navigation */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #2c3e50;
    transition: 0.2s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #e63946;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0b2b3b 0%, #1a4a5f 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Hero Image */
    background: linear-gradient(
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.55)
              ),
              url('../images/comsoll.jpg') center center/cover no-repeat;

    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align:center;
}

.hero p {
    font-size: 1.2rem;
    max-width: 900px;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-align:center;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #e63946;
    color: white;
    box-shadow: 0 6px 14px rgba(230,57,70,0.25);
}

.btn-primary:hover {
    background: #c1121f;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: #0b2b3b;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* sections */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e63946;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.2rem;
    margin: 0.75rem 0 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 28px;
    transition: all 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.4rem;
    color: #e63946;
    margin-bottom: 1rem;
}

.global-presence {
    background: #0f2b38;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section{
    padding: 80px 0;
    background: #f5f9ff;
}

.cta-card{
    background: linear-gradient(135deg, #0b1f3a, #123b6d);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-content{
    flex: 1;
    min-width: 280px;
}

.cta-content h3{
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-content p{
    font-size: 17px;
    color: #d6e3f5;
    line-height: 1.7;
    max-width: 650px;
}

.cta-button{
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-large{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: #00bfff;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-large:hover{
    background: #009acd;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px){

    .cta-card{
        text-align: center;
        padding: 40px 25px;
    }

    .cta-content h3{
        font-size: 28px;
    }

    .cta-content p{
        font-size: 15px;
    }

    .cta-button{
        width: 100%;
    }

    .btn-large{
        width: 100%;
        justify-content: center;
    }
}

/* footer */
.site-footer {
    background: black;
    color: #cddfe7;
    padding: 3rem 0 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    color: #ffffff;       /* White */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff4d4d;       /* Red on hover */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #1f1f1f;
    color: #fff;
    border: 2px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Hover Colors */
.social-links a:nth-child(1):hover { /* Facebook */
    background: #1877f2;
    border-color: #1877f2;
}

.social-links a:nth-child(2):hover { /* Twitter/X */
    background: #1877f2;
    border-color: #1877f2;
}

.social-links a:nth-child(3):hover { /* LinkedIn */
    background: #0077b5;
    border-color: #0077b5;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 40%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger, .hamburger::before, .hamburger::after {
        content: '';
        display: block;
        width: 24px;
        height: 4px;
        background: #1e2a3a;
        margin: 5px 0;
        transition: 0.2s;
    }
    .hero-stats {
        justify-content: space-between;
    }
    .about-grid {
        flex-direction: column;
    }
    .contact-grid {
        flex-direction: column;
    }
}

/* about, services additional */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 80%;
    border-radius: 2rem;
    background: #e2e8f0;
}


.service-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 2rem;
}

.service-item-card {
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}




footer p a{
    color: #00bfff;
    text-decoration: none;
    font-weight: 600;
}

footer p a:hover{
    font-weight:bold;
}



/* PAGE HERO */
.page-hero{
    padding: 50px 0 35px;
    background: linear-gradient(135deg, #0b2b3b, #1a4a5f);
    position: relative;
}

/* HERO CONTAINER */


/* TITLE */
.hero-box h1{
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align:center;
}

/* TEXT */
.hero-box p{
    font-size: 18px;
    color: #dbe7f3;
    line-height: 1.8;
    max-width: 650px;
    margin: auto;
    text-align:center;
}

/* RESPONSIVE */
@media (max-width: 768px){

    .page-hero{
        padding: 50px 0 10px;
    }

    .hero-box{
        padding: 40px 25px;
    }

    .hero-box h1{
        font-size: 34px;
    }

    .hero-box p{
        font-size: 16px;
    }
}



/* MISSION & VISION SECTION */
.mission-vision-section{
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        #071821,
        #0b2b3b,
        #123f57
    );
}

/* GRID */
.mission-vision-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.info-card{
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: center;
}

.info-card:hover{
    transform: translateY(-5px);
}

/* ICON */
.info-icon{
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0b2b3b, #1a4a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i{
    font-size: 30px;
    color: white;
}

/* TITLE */
.info-card h3{
    font-size: 28px;
    margin-bottom: 18px;
    color: #0b2b3b;
}

/* TEXT */
.info-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px){

    .mission-vision-grid{
        grid-template-columns: 1fr;
    }

    .info-card{
        padding: 35px 25px;
    }

    .info-card h3{
        font-size: 24px;
    }
}




/* ABOUT SECTION */
.about-story{
    padding: 90px 0;
    background: #f7fafc;
}

/* GRID LAYOUT */
.about-grid{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT SIDE */
.about-text{
    text-align: left;
}

.section-tag{
    display: inline-block;
    background: rgba(0,191,255,0.12);
    color: #008ecf;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text h2{
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #0b2b3b;
}

.about-text p{
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
    text-align:left;
}

/* IMAGE SIDE */
.about-image{
    position: relative;
}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px){

    .about-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text{
        order: 1;
        text-align: left;
    }

    .about-image{
        order: 2;
    }

    .about-text h2{
        font-size: 34px;
    }

    .about-text p{
        font-size: 16px;
    }
}



/* WHY CHOOSE US */

.why-choose-us{
    padding: 90px 0;
    background: skyblue; /* section background color */
}

/* GRID */
.why-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* CARD */
.why-card{
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.why-card:hover{
    transform: translateY(-6px);
}

/* ICON */
.why-icon{
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b2b3b, #1a4a5f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i{
    color: #fff;
    font-size: 30px;
}

/* TITLE */
.why-card h3{
    font-size: 22px;
    color: #0b2b3b;
    margin-bottom: 15px;
}

/* TEXT */
.why-card p{
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px){

    .why-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px){

    .why-grid{
        grid-template-columns: 1fr;
    }
}




/* LEADERSHIP SECTION */
.leadership{
    padding: 90px 0;
    background: #f7fafc;
}

/* GRID */
.certs-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* CARD */
.cert-item{
    background: #fff;
    padding: 40px 28px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.cert-item:hover{
    transform: translateY(-6px);
}

/* ICON WRAPPER */
.cert-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b2b3b, #1a4a5f);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ICON */
.cert-icon i{
    font-size: 32px;
    color: white;
}

/* TITLE */
.cert-item h4{
    font-size: 22px;
    color: #0b2b3b;
    margin-bottom: 15px;
}

/* TEXT */
.cert-item p{
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px){

    .certs-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px){

    .certs-grid{
        grid-template-columns: 1fr;
    }

    .cert-item{
        padding: 35px 24px;
    }
}



/* FOUNDER MESSAGE */
.founder-message{
    padding: 90px 0;
    background: #f7fafc;
}

/* GRID */
.founder-grid{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.founder-image img{
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* CONTENT */
.founder-content h2{
    font-size: 30px;
    line-height: 1.3;
    margin: 20px 0;
    color: #0b2b3b;
}

.founder-content p{
    font-size: 15px;
    line-height: 1.5;
    color: black;
    margin-bottom: 15px;
}

/* SIGNATURE */
.founder-signature{
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.founder-signature h4{
    font-size: 22px;
    color: #0b2b3b;
    margin-bottom: 5px;
}

.founder-signature span{
    color: blue;
    font-weight: 600;
}


.founder-message{
    background:skyblue;
}

/* RESPONSIVE */
@media (max-width: 992px){

    .founder-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-content{
        text-align: center;
    }

    .founder-content h2{
        font-size: 34px;
    }
}



/* CORE VALUES SECTION */
.core-values{
    background: lightgreen;
    padding: 90px 0;
}

/* TITLE */
.core-values .section-header{
    margin-bottom: 40px;
}

/* GRID */
.values-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.value-card{
    background: #fff;
    padding: 30px 22px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.value-card:hover{
    transform: translateY(-6px);
}

/* ICON */
.value-card i{
    font-size: 30px;
    color: red;
    margin-bottom: 12px;
}

/* TITLE */
.value-card h4{
    font-size: 18px;
    color: #0b2b3b;
    margin-bottom: 8px;
}

/* TEXT */
.value-card p{
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* TABLET */
@media (max-width: 992px){
    .values-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px){
    .values-grid{
        grid-template-columns: 1fr;
    }

    .core-values{
        padding: 70px 0;
    }
}



/* CONTACT GRID */
.contact-grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* LEFT + RIGHT BOXES */
.contact-info,
.contact-form{
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* FORM TITLE */
.contact-form h2{
    margin-bottom: 20px;
    color: #0b2b3b;
}

/* FORM FIELDS */
.contact-form input,
.contact-form select,
.contact-form textarea{
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
}

/* BUTTON */
.contact-form button{
    width: 60%;
    display:block;
    margin: 0 auto;
}

/* NOTE */
.form-note{
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    line-height: 1.5;
    text-align:center;
}

/* RESPONSIVE */
@media (max-width: 992px){
    .contact-grid-2{
        grid-template-columns: 1fr;
    }
}



/* MAP */
.map-container{
    margin-top: 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-container iframe{
    display: block;
    width: 100%;
}


/* =========================
   Projects Section
========================= */

.projects-grid-section {
    background: #f8fafc;
}

/* =========================
   Section Header
========================= */

.section-header {
    max-width: 750px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.0rem;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-header h2 .blue {
    color: #0066ff;
}

.section-header p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 1.05rem;
}

.text-center {
    text-align: center;
}

/* =========================
   Projects Grid
========================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* =========================
   Project Card
========================= */

.project-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    border: 1px solid #edf2f7;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   Project Image
========================= */

.project-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.08);
}

/* =========================
   Project Content
========================= */

.project-info {
    padding: 1.8rem;
}

.project-info h3 {
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-info p {
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}

/* =========================
   Tags
========================= */

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.project-tags span {
    background: #eef4ff;
    color: #0066ff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* =========================
   Responsive Design
========================= */

@media (max-width: 1200px) {

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .project-img {
        height: 220px;
    }

    .project-info {
        padding: 1.5rem;
    }

    .project-info h3 {
        font-size: 1.2rem;
    }
}




/* =========================
   Testimonials Section
========================= */

.testimonial-section {
    background: yellow;
    padding: 100px 0;
}

/* =========================
   Testimonials Grid
========================= */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* =========================
   Testimonial Card
========================= */

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    border: 1px solid #edf2f7;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   Quote Icon
========================= */

.testimonial-card i {
    font-size: 2rem;
    color: #0066ff;
    margin-bottom: 1.5rem;
}

/* =========================
   Testimonial Text
========================= */

.testimonial-card p {
    color: #4b5563;
    line-height: 1.5;
    font-size: 0.98rem;
    margin-bottom: 1.8rem;
}

/* =========================
   Author
========================= */

.testimonial-card h4 {
    color: #111827;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
}

/* =========================
   Responsive Design
========================= */

@media (max-width: 1200px) {

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.6rem;
    }
}




/* =========================
   CV Upload Form
========================= */

.cv-form {
    max-width: 600px;
    margin: auto;
}

.form-group {
    margin-bottom: 1.2rem;
}

/* Inputs */

.cv-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dbe3ea;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s ease;
    box-sizing: border-box;
}

.cv-form input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* File Input */

.cv-form input[type="file"] {
    padding: 12px;
    background: #f8fafc;
    cursor: pointer;
}

/* =========================
   Submit Button
========================= */

.cv-form button,
.cv-form .btn-primary {
    width: 30%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 8px 13px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Hover */

.cv-form button:hover,
.cv-form .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Active */

.cv-form button:active,
.cv-form .btn-primary:active {
    transform: scale(0.98);
}

/* =========================
   Success Message
========================= */

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #34d399;
    font-weight: 600;
    text-align: center;
}




/* =========================
   WhatsApp Floating Button
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* Pulse Animation */

@keyframes whatsappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile */

@media (max-width: 768px) {

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }

}



.logo-link{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-img{
    width:55px;
    height:auto;
    object-fit:contain;
}

.logo-content{
    display:flex;
    flex-direction:column;
}

.logo-text{
    font-size:1.5rem;
    font-weight:800;
    color:#1e3fa8;
    line-height:1;
}

.highlight{
    color:#555;
    margin-left:4px;
}

.tagline{
    font-size:0.75rem;
    color:#666;
    margin-top:4px;
    letter-spacing:1px;
}




/* BUSINESS SERVICES */
.business-services {
    background: #f8fbff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* Tablet */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



.service-list {
    padding-left: 20px;
    margin-top: 15px;
}

.service-list li {
    margin-bottom: 12px;
    line-height: 1.0;
    color: #444;
    text-align:left;
    font-size: 14px;
}



/* TURNKEY PROCESS */
.turnkey-process {
    background: #ffffff;
}

.turnkey-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.turnkey-content h2 {
    font-size: 30px;
    margin: 15px 0 20px;
    line-height: 1.1;
}

.turnkey-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.turnkey-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.turnkey-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.7;
    font-size: 16px;
}

.turnkey-list li span {
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.turnkey-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    object-fit: cover;
}

/* Tablet */
@media (max-width: 992px) {
    .turnkey-grid {
        grid-template-columns: 1fr;
    }

    .turnkey-content h2 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .turnkey-content h2 {
        font-size: 28px;
    }

    .turnkey-list li {
        font-size: 15px;
    }
}



/* FAQ SECTION */
.faq-section {
    background: #f8fbff;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 22px 25px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
}

.faq-question i {
    color: #0d6efd;
    transition: 0.3s;
}

.faq-answer {
    display: none;
    background: orange;
    padding: 0 25px 22px;
}

.faq-answer p {
    color: black;
    line-height: 1.8;
    font-size:14px;
    margin: 0;
}

/* ACTIVE FAQ */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 16px 18px;
    }
    
      .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }
}



.btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

.download-btn {
    display: inline-block;
    background: #0056d2;
    color: #ffffff;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download-btn:hover {
    background: #003f9e;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.download-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .download-btn {
        width: 60%;
        text-align: center;
        padding: 14px 20px;
    }
}




/* ===== LOGO WRAPPER ===== */
.logo {
    display: flex;
    align-items: center;
}

/* Link layout */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

/* Logo image */
.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

/* Text block (name + tagline stacked neatly) */
.logo-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* Brand name */
.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
}

.logo-text .highlight {
    color: #0056d2;
}

/* Tagline */
.tagline {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .logo-img {
        height: 42px;
    }

    .logo-text {
        font-size: 18px;
    }

    .tagline {
        font-size: 11px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

    .logo-link {
        gap: 8px;
    }

    .logo-img {
        height: 36px;
    }

    .logo-text {
        font-size: 16px;
    }

    .tagline {
        font-size: 10px;
    }
}

.top-bar {
    background: #0b1f3a;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

/* Left side */
.top-left a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 10px;
    transition: 0.3s;
}

.top-left a:hover {
    color: #00aaff;
}

.divider {
    margin: 0 10px;
    opacity: 0.5;
}

/* Right side */
.top-right a {
    color: #ffffff;
    margin-left: 12px;
    font-size: 15px;
    transition: 0.3s;
}

.top-right a:hover {
    color: #00aaff;
}

@media (max-width: 600px) {

    .top-bar-container {
        flex-direction: row;   /* keep inline */
        justify-content: space-between;
        align-items: center;
        padding: 4px 8px;
    }

    .top-left,
    .top-right {
        display: flex;
        align-items: center;
        flex-wrap: nowrap; /* prevent breaking line */
        gap: 10px;
    }

    /* Hide email on mobile */
    .top-left a.email {
        display: none !important;
    }

    /* Make text smaller for fit */
    .top-bar {
        font-size: 12px;
    }

    .top-right a {
        margin-left: 8px;
        font-size: 14px;
    }
}


#datetime{
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(135deg, #0056d2, #003b8f);
    color: #ffd700;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
    transition: all 0.3s ease;
}

#datetime:hover{
    transform: translateY(-2px);
}


@media (max-width: 768px) {

    /* Hide email */
    .top-left a[href^="mailto:"] {
        display: none !important;
    }

    /* Top bar layout */
    .top-bar-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 10px;
    }

    /* Keep phone on one line */
    .top-left a[href^="tel:"] {
        white-space: nowrap;
        font-size: 13px;
    }

    /* Keep datetime on one line */
    #datetime {
        white-space: nowrap;
        font-size: 12px;
        text-align: center;
    }

    /* Social icons */
    .top-right {
        display: flex;
        gap: 8px;
    }
}




.time-calendar-section{
    padding: 60px 20px;
}

.time-calendar-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.clock-card,
.calendar-card{
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.clock-card h3,
.calendar-card h3{
    text-align: center;
    color: #0056d2;
}

/* Clock */
.clock{
    width: 250px;
    height: 250px;
    border: 8px solid #0056d2;
    border-radius: 50%;
    position: relative;
    margin: 20px auto;
}

.hand{
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom;
}

.hour{
    width: 6px;
    height: 70px;
    background: #000;
}

.minute{
    width: 4px;
    height: 95px;
    background: #333;
}

.second{
    width: 2px;
    height: 105px;
    background: red;
}

.center-dot{
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
}

#digital-time{
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #0056d2;
}

/* Calendar */
.calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:5px;
}

.day-name{
    background:#0056d2;
    color:#fff;
    text-align:center;
    padding:10px;
    font-weight:bold;
}

.day{
    text-align:center;
    padding:12px;
    border:1px solid #ddd;
}

.today{
    background:gold;
    font-weight:bold;
    border:2px solid #0056d2;
}

@media (max-width: 768px){

    .time-calendar-container{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .clock-card,
    .calendar-card{
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    /* Smaller clock */
    .clock{
        width: 180px;
        height: 180px;
        margin: 15px auto;
    }

    .hour{
        height: 50px;
    }

    .minute{
        height: 70px;
    }

    .second{
        height: 80px;
    }

    #digital-time{
        font-size: 18px;
    }

    /* Calendar */
    .calendar-grid{
        gap: 2px;
    }

    .day-name{
        padding: 6px 2px;
        font-size: 11px;
    }

    .day{
        padding: 8px 2px;
        font-size: 12px;
        min-height: 35px;
    }

    #calendar-month{
        font-size: 18px;
        margin-bottom: 10px;
    }
}



/* produtcs-page */
.products-section{
    background:#f8fafc;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-content{
    padding:25px;
}

.product-content h3{
    color:#003366;
    margin-bottom:12px;
    font-size:18px;
}

.product-content h3 i{
    color:#ff0000;
    margin-right:8px;
}

.product-content p{
    line-height:1.5;
    color:#555;
}

.products-hero{
    background:url('../images/products-banner.jpg') center/cover no-repeat;
    position:relative;
    padding:80px 0;
    text-align:center;
    color:#fff;
}

.products-hero .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.products-hero .container{
    position:relative;
    z-index:2;
}

/*Fonts */
.home-page{
    font-family:'Outfit', sans-serif;
}
.about-page{
    font-family:'Manrope', sans-serif;
}
.services-page{
    font-family: 'Space-Grotesk',sans-serif;
}
.projects-page{
    font-family:'Urbanist',sans-serif;
}
.careers-page{
    font-family:'Exo 2',sans-serif;
}
.products-page{
    font-family:'Sora',sans-serif;
}
.contacts-page{
    font-family:'Plus Jakarta Sans',sans-serif;
}


/* ==========================
   PAGE LOADER
========================== */
#loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: skyblue;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loader-content{
    text-align: center;
}

.loader-content img{
    width: 120px;
    margin-bottom: 20px;
}

.spinner{
    width: 60px;
    height: 60px;
    border: 5px solid #e5e5e5;
    border-top: 5px solid #0056d2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

.loader-content p{
    margin-top: 15px;
    color: #0056d2;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes spin{
    100%{
        transform: rotate(360deg);
    }
}

/* Hide loader */
.loader-hidden{
    opacity: 0;
    visibility: hidden;
}



/*Careers Listings*/
.job-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px){
    .job-list{
        grid-template-columns: 1fr;
    }
}

.job-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
    display:flex;
    flex-direction:column;
    gap:15px;
    transition:.3s;
}

.job-card:hover{
    transform:translateY(-5px);
}

.job-header h3{
    color:#0b3d91;
    margin-bottom:8px;
}

.job-location{
    color:#777;
    font-size:14px;
}

.job-meta{
    color:#555;
    font-size:15px;
}

.job-details{
    border-top:1px solid #eee;
    padding-top:15px;
}

.job-details summary{
    cursor:pointer;
    list-style:none;
    width:fit-content;
}

.job-details ul{
    padding-left:20px;
    margin-top:10px;
}

.btn{
    display:inline-block;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.btn-small{
    background:#f4f4f4;
    color:#333;
}

.btn-primary{
    background:#007bff;
    color:white;
}

.btn-primary:hover{
    background:#0056b3;
}


/* Job card */
.job-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* Apply button */
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:auto;
    align-self:flex-start;   /* prevents stretching */
    padding:12px 22px;
    background:#007bff;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#0056b3;
}