﻿/* Base Styles */
:root {
    --primary: #e8b4bc;
    --secondary: #4a4a4a;
    --accent: #fac71e; /*button background*/
    --light: #f7f2e0; /*body background*/
    --dark: #2c2c2c;
    --text: #333333;
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

/*h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

    h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--primary);
    }

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}*/

ul {
    list-style: none;
}

img {
    width:70px;
    height:70px;
 
   
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

    .btn:hover {
        background-color: var(--accent);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

    .btn-secondary:hover {
        background-color: var(--primary);
        color: white;
    }

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
.navbar{
    background-color:white;
    
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: goldenrod !important;
}
.brandname {
    font-weight: 500;
    font-size: 24px;
}

.sechero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/hero.jpg') no-repeat center center;
    min-height: 70vh;
    display: flex;
    align-items: center;
   
}
.renderbody{
    padding-top:77px;
    left:0;
}
/*FOOTER CSS*/
:root {
    --primary-color: #8B6B7E; /* Mauve color */
    --secondary-color: #F8F9FA;
    --accent-color: #E9D8E4;
    --text-color: #333333;
}
.custom-footer {
    background-color: #f2f2f0;
    border-top: 1px solid #ffecb3;
}

.brand-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.brand-name {
    font-weight: bold;
    color: #212529;
}

.footer-heading {
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
}

    .footer-link:hover {
        color: #d97706;
    }

.contact-info {
    color: #6c757d;
    font-size: 14px;
}

.copyright {
    color: #6c757d;
    font-size: 14px;
}
/*contact css*/
.hero-section {
    background: url('/images/contact.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}
.hero-section-portfolio {
    background: #2A7B9B;
    background: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(157, 237, 190, 1) 0%, rgba(240, 227, 110, 1) 50%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 0;
}
.fa-envelope {
    width: 35px;
}
.portfolio-list{
    
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
   
    gap:5px;
}
.portfolio-img{
    display:flex;
    flex-direction:column;
   background-size:cover;
   background-position:center;
    align-items:center;
    padding:5px;
}
    .portfolio-img img{
        height:300px;
        width:300px;
        border-radius:10px;
    }
    .contact-info-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: none;
        padding: 30px;
        height: 100%;
        transition: transform 0.3s;
    }

    .contact-info-card:hover {
        transform: translateY(-5px);
    }

.contact-icon {
    background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(139, 107, 126, 0.25);
}

.footer {
    background-color: var(--secondary-color);
    padding: 60px 0 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

    .social-icon:hover {
        background-color: #7a5c6e;
        color: white;
        transform: translateY(-3px);
    }

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--primary-color);
    }

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.bi{
    color:black;
    font-size:30px;
    

}
.bi:hover{
    color:goldenrod;
}
