/* Gradient Header */
body{
    font-family: 'Inter', sans-serif;
    margin:0;
    color:#1a1a1a;
    background:#f8fafc;
}

.gradient-header {
    background: linear-gradient(135deg, #0077ff, #00d4ff);
    color: #fff;
    padding: 12px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Header Layout */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 22px;
}

.main-nav a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 0;
}
.main-nav a:hover {
    opacity: 0.85;
}

/* Call Button */
.call-btn {
    background: #fff;
    color: #0077ff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(255,255,255,0.3);
}
.call-btn:hover {
    background: #e9e9e9;
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 26px;
    color: #fff;
}

@media(max-width:800px){
    .main-nav {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.25);
        backdrop-filter: blur(6px);
        padding: 15px;
        border-radius: 10px;
        position: absolute;
        right: 20px;
        top: 70px;
    }
    .main-nav.open { display: flex; }

    .call-btn { display: none; }

    .nav-toggle { display: block; }
}
/* ==== HERO SECTION ==== */

.hero-section {
    background: linear-gradient(135deg, #0077ff, #00d4ff);
    padding: 0px 0;
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    align-items: center;
    gap: 40px;
}

.hero-left h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-left p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

/* Buttons */
.btn-primary {
    background: #fff;
    color: #0077ff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    border: 2px solid #fff;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Right Side Box */
.hero-info-box {
    background: #fff;
    color: #333;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center;
}

.btn-call-big {
    display: block;
    margin-top: 12px;
    background: #0077ff;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
}



/* ==== SERVICES SECTION ==== */

.services-section {
    padding: 60px 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}



/* ==== WHY SECTION ==== */

.why-section {
    background: #f7f7f7;
    padding: 60px 0;
}

.why-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
}

.why-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
}

.why-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-section .container {
    padding-top: 70px;
    padding-bottom: 70px;
}.services-section {
    padding-top: 60px;
    padding-bottom: 60px;
}.why-section {
    padding-top: 60px;
    padding-bottom: 60px;
}section {
    padding: 70px 0;
}

.container {
    max-width: 1150px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* FULL CONTENT SECTION */
.full-content {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.full-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.full-content p {
    max-width: 800px;
    margin: auto;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* TESTIMONIAL SLIDER */
.testimonial-section {
    padding: 70px 0;
    background: #f6f9ff;
}

.test-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.test-slider::-webkit-scrollbar {
    height: 6px;
}

.test-slider::-webkit-scrollbar-thumb {
    background: #0077ff;
    border-radius: 10px;
}

.slide {
    min-width: 320px;
    background: #fff;
    padding: 26px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    scroll-snap-align: start;
}

.slide p {
    font-size: 16px;
    line-height: 1.6;
}

.slide h4 {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
}
/* ABOUT SECTION */
.about-section {
    padding: 70px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-left img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.about-right h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-right p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 12px;
}
@media (max-width:800px){
    .about-grid { grid-template-columns: 1fr; }
}

/* Premium Footer */
.footer {
    background: #0a0f25;
    padding: 70px 0 20px;
    color: #d6d9e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer p, 
.footer li {
    font-size: 15px;
    line-height: 1.6;
    color: #c8ccd6;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #c8ccd6;
    text-decoration: none;
    transition: 0.2s;
}

.footer ul li a:hover {
    color: #4ca3ff;
}

/* Call Button */
.footer-call-btn {
    display: inline-block;
    margin-top: 12px;
    background: #007bff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.footer-call-btn:hover {
    background: #005fcc;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1d2238;
    color: #9ba2b2;
    font-size: 14px;
}
.full-content .btn-main {
  background: #0a0f25;
  padding: 15px 26px;
  color: #fff;
  text-decoration: none;
  margin-top: 15px;
  display: inline-block;
  border-radius: 10px;
}


