* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}
body {
    font-family: 'Poppins', sans-serif;
}

.contact-number {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-number:hover {
    color: #000; /* stays black on hover */
}

.nav-links a.active,
.mobile-links a.active {
    color: #1ea7d7;
    font-weight: 600;
}
/* ================= HEADER ================= */

/* ================= HEADER ================= */

.header {
    width: 100%;
    background: #ffffff;
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: 700;
}

/* DESKTOP MENU */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* PHONE BUTTON */
.phone-btn {
    background: #1ea7d7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 20px;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}


/* ================= HERO ================= */

/* ================= HERO ================= */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* smoother fade */
}


.hero-slide.active {
    opacity: 1;
    z-index: 1;
}




/* Optional smooth dark overlay for premium feel */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 0;
}
/* Bottom Layout */
.hero-content {
    position: absolute;
    bottom: 60px;          /* Adjust bottom spacing here */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}

/* Badge */
.hero-badge {
    background: #1ea7d7;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-block;
}

/* OUTLINE TEXT (Reduced Size) */
.outline-text {
    font-size: 55px;              /* Reduced */
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px #222;
    display: block;
    letter-spacing: 1px;
}

/* Bold Text */
.hero-content h1 strong {
    font-size: 50px;              /* Reduced */
    font-weight: 800;
    color: #111;
    display: block;
    margin-top: 10px;
}

/* Button */
.btn-outline {
    margin-top: 20px;
    padding: 12px 26px;
    border: 2px solid #000;
    text-decoration: none;
    color: #000;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

.phone-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1ea7d7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.phone-btn:hover {
    background: #0e5c82;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30,167,215,0.3);
}

/* Toggle hidden on desktop */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.phone-btn:hover {
    background: #0e5c82;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30,167,215,0.3);
}
   /* ================= SECTION ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
}

.services{
    padding:40px 0;
    background:#f5f7fa;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:60px;
}

/* LEFT SIDE */
.left{
    width:60%;
}

.left h2{
    font-size:44px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.left h2 span{
    color:#1ea7d7;
    display:block;
}

.desc{
    color:#6c7a89;
    margin-bottom:30px;
    line-height:1.7;
}

.features{
    display:flex;
    gap:40px;
    margin-bottom:30px;
}

.feature{
    display:flex;
    align-items:center;
    gap:15px;
}

.feature .icon{
    font-size:28px;
}

.feature h4{
    font-size:18px;
    font-weight:600;
}

.text{
    color:#6c7a89;
    margin-bottom:30px;
    line-height:1.7;
}

.btn{
    padding:12px 30px;
    border:2px solid #1ea7d7;
    color:#1ea7d7;
    text-decoration:none;
    font-weight:600;
    border-radius:6px;
}

.btn:hover{
    background:#1ea7d7;
    color:#fff;
}

/* RIGHT SIDE */
.right{
    width:40%;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.top-img img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
}

.bottom{
    display:flex;
    gap:20px;
}

.bottom-img img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
}

.blue-box{
    flex:1;
    height:250px;
    background:#1ea7d7;
    color:#fff;
    border-radius:15px;
    padding:30px;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.line{
    width:40px;
    height:4px;
    background:#fff;
    margin-bottom:20px;
}

.blue-box h3{
    font-size:20px;
    line-height:1.4;
}

.plus{
    position:absolute;
    bottom:20px;
    left:20px;
    width:50px;
    height:50px;
    background:#fff;
    color:#1ea7d7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:bold;
}

/* ================= OUR SERVICES ================= */

/* ================= SERVICES SLIDER ================= */

.services-wrapper {
    padding: 40px 0 60px 0; 
    background: #f6f8fb;
    text-align: center;
    margin-bottom: 0;
}

.services-header .small-title {
    font-size: 40px;
    letter-spacing: 2px;
    color: #9aa5b1;
}

.services-header h2 {
    font-size: 48px;
    margin-top: 15px;
    font-weight: 700;
}

.services-header h2 span {
    color: #1ea7d7;
}

.services-slider {
    overflow: hidden;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 0;
}

.slides {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.service-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
}

.icon-circle {
    width: 130px;
    height: 130px;
    border: 2px dashed #1ea7d7;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle span {
    font-size: 40px;
}

.service-card h6 {
    font-size: 12px;
    letter-spacing: 2px;
    color: #1ea7d7;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c7a89;
    line-height: 1.6;
}

/* ARROW BUTTON */
.circle-btn {
    width: 60px;
    height: 60px;
    background: #0e1625;   /* Black */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
}
.circle-btn:hover {
    background: #1ea7d7;
}



/* Invisible card keeps spacing balanced */
.invisible-card {
    visibility: hidden;
}

/* DOTS */

.slider-dots {
    margin-top: 30px;
    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    background: #cfd8e3;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    background: #1ea7d7;
}

/* ================= COMPANY SECTION ================= */

.company-section {
    padding: 20px 0 60px 0; 
    background: #f6f8fb;
    text-align: center;
    margin-top: 0;
}

.company-header .small-title {
    font-size: 40px;
    letter-spacing: 2px;
    color: #9aa5b1;
}

.company-header h2 {
    font-size: 48px;
    margin-top: 15px;
    font-weight: 700;
}

.company-header h2 span {
    color: #1ea7d7;
}

.company-desc {
    max-width: 700px;
    margin: 20px auto 0;
    color: #6c7a89;
}

/* TABS */

.company-tabs {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-btn {
    padding: 20px 60px;
    border-radius: 10px;
    border: 2px solid #dce3ed;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.tab-btn.active {
    border-color: #1ea7d7;
    color: #1ea7d7;
}

/* CONTENT */

.company-content {
    margin-top: 70px;
}

.tab-content {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.tab-content.active {
    display: flex;
}

.company-left {
    width: 50%;
}

.company-left img {
    width: 100%;
    border-radius: 15px;
}

.company-right {
    width: 50%;
    text-align: left;
}

.company-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.company-right p {
    color: #6c7a89;
    margin-bottom: 20px;
}

.company-right ul {
    list-style: none;
}

.company-right li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.company-right li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1ea7d7;
}

/* ================= TESTIMONIAL SECTION ================= */


.testimonial-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #0f5c7f, #1ea7d7);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

/* HEADER */

.testimonial-header h2 {
    font-size: 44px;
    font-weight: 700;
}

.testimonial-header span {
    color: #0e1625;
}

/* SLIDER */

.testimonial-slider {
    position: relative;
    margin-top: 100px;
    overflow: hidden;
}

/* Fade Edges */

.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #0f5c7f 0%, transparent 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #1ea7d7 0%, transparent 100%);
}

/* TRACK */

.testimonial-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scrollLeft 60s linear infinite alternate;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* CARDS */

.testimonial-card {
    min-width: 380px;
    max-width: 380px;
    padding: 70px 40px;
    border-radius: 22px;
    text-align: left;
    transition: all 0.5s ease;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.2);

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0.6;
    transform: scale(0.9);
}

/* ACTIVE CENTER EFFECT */

.testimonial-card.active {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3),
                0 0 30px rgba(255,255,255,0.3);
}

