/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}


/* TOP BAR */
.top-bar {
    background-color: #0b0f19; /* Deeper Dark Blue */
    color: #e2e8f0;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-content span {
    background: rgba(37, 99, 235, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.top-bar-content span:hover {
    background: #0ea5e9;
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.top-bar-content i {
    color: #38bdf8;
    margin-right: 8px;
}

.top-bar-content span:hover i {
    color: #fff;
}



/* NAVIGATION NAVBAR */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;	
    justify-content: space-between;  
    width: 100%;
    
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}


/* LOGO LINK STYLE */

.logo-link {
    text-decoration: none; 
    display: inline-block;
}

.logo-link:hover .logo {
    opacity: 0.9; 
}

.logo {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.logo span {
    color: #0ea5e9; /* Attractive Blue Theme */
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 400;
    margin-left: 25px;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-links a:hover, .nav-links a.active {
    color: #0ea5e9;
}



/* Hide Hamburger Menu Input */
.nav-toggle {
    display: none;
}



/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    height: 80vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #38bdf8;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 35px auto;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #0ea5e9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4);
}

.btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
}








/* About Page Specific Styles */
.about-container {
    flex: 1;
    padding: 140px 8% 80px 8%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4ecf7 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.about-intro {
    text-align: center;
    max-width: 100%;
}

.about-intro h1 {
    font-size: 34px;
    color: #1a1a1a;
    /*margin-bottom: 5px;*/
	margin-top: 85px;
    position: relative;
    display: inline-block;
}

/* Heading */
.about-intro h1::after {
    content: '';
    position: absolute;
    /*bottom: -8px;
    left: 50px;
    right: 50px;
    height: 1px;
    background: linear-gradient(90deg, #0056b3, #dc3545);
    border-radius: 2px;*/
}

.main-text {
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    margin-top: 20px;
    line-height: 1.5;
}

.sub-text {
    font-size: 16px;
    color: #666666;
    margin-top: 15px;
}




/*    SERVICES-1 SECTION (UPDATED CARD MODEL) */


.services-1-section {
    padding: 30px 0;
    background-color: #f8fafc; /* Sleek Off-white background */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: #0f172a;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 750px;
    margin: 15px auto 0 auto;
    line-height: 1.6;
}

.underline {
    width: 70px;
    height: 4px;
    background-color: #2563eb;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* 4 Cards Responsive Grid Layout */
.services-1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-1-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(241, 245, 249, 0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Zoom & Shadow Effect */
.service-1-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(37, 99, 235, 0.1);
}

.card-img-box {
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

/* PNG Images Styling */
.png-img-1 {
    /*width: 300px;*/
    height: 250px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.service-1-card:hover .png-img {
    transform: scale(1.1); /* The image will zoom slightly when hovered. */
}

.service-1-card h3 {
    font-size: 1.35rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-1-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* STYLISH QUOTE BOX */
.services-1-quote-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    /*max-width: 900px;*/
    margin: 0 auto;
    position: relative;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.quote-icon {
    font-size: 2rem;
    color: #38bdf8; /* Highlight Color */
    margin-bottom: 15px;
    opacity: 0.8;
}

.services-1-quote-box p {
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.7;
    color: #f1f5f9;
}




/* Responsive Tweaks */
@media (max-width: 768px) {
    .services-1-grid {
        grid-template-columns: 1fr; /* Single column on mobile*/
    }
    .services-1-quote-box {
        padding: 30px 20px;
    }
    .services-1-quote-box p {
        font-size: 1.05rem;
    }
}



/* SERVICES SECTION (CARD MODEL) */


.services-section {
    padding: 30px 0;
    background-color: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
	margin-top: 35px;
}

.section-title h2 {
    font-size: 34px;
    color: #0f172a;
    font-weight: 700;
	margin-bottom: 10px;
}

.underline {
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

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

.service-card {
	background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}


.service-image { 
	width: 100%; 
	height: 200px; 
	background-color: #e2e8f0; 
}

.service-image img { 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
}
.service-card h3 { 
	font-size: 22px; 
	margin: 12px; 
	text-align: center; 
}

.service-card p { 
	color: #64748b; 
	font-size: 15px; 
	margin: 0 25px 30px; 
	text-align: left; 
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-img-box {
    margin-bottom: 20px;
}



/* Only PNG Images Styles */
.png-img {
    /*width: 550px;*/
    height: 250px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
	text-align: center;
}


/* CLIENTS PORTFOLIO SECTION STYLES */
.services-1-section {
    padding: 30px 0;
    background-color: #f8fafc; /* Sleek Off-white background */
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: #0f172a;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 750px;
    margin: 15px auto 55px auto;
    line-height: 1.6;
}

.underline {
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}


/* CLIENTS PORTFOLIO SECTION STYLES  */
.clients-section {
    padding: 30px 0;
    background-color: #ffffff; /* Clean White Background */
}

/* 4 Column x 2 Row Responsive Grid Configuration */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 columns */
    gap: 25px; /* Spacing between cards */
    margin-top: 40px;
}

/* Card Style as a Link Box */
.client-card {
    background: #ffffff;
    height: 180px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    /*padding: 20px;*/
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none; 
}

/* Logo Image resizing to fit the exact card dimensions */
.client-logo-img {
    width: 100%;
    height: 100%;
    /*object-fit: contain;*/ /* Even if the image is large, it will fit without going outside the card.*/
    filter: grayscale(1%); /* Logos will be made black & white first for a professional look */
    /*opacity: 0.6;*/
    transition: all 0.4s ease;
}

/* Premium Hover Effects */
.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1); /* Blue shadow effect*/
    border-color: rgba(37, 99, 235, 0.3);
}

/* Animation to change logo to original color on hover*/
.client-card:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05); /* The logo will zoom in slightly.*/
}

/* RESPONSIVE LAYOUT FOR MOBILE & TABLETS */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablets will display 2 columns each. */
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: 1fr; /* Will become a single column on mobile */
        gap: 15px;
    }
    .client-card {
        height: 140px;
    }
}


/*
   CONTACT US SECTION STYLES (3 SEPARATE CARDS)  */
.contact-section {
    padding: 30px 0;
    background-color: #f8fafc;
}

/* 2 Column Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* equal to 2 Column */
    gap: 40px;
    margin-top: 50px;
    align-items: stretch; /* To make the height of both sides the same */
}

/* Base Contact Card Style */
.contact-card {
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* COLUMN 1: Address Card Styling (Soft Light Cream) */
.address-card {
    background-color: #fcf8f6; 
    border: 1px solid #f9ebe6;
    display: flex;
    align-items: center;
}

.address-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.address-details h3 {
    font-size: 1.6rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 700;
}

.address-p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* COLUMN 2: Quick Cards Wrapper */
.quick-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Spacing between cards*/
}

/* Quick contact card specific layout */
.quick-card {
    display: flex;
    align-items: center;
    gap: 25px; /* The distance between the icon and the text */
    padding: 25px 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.quick-card-info {
    flex-grow: 1;
    text-align: left;
}

.quick-card h3 {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.3rem;
    color: #0f172a;
    font-weight: 700;
    transition: color 0.3s ease;
}


/* --- 3 CARDS SEPARATE LIGHT BACKGROUNDS --- */
.mobile-card-bg {
    background-color: #f0fdf4; /* Soft Light Green */
    border: 1px solid #dcfce7;
}

.landline-card-bg {
    background-color: #fefce8; /* Soft Light Yellow */
    border: 1px solid #fef9c3;
}

.email-card-bg {
    background-color: #f0f7ff; /* Soft Light Blue */
    border: 1px solid #e0f2fe;
}

/* --- ICON BOX DESIGN --- */
.contact-icon-box {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Separate Colors for Icons */
.address-icon { background: rgba(249, 115, 22, 0.1); color: #ea580c; }
.mobile-icon { background: rgba(22, 163, 74, 0.1); color: #16a34a; }
.landline-icon { background: rgba(234, 179, 8, 0.15); color: #ca8a04; }
.email-icon { background: rgba(37, 99, 235, 0.1); color: #2563eb; }

/* --- HOVER EFFECTS --- */
.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.quick-card:hover {
    transform: translateX(8px); /* Hover Premium look that moves to the right when done */
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

/* Hover move to colour change */
.mobile-card-bg:hover .contact-value { color: #16a34a; }
.landline-card-bg:hover .contact-value { color: #ca8a04; }
.email-card-bg:hover .contact-value { color: #2563eb; }

/* Click to action arrow text */
.click-to-action {
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-card:hover .click-to-action {
    opacity: 1;
    transform: translateX(0);
}

.color-mobile { color: #16a34a; }
.color-landline { color: #ca8a04; }
.color-email { color: #2563eb; }



/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* One less than one on mobile */
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .address-box {
        flex-direction: column;
        gap: 20px;
    }
    .quick-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
    }
    .quick-card-info {
        text-align: center;
    }
    .contact-value {
        font-size: 1.15rem;
    }
    .quick-card:hover {
        transform: translateY(-5px); /* Will rise up when hovering on mobile */
    }
}





/* FOOTER */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
    border-top: 1px solid #1e293b;
	margin-top: 45px;
}




/* ==========================================
   FIXED RESPONSIVE MOBILE MENU 
   ========================================== */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 0;
        position: relative;
    }
	
	.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.logo span {
    color: #0ea5e9; /* Attractive Blue Theme */
}
	

    /* Mobile Menu Burger Icon Design */
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: #0f172a; /* Dark Color for visibility */
        height: 3px;
        width: 25px;
        border-radius: 3px;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    
    .nav-toggle-label span::before { top: -8px; }
    .nav-toggle-label span::after { bottom: -8px; }

    /* Transform Burger Icon to 'X' on Click */
    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }
    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }
    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    /* MOBILE NAV LINKS - FULLY VISIBLE & STYLISH */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff; /* Solid White Background */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        
        /* Height initially 0 (Hidden) */
        height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1001;
    }

    /* Mobile Links Typography */
    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: #0f172a !important; /* Bold Dark Text for extreme clarity */
        border-bottom: 1px solid #f1f5f9;
        opacity: 0;
        transform: translateY(-15px);
        transition: all 0.3s ease;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background-color: #f0f7ff; /* Light Blue highlight on click */
        color: #0ea5e9 !important;
    }

    /* WHEN OPENED (CLICKED) */
    .nav-toggle:checked ~ .nav-links {
        height: 320px; /* Adjust based on menu height */
        opacity: 1;
        visibility: visible;
        padding: 10px 0;
    }

    /* Fade-in Animation for Menu Items */
    .nav-toggle:checked ~ .nav-links a {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Animation Delay for premium look */
    .nav-toggle:checked ~ .nav-links a:nth-child(1) { transition-delay: 0.05s; }
    .nav-toggle:checked ~ .nav-links a:nth-child(2) { transition-delay: 0.1s; }
    .nav-toggle:checked ~ .nav-links a:nth-child(3) { transition-delay: 0.15s; }
    .nav-toggle:checked ~ .nav-links a:nth-child(4) { transition-delay: 0.2s; }
    .nav-toggle:checked ~ .nav-links a:nth-child(5) { transition-delay: 0.25s; }
}

/* Desktop Check */
@media (min-width: 769px) {
    .nav-toggle-label {
        display: none;
    }
}



/*   FLOATING WHATSAPP BUTTON STYLES  */
.whatsapp-float {
    position: fixed;
    bottom: 30px; 
    right: 30px;  
    background-color: #25d366; /* Official WhatsApp Green */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px; /* To give capsule shape */
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999; /* To come above all other elements on the website */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* WhatsApp Icon Size */
.whatsapp-icon {
    font-size: 1.5rem;
}

/* Premium Hover Animation */
.whatsapp-float:hover {
    background-color: #128c7e; /* Darker WhatsApp Green on Hover */
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.4);
    color: #ffffff;
}

/* Pulse Glow Effect (To draw the user's attention to the button) */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Applying Pulse Animation */
.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* RESPONSIVE: When it comes to the mobile screen, the text will change to just the icon. */
@media (max-width: 576px) {
    .whatsapp-float {
        padding: 0;
        width: 55px;
        height: 55px;
        border-radius: 50%; /* Round button on mobile */
        justify-content: center;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-text {
        display: none; /* Hiding the 'Chat With Us' text on mobile */
    }
    
    .whatsapp-icon {
        font-size: 1.7rem;
    }
}






/*    MOBILE & TABLET OPTIMIZATION (PERFECT SCREEN FIT WITH VISIBLE LINKS) */



/* For small laptops and tablets (Max Width: 1024px) */
@media (max-width: 1024px) {
    .container {
        width: 90%; /* To provide the correct gap on both sides of the screen*/
    }
    
    .about-wrapper, .contact-grid {
        grid-template-columns: 1fr; /* Those with 2 columns will be one below the other. */
        gap: 30px;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr); /* Clients will be 3 columns in the tab. */
    }
}



/* For mobile phones (Max Width: 768px) */
@media (max-width: 768px) {
    /* TOP BAR OPTIMIZATION */
    .top-bar-content {
        justify-content: center; /* The phone number will be displayed in the middle on the mobile. */
        font-size: 0.8rem;
    }

    /* NAVIGATION / MENU BAR (STYLISH DROP-DOWN) */
    .nav-container {
        padding: 12px 0;
        position: relative;
    }

    .nav-toggle-label {
        display: block; /* An icon with 3 lines will be shown on the mobile */
        cursor: pointer;
        padding: 8px;
    }

    /* Mobile menu links to pop up */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: stretch; /* Links to fit the full width of the mobile screen */
        height: 0;
        overflow: hidden;
        transition: height 0.35s ease-in-out;
    }

    .nav-links a {
        margin: 0;
        padding: 15px 25px;
        font-size: 1rem;
        border-bottom: 1px solid #f1f5f9; /* Each menu link will be clearly distinguished. */
        width: 100%;
        display: block;
    }

    .nav-links a::after {
        display: none; /* Avoiding hover animation on mobile */
    }

    /* Logic to show links when opening the menu */
    .nav-toggle:checked ~ .nav-links {
        height: auto; /* The height will automatically adjust according to the number of links. */
        max-height: 350px; 
    }

    /* HERO SECTION (HOME) */
	
	.about-intro h1 {
		margin-top: 70px;
		font-size: 1.9rem;
    
	}	
	
    .hero-section {
        height: auto;
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    /* SERVICES CARD MODEL */
	
	.services-1-section {
    padding: 0px;   
	}

	.section-title {
    text-align: center;
    margin-bottom: 50px;
	}

	.section-title h2 {
    font-size: 1.8rem;
	margin-top: 5px;
    
	}
	
	
	
    .services-grid {
        grid-template-columns: 1fr; /* All service cards will fit perfectly one under the other.*/
        gap: 20px;
    }

    .service-card {
	background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

    /* CLIENTS PORTFOLIO */
	
	.clients-section {
    padding: 0px;

	}
	
    .clients-grid {
        grid-template-columns: repeat(2, 1fr); /*Clients will look great in 2 columns on mobile. */
        gap: 15px;
    }

    .client-card {
        height: auto; /* Card size suitable for phone screen */
    }

    /* CONTACT US SECTION */
    .address-card {
        
		text-align: center;
    }
	
	.address-card {
    background-color: #fcf8f6; 
    border: 1px solid #f9ebe6;
    display: flex;
    align-items: center;
}

    .quick-card {
        flex-direction: row; /* On mobile, the icon and number will be displayed correctly on the left and right sides. */
        text-align: center;
        padding: 20px;
        gap: 15px;
        justify-content: flex-start;
    }

    .quick-card-info {
        text-align: left;
    }

    .contact-value {
        font-size: 1.1rem; /* To prevent large phone numbers from leaving the mobile screen */
        word-break: break-all;
    }

    .click-to-action {
        opacity: 1; /* There is no hover because it is touch on mobile, so the link will always be shown.*/
        transform: translateX(0);
        margin-top: 2px;
    }
}

/* For very small mobile phones (Max Width: 480px) */
@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr; /* Clients can be 1 column on very small phones */
    }
	
	.address-card {
    background-color: #fcf8f6; 
    border: 1px solid #f9ebe6;
    display: flex;
    align-items: center;
}

    .address-box {
        flex-direction: column;
        gap: 15px;
    }

    .quick-card {
        flex-direction: column; /* Phone numbers will come down and fit perfectly. */
        text-align: center;
    }

    .quick-card-info {
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

