:root {
    --primary: #232570;
    --secondary: #00947a;
}

/* Reset & Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f4f7f6;
}
a{
    text-decoration: none !important;
}

/* Header & Navbar */
.header {
    background-color: var(--primary);
    border-bottom: 4px solid var(--secondary);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.nav-item {
    margin-left: 2.5rem;
}

.nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Hamburger Icon (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
    border-radius: 2px;
}

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-secondary {
    color: var(--secondary);
}

.mt-20 {
    margin-top: 20px;
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Hero Banner Section (Split Layout) --- */
.hero-section {
    display: flex;
    min-height: 90vh;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    left: -15%;
    top: -20%;
    width: 65%;
    height: 140%;
    background-image: radial-gradient(#d3e6e2 3px, transparent 3px);
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 0;
    border-radius: 50%;
}

.hero-content-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5% 0 10%;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-title {
    color: var(--primary);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.hero-text {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image-box {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    border-left: 20px solid var(--secondary);
    border-bottom-left-radius: 250px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    left: -40px;
    bottom: 25%;
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-icon {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-left: 6px;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: #ffffff;
    border: 2px solid var(--secondary);
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- About Us Section --- */
.about-section {
    position: relative;
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 148, 122, 0.04);
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(35, 37, 112, 0.04);
    bottom: 50px;
    left: -100px;
}

.shape-3 {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(0, 148, 122, 0.1);
    background: transparent;
    top: 20%;
    left: 48%;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.img-frame {
    position: relative;
}

.img-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--secondary);
    border-radius: 20px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.about-content .section-subtitle {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content .section-title {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    background: none;
    padding: 0;
    border-radius: 0;
}

.about-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* --- Services Section --- */
.services-section {
    padding: 80px 0;
    background-color: #f4f7f6;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    display: inline-block;
    background-color: var(--secondary);
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.category-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(35, 37, 112, 0.1);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title i {
    color: var(--secondary);
}

.service-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-item .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    background-color: rgba(0,0,0,0.05);
}

.service-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Color Classes */
.card-green { border-top-color: #27ae60; }
.card-green .icon-box { color: #27ae60; background: rgba(39, 174, 96, 0.1); }

.card-blue { border-top-color: #2980b9; }
.card-blue .icon-box { color: #2980b9; background: rgba(41, 128, 185, 0.1); }

.card-red { border-top-color: #e74c3c; }
.card-red .icon-box { color: #e74c3c; background: rgba(231, 76, 60, 0.1); }

.card-purple { border-top-color: #8e44ad; }
.card-purple .icon-box { color: #8e44ad; background: rgba(142, 68, 173, 0.1); }

.card-orange { border-top-color: #f39c12; }
.card-orange .icon-box { color: #f39c12; background: rgba(243, 156, 18, 0.1); }

.card-gold { border-top-color: #f1c40f; }
.card-gold .icon-box { color: #f1c40f; background: rgba(241, 196, 15, 0.1); }

.card-teal { border-top-color: #16a085; }
.card-teal .icon-box { color: #16a085; background: rgba(22, 160, 133, 0.1); }

.card-light { border-top-color: var(--secondary); }
.card-light .icon-box { color: var(--secondary); background: rgba(0, 148, 122, 0.1); }

.mt-40 { margin-top: 40px; }

/* --- Process Section --- */
.process-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(35, 37, 112, 0.85), rgba(0, 148, 122, 0.85)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.process-section .section-subtitle {
    color: #ffffff;
    opacity: 0.9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 4px solid var(--secondary);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(35, 37, 112, 0.05); /* very light primary color */
    line-height: 1;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-card:hover .step-number {
    color: rgba(0, 148, 122, 0.1); /* light secondary color */
    transform: scale(1.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 148, 122, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-card:hover .step-icon {
    background-color: var(--secondary);
    color: #ffffff;
}

.process-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f4f7f6;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form {
    background: #f4f7f6;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.contact-form .btn-primary {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
}

/* --- Footer Section --- */
.footer {
    background-color: var(--primary);
    color: #ffffff;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    max-height: 40px;
    margin-bottom: 20px;
}

.footer-text {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a i {
    margin-right: 8px;
    color: var(--secondary);
    font-size: 0.8rem;
    transition: margin 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-links a:hover i {
    margin-right: 12px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #aaaaaa;
    font-size: 0.9rem;
    a{
        color: #aaaaaa;
        font-size: 0.6rem;  
    }
}

/* --- Floating Contact Buttons --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    color: #ffffff;
}

.float-whatsapp {
    background-color: #25D366;
}

.float-call {
    background-color: var(--secondary);
}

/* Tablet & Mobile Media Queries */
@media only screen and (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }
    
    .hero-content-box {
        padding: 60px 5%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-text {
        max-width: 100%;
        margin: 0 auto 35px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        border-left: none;
        border-top: 15px solid var(--secondary);
        border-bottom-left-radius: 0;
        height: 400px;
    }
    
    .play-btn {
        left: 50%;
        bottom: auto;
        top: -40px;
        transform: translateX(-50%);
    }
    
    .play-btn:hover {
        transform: translateX(-50%) scale(1.1);
    }
    
    .hero-section::before {
        width: 150%;
        height: 100%;
        left: -25%;
        top: -10%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 765px) {
    .navbar {
        padding: 1rem;
    }

    .nav-logo img {
        max-height: 40px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background-color: var(--primary);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}