* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html, body {
    font-family: Inter,ui-sans-serif,system-ui,Segoe UI,Roboto,"Helvetica Neue",Arial;
    line-height: 1.4;
    color: #222
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem
}


/* Header */
.site-header {
    background: linear-gradient(90deg,#0b2545,#0d3a66);
    color: #fff
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem
}

.brand {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem
}

    .brand span {
        color: #ffd166
    }

.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center
}

    .main-nav a {
        color: #e6f0ff;
        text-decoration: none;
        padding: 0.45rem
    }

    .main-nav .btn-primary {
        background: #ffd166;
        color: #08203a;
        padding: 0.5rem 0.9rem;
        border-radius: 6px;
        text-decoration: none
    }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.2rem
}


/* Hero */
.hero {
    padding: 4rem 0;
    background: linear-gradient(180deg,#f7f9fc,#ffffff)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: center
}

.hero-text h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-text p {
    color: white;
    margin-bottom: 1rem
}

.hero-media img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(10,20,40,0.08)
}

.btn-primary {
    background: #08203a;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    border: none
}

.btn-outline {
    border: 1px solid #08203a;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    margin-left: 0.5rem;
    text-decoration: none;
    color: #08203a
}


/* Services */
.services h2 {
    margin-bottom: 1rem;
    color: #08203a
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1rem
}

.service-card {
    background: #fff;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(10,20,40,0.05)
}

    .service-card h3 {
        margin-bottom: 0.5rem
    }


/* Testimonial */
.testimonial {
    margin: 3rem 0
}

    .testimonial blockquote {
        background: #f1f6fb;
        padding: 1.25rem;
        border-left: 4px solid #ffd166;
        border-radius: 6px
    }

    .testimonial cite {
        display: block;
        margin-top: 0.5rem;
        color: #334155
    }


/* CTA bar */
.cta-bar {
    background: #08203a;
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0
}

    .cta-bar .container {
        display: flex;
        align-items: center;
        justify-content: space-between
    }


/* Contact form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 700px
}

    .contact-form label {
        display: block
    }

    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 0.6rem;
        border-radius: 6px;
        border: 1px solid #dbe7f2
    }

    .contact-form button {
        grid-column: 1 / -1
    }

.notice {
    background: #e6ffed;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #bde8c7;
    margin-bottom: 1rem
}


/* Footer */
.site-footer {
    background: #f8fafc;
    padding: 2rem 0;
    margin-top: 2rem
}
.mgb{
    margin-bottom:00px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 1rem
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e6eef6;
    text-align: center;
    color: #94a3b8
}


/* Responsive */
@media (max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .nav-toggle {
        display: block
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 64px;
        right: 16px;
        background: #0d3a66;
        padding: 0.5rem;
        border-radius: 8px
    }

    .contact-form {
        grid-template-columns: 1fr
    }
}
/* Responsive */
/*@media (max-width:900px) {
}
.call-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 1000;
    height: 50px;
}

    .call-btn:hover {
        background-color: #0056b3;
        transform: scale(1.05);
    }
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 1000;
}

    .whatsapp-btn:hover {
        background-color: #1ebe57;
        transform: scale(1.05);
    }*/


    /* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* dark overlay for contrast */
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.45), rgba(10,10,10,0.55));
  z-index: 1;
}

/* content */
.hero-content {
  z-index: 2;
  width: 100%;
  padding: 48px 24px;
  display: flex;
  justify-content: center;
}



.brand h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.05;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.tagline {
  font-size: clamp(14px, 1.6vw, 18px);
  margin-bottom: 18px;
  color: rgba(255,255,255,0.92);
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #0066ff, #0047d1);
  color: #fff;
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }

/* trustline */
.trustline {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/*------------------------------------------------
*/


@media (min-width: 1025px) {
    .site-footer {
        position: static;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
}
/* Header styling */
/*.site-header {
    background: linear-gradient(90deg, #04294f, #093b69);
    color: white;
    padding: 15px 0;
}*/

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo colors */
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-main {
    color: #ffffff; /* White for "AlwaysOne" */
}

.logo-it {
    color: #00bcd4; /* Bright blue for "IT" */
}

.logo-sub {
    color: #ffcc00; /* Yellow or accent for "Solution" */
}

/* Navigation */
.main-nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .main-nav a:hover {
        color: #00bcd4;
    }

.btn-primary {
    background: #ffd54f;
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #ffca28;
    }

/* Responsive menu */
.nav-toggle {
    display: none;
    background: none;
    color: white;
    font-size: 1.5rem;
    border: none;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        background: #093b69;
        width: 100%;
        text-align: center;
    }

        .main-nav.active {
            display: flex;
        }

    .nav-toggle {
        display: block;
    }
}

:root {
    --header-height: 0px; /* will be set by JS at runtime */
}

.ftc {
    background: linear-gradient(90deg, #0b2545, #0d3a66);
    color: #fff;
}


/* Apply the header as fixed and use the CSS variable for content spacing */
.site-header {
    position: static;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    /* optional visual */
    background: linear-gradient(90deg,#04294f,#093b69);
}

/* Main content should start below the header */
main, .container {
    padding-top: calc(var(--header-height) + 20px); /* 20px extra breathing room */
}
/* Attractive Floating Buttons – AlwaysOneITSolution */

/* Keyframes for glow and bounce */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Base button style */
.call-btn, .whatsapp-btn {
    position: fixed;
    right: 20px;
    color: white;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Phone button styling */
.call-btn {
    bottom: 90px;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    animation: bounce 2s infinite ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

    .call-btn:hover {
        transform: scale(1.1);
        background: linear-gradient(45deg, #0062cc, #0099ff);
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.7);
    }

/* WhatsApp button styling */
.whatsapp-btn {
    bottom: 20px;
    background: linear-gradient(45deg, #25d366, #1ebe57);
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
        background: linear-gradient(45deg, #20ba5a, #1aa84f);
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.7);
    }

    /* Icons inside button */
    .call-btn i, .whatsapp-btn i {
        font-size: 20px;
    }

/* Mobile Responsive */
@media (max-width: 900px) {
    .call-btn, .whatsapp-btn {
        font-size: 14px;
        padding: 12px 18px;
        right: 15px;
    }
}
