/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #0e1625;
    background: #f4f9fd;   /* soft bluish background */
}

.contact-number {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-number:hover {
    color: #000; /* stays black on hover */
}
/* ================= HERO ================= */

.about-hero {
    background: linear-gradient(135deg, rgba(30,167,215,0.85), rgba(14,22,37,0.85)),
                url('../images/hero_about.png') center/cover no-repeat;
    padding: 220px 20px 180px;
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-hero p {
    margin-top: 20px;
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.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);
}
/* ================= INTRO ================= */

.about-section {
    padding: 100px 0;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #1ea7d7;   /* blue heading */
}

.about-text p {
    color: #4a5a6a;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(30,167,215,0.25);
}

/* Floating Stat Card */

.stat-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, #1ea7d7, #148bb5);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.stat-card h3 {
    font-size: 28px;
}

.stat-card p {
    font-size: 14px;
}

/* ================= story ================= */

/* ================= OUR STORY ================= */

/* ================= STORY SECTION ================= */

.story-section {
    padding: 80px 0 60px 0;  /* Top reduced */
    background: #ffffff;
}

.story-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT SIDE */

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 56px;
    font-weight: 800;
    color: #0e1625;
}

.story-accent {
    width: 60px;
    height: 4px;
    background: #1ea7d7;
    margin: 20px 0 40px 0;
    border-radius: 2px;
}

/* IMAGE BOX */

.story-image-box {
    width: 100%;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(30,167,215,0.15);
    position: relative;
}

.story-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.story-image-box:hover img {
    transform: scale(1.05);
}

/* RIGHT SIDE */

.story-right {
    flex: 1.2;
}

.story-highlight {
    font-size: 22px;
    font-weight: 500;
    color: #1ea7d7;
    margin-bottom: 30px;
    line-height: 1.6;
}

.story-right p {
    font-size: 18px;
    color: #5b6b7a;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* QUOTE BOX */

.story-quote {
    margin-top: 40px;
    padding: 40px;
    background: #f4f9fd;
    border-left: 5px solid #1ea7d7;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(30,167,215,0.10);
}

.story-quote p {
    font-size: 20px;
    font-style: italic;
    color: #0e1625;
}




/* ================= APPROACH ================= */

/* ================= HUMAN-DRIVEN APPROACH (PREMIUM UPGRADE) ================= */
/* ================= PREMIUM 2x2 APPROACH ================= */

.approach-section {
    padding: 20px 0 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.approach-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */

.approach-header {
    text-align: center;
    margin-bottom: 100px;
}

.approach-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0e1625;
}

.approach-header p {
    max-width: 650px;
    margin: auto;
    color: #5b6b7a;
    font-size: 18px;
}

/* Grid 2 per row */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

/* Card */

.approach-card {
    position: relative;
    background: #ffffff;
    padding: 60px;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(30,167,215,0.08);
    transition: 0.4s ease;
    overflow: hidden;
}

/* Decorative background glow */

.approach-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(30,167,215,0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    transition: 0.4s ease;
}

/* Hover */

.approach-card:hover {
    background: #1ea7d7;
    transform: translateY(-12px);
    box-shadow: 0 40px 100px rgba(30,167,215,0.25);
}

.approach-card:hover::after {
    background: rgba(255,255,255,0.15);
}

/* Number */

.card-number {
    font-size: 40px;
    font-weight: 800;
    color: #1ea7d7;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.approach-card:hover .card-number {
    color: #ffffff;
}

/* Title */

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0e1625;
    transition: 0.4s ease;
}

.approach-card:hover h3 {
    color: #ffffff;
}

/* Text */

.approach-card p {
    color: #5b6b7a;
    line-height: 1.8;
    transition: 0.4s ease;
}

.approach-card:hover p {
    color: #f0f6fb;
}

/* Simple blue hover (clean) */

.approach-item:hover h3 {
    color: #0e1625;
}



/* ================= MISSION & VISION ================= */

.mv-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff, #eef7fc);
}

.mv-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.mv-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.mv-row.reverse {
    flex-direction: row-reverse;
}

.mv-text {
    flex: 1;
    background: #ffffff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(30,167,215,0.15);
    transition: background 0.3s ease, color 0.3s ease;
}

/* Simple Blue Hover */
.mv-text:hover {
    background: #1ea7d7;
    color: #ffffff;
}

/* Change heading & paragraph color */
.mv-text:hover h2,
.mv-text:hover p {
    color: #ffffff;
}

.mv-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1ea7d7;
}

.mv-text p {
    color: #4a5a6a;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.mv-image {
    flex: 1;
    position: relative;
}

.mv-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.mv-image img:hover {
    transform: scale(1.05);
}

/* Decorative blue layer */

.mv-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1ea7d7, #148bb5);
    border-radius: 25px;
    top: 20px;
    left: 20px;
    z-index: -1;
}

/* ================= WHY SECTION ================= */

/* ================= WHY SECTION BIG VERSION ================= */
/* ================= ELEGANT WHY SECTION ================= */

.why-elegant {
    padding: 40px 0 40px 0;/* top reduced */
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.why-elegant-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.why-elegant-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-elegant-header h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0e1625;
}

.why-elegant-header p {
    max-width: 650px;
    margin: auto;
    color: #6c7a89;
    font-size: 18px;
}

.why-elegant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-elegant-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(30, 167, 215, 0.08);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);  /* slower & smoother */
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Slower gradient swipe */
.why-elegant-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(30,167,215,0.08),
        rgba(30,167,215,0.18),
        rgba(30,167,215,0.08)
    );
    transition: 1.2s ease;   /* slower swipe */
}

.why-elegant-card:hover::before {
    left: 100%;
}

.why-elegant-card:hover {
    background: linear-gradient(135deg, #1ea7d7, #0e5c82);
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(14, 92, 130, 0.35);
    border-left: 5px solid #ffffff;
}

/* Heading */
.why-elegant-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1ea7d7;
    transition: 0.8s ease;
}

.why-elegant-card:hover h3 {
    color: #ffffff;
}

/* Paragraph */
.why-elegant-card p {
    color: #5b6b7a;
    line-height: 1.8;
    transition: 0.8s ease;
}

.why-elegant-card:hover p {
    color: #eaf6fc;
}

/*============techonigeis======*/
/* ================= TECHNOLOGY EXPERTISE ================= */

.tech-section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.tech-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.tech-container h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #0e1625;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tech-list span {
    padding: 15px 30px;
    border-radius: 50px;
    background: #f2f9fd;
    color: #1ea7d7;
    font-weight: 600;
    transition: 0.3s ease;
}

.tech-list span:hover {
    background: #1ea7d7;
    color: #ffffff;
}

/* ================= CTA ================= */

.service-cta {
    padding: 160px 20px;
    background:  #1ea7d7;
    color:  white;
    text-align: center;
}

.service-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-cta p {
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #ffffff;
    color: #1ea7d7;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: 0.4s ease;
}

.cta-btn:hover {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}



/* ================= 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 {
    text-align: center;
}
.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;
    padding: 0;
}

.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;
}

.footer-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;
}
.contact-info-footer li {
    justify-content: center;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-info i {
    color: #1ea7d7;
    width: 18px;
}

.contact-info a {
    color: #cbd5e1;
    text-decoration: none;
}

.contact-info a:hover {
    color: #1ea7d7;
}
/* FORCE FIX FOOTER CONTACT BACKGROUND */

.footer .contact-info {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}