/* QUOTE */

.quote-icon {
    width: 60px;
    height: 60px;
    background: #0e1625;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

/* ANIMATION */

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-40%); }
}


/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(135deg, #0e1625, #162c46);
    color: #ffffff;
    padding-top: 100px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #1ea7d7;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #1ea7d7;
    padding-left: 5px;
}

/* Contact Info */
.contact-info li {
    color: #cbd5e1;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1ea7d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #1ea7d7;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #0b1220;
    color: #9aa5b1;
    font-size: 14px;
}

.nav-links a.active {
    color: #1ea7d7;
    font-weight: 600;
}

/* ================= PREMIUM FOOTER ================= */

.footer {
    background: linear-gradient(135deg, #0e1625, #162c46);
    color: #ffffff;
    padding: 100px 0 0;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* Logo */

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Paragraph */
.footer-col {
    text-align: center;
}
.footer-col p {
    color: #b8c4d6;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Headings */

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 25px;
    color: #1ea7d7;
    position: relative;
}

/* Links */

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

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

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #1ea7d7;
    padding-left: 6px;
}

/* Contact Icons */
.contact-info-footer li {
    justify-content: center;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #cbd5e1;
}

.contact-info i {
    color: #1ea7d7;
    font-size: 15px;
    width: 18px;
}

.contact-info a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    color: #1ea7d7;
}

/* Social Icons */

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(30,167,215,0.15);
    border: 1px solid rgba(30,167,215,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ea7d7;
    font-size: 16px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #1ea7d7;
    color: #ffffff;
    transform: translateY(-4px);
}

/* Bottom Bar */

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 80px;
    background: #0b1220;
    color: #9aa5b1;
    font-size: 14px;
}

/* FORCE FIX FOOTER CONTACT BACKGROUND */

.footer .contact-info {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}


/* ================= HOME CONTACT SECTION ================= */

.home-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #f4f9fd, #eaf6fc);
}

.home-contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT SIDE */

.home-contact-form {
    flex: 1;
}

.home-contact-form h2 {
    font-size: 42px;
    color: #0e1625;
    margin-bottom: 20px;
}

.home-contact-form p {
    color: #5b6b7a;
    margin-bottom: 40px;
}

.home-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-contact-form input,
.home-contact-form textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #dce7f3;
    font-family: inherit;
    transition: 0.3s ease;
}

.home-contact-form input:focus,
.home-contact-form textarea:focus {
    border-color: #1ea7d7;
    outline: none;
}

.home-contact-form button {
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: #1ea7d7;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.home-contact-form button:hover {
    background: #0e5c82;
}

/* RIGHT SIDE */

.home-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30,167,215,0.08);
    transition: 0.4s ease;
}

.info-box:hover {
    background: #1ea7d7;
    transform: translateY(-8px);
}

.info-box h4 {
    margin-bottom: 10px;
    color: #1ea7d7;
    transition: 0.3s ease;
}

.info-box p {
    color: #5b6b7a;
    transition: 0.3s ease;
}

.info-box:hover h4,
.info-box:hover p {
    color: #ffffff;
}

.info-box a {
    color: inherit;
    text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .home-contact-container {
        flex-direction: column;
    }
}
