@charset "utf-8";
/* CSS Document */

/* Modern Website Styles */
:root {
    --primary-color: #4db848;
    --primary-dark: #3fa03a;
    --primary-light: #6fc769;
    --secondary-color: #1aa4da;
    --secondary-dark: #1685b1;
    --secondary-light: #4cbae6;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --text-color: #212529;
    --text-light: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --border-radius-sm: 5px;
    --border-radius: 10px;
    --border-radius-lg: 15px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: capitalize;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:after {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    color: var(--dark-color);
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-light {
    background-color: var(--gray-100) !important;
}

/*--------------------------------------------------------------
# Section Headings
--------------------------------------------------------------*/
.section-heading {
    margin-bottom: 2rem;
    position: relative;
}

.section-heading .subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 40px;
}

.section-heading .subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-heading h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0.5rem 0 0;
    border-radius: 2px;
}

.text-center .section-heading h2:after {
    margin: 0.5rem auto 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    padding: calc(var(--nav-height) + 40px) 0 6rem;
    background: linear-gradient(135deg, rgba(52, 58, 64, 0.95), rgba(33, 37, 41, 0.95));
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1559028012-481c04fa702d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1736&q=80') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    align-items: center;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--white);
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
}

.hero-image {
    border: 3px solid var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    clip-path: polygon(0 80%, 100% 0, 100% 100%, 0% 100%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-quote {
    background-color: var(--gray-100);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    position: relative;
}

.about-quote blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    color: var(--text-color);
}

.about-quote blockquote p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.25rem;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover:before {
    height: 10px;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    color: var(--primary-color);
    font-size: 1.75rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
}

.service-features li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.service-tech span {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--gray-100);
    border-radius: 50px;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--dark-color);
    color: var(--gray-400);
    padding: 5rem 0 0;
}

.footer-content {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-height: 50px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact p {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
}

.footer-contact p i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 1.5rem 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-section {
        min-height: 600px;
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.75rem;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    /* Fix horizontal overflow */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Increased spacing for mobile */
    .section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .hero-section {
        padding-top: calc(var(--nav-height-mobile) + 80px);
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .navbar + section,
    .navbar + .section,
    .navbar + .hero-section {
        padding-top: calc(var(--nav-height-mobile) + 80px);
    }
    
    .section-heading {
        margin-bottom: 1.5rem;
    }
    
    .section-heading h2 {
        font-size: 2.25rem;
    }
    
    .section-heading .subtitle {
        font-size: 0.8rem;
    }
    
    [class*="col-"] {
        margin-bottom: 1.5rem;
    }
    
    .row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    .service-card,
    .portfolio-item,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        margin-right: 0 !important;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    /* Better spacing between sections */
    #services, #work, #about, #testimonials, #contact {
        scroll-margin-top: calc(var(--nav-height-mobile) + 30px);
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .section-heading h2 {
        font-size: 1.75rem;
    }

    .service-cta-card {
        margin-bottom: 2rem;
    }

    .service-cta-card h4 {
        font-size: 1.1rem;
    }

    .service-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-heading .subtitle {
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-section {
        padding-top: calc(var(--nav-height-mobile) + 90px);
        padding-bottom: 50px;
    }
    
    .navbar + section,
    .navbar + .section,
    .navbar + .hero-section {
        padding-top: calc(var(--nav-height-mobile) + 90px);
    }
    
    .section {
        padding: calc(var(--section-padding-mobile) - 10px) 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-heading h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.75rem;
        padding: 0.6rem 1.25rem;
    }
    
    .hero-buttons .btn {
        margin-right: 0;
    }
    
    /* Adjust spacing for anchor links */
    #services, #work, #about, #testimonials, #contact {
        scroll-margin-top: calc(var(--nav-height-mobile) + 40px);
    }
    
    /* Add more space to section tops */
    .section {
        margin-top: 20px;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    /* Fix for notched iOS devices */
    @supports (padding-top: env(safe-area-inset-top)) {
        .hero-section {
            padding-top: calc(var(--nav-height-mobile) + 90px + env(safe-area-inset-top));
        }
    }
}

.devTitle
{
	margin-top: 5%;
	margin-bottom: 3%;
	font-weight:bold;
	font-size: 2em;
	text-align:center;
}

.quote{
	padding-top: 5%;
	padding-left: 10%;
	padding-right: 10%;
	padding-bottom: 2%;
	text-align: center;
}

.subItem
{
	text-align: center;
}

.subDiv
{
	padding:3%;
}

.subDiv2
{
	padding: 3%;
	margin-bottom: 3%;
}

	
#service
{
	background-color:#f2f2f2;
}

/******************************************************/

#WhatWeDo
{
	background-color:#f2f2f2;
}

#Projects{
	background-color: whitesmoke;
	padding-bottom: 3%;
}

.contact{
	text-shadow: 0 0 1px #000, 0 0 1px #000; 
}

.titles2
{
	font-family:"Lucida Grande", sans-serif;
	font-size:1.2em;
	color:#17a5d4;
	
	text-align: center;
}

#Feedback
{
	background-color: #FFF;	
}

#FeedbackForm
{
	margin: 5%;
	text-align:center;

	color: white;
}

.input
{
	width:100%;
	border: 1px solid black;
	border-radius:5px;
	padding:2%;
}

.mySubmit
{
	text-align:center;
	background:#03384F;
	padding:1%;
	
	border: 5px solid #03384F;
	border-radius:10px;
	
	font-family:Verdana, Geneva, sans-serif;
	font-size:120%;
	font-weight:bold;
	color:#51B848;

	text-shadow: 0 0 1px #000, 0 0 1px #000; 
}

.mySubmit:hover 
{
	background-color:#17a5d4;  
	border: 5px solid #17a5d4;
}

.bookingBtn {
	margin-top: 10%;
}

/******************************************************/
.fade {
  opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}
