
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #09073d;
    color: #fff;
    font-size: 13px;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, #0d6efd, #00c6ff);
}

/* LOGO */
.logo img {
    height: 90px;
}

/* NAV */
.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    position: relative;
}

/* UNDERLINE HOVER */
.nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffd700;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* BUTTONS */
.btn {
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    margin-left: 10px;
}

.call-btn {
    background: #fff;
    color: #0d6efd;
    font-weight: bold;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

/* MENU ICON */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background: #0d6efd;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    transition: 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    background: rgba(255,255,255,0.2);
    padding-left: 25px;
}

/* OVERLAY */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    display: none;
}

.overlay.active {
    display: 0;
}

/* MOBILE */
@media(max-width:768px){
    .nav, .btn-group {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .logo img {
        height: 90px;
    }
}
 
.about {
    padding: 60px 20px;
    background: #f9f9f9;
}

/* CONTAINER */
.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* IMAGE */
.about-img img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
}

/* CONTENT */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

/* POINTS */
.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
    font-size: 15px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.about-btn:hover {
    background: #084298;
}

/* MOBILE */
@media(max-width:768px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }
}

.services {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.services h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

/* GRID */
.service-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.service-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

/* ICON */
.icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TITLE */
.service-card h3 {
    margin-bottom: 10px;
}

/* TEXT */
.service-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.service-btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-btn:hover {
    background: #084298;
}

/* MOBILE */
@media(max-width:768px) {
    .service-container {
        grid-template-columns: 1fr;
    }

    .services h2 {
        font-size: 24px;
    }
}

.reviews {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

/* HEADER */
.reviews-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.reviews-header p {
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* HOVER */
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* STARS */
.stars {
    font-size: 18px;
    margin-bottom: 15px;
}

/* REVIEW TEXT */
.review-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* USER */
.review-user {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.review-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
}

/* NAME */
.review-user h4 {
    margin: 0;
    font-size: 15px;
}

.review-user span {
    font-size: 13px;
    color: #777;
}

/* BUTTON */
.google-btn {
    display: inline-block;
    margin-top: 40px;
    background: #0d6efd;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.google-btn:hover {
    background: #084298;
}

/* MOBILE */
@media(max-width:768px){

    .reviews-container {
        grid-template-columns: 1fr;
    }

    .reviews-header h2 {
        font-size: 24px;
    }

    .review-card {
        text-align: center;
    }

    .review-user {
        justify-content: center;
    }
}

.brands {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

/* HEADER */
.brands-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.brands-header p {
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.brands-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.brand-card {
    background: #f8f9fa;
    padding: 25px 15px;
    border-radius: 14px;
    transition: 0.3s;
    border: 1px solid #eee;
}

/* IMAGE */
.brand-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* TITLE */
.brand-card h3 {
    margin: 0;
    font-size: 16px;
    color: #222;
}

/* HOVER EFFECT */
.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE */
@media(max-width:768px){

    .brands-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .brands-header h2 {
        font-size: 24px;
    }

    .brand-card {
        padding: 20px 10px;
    }

    .brand-card img {
        width: 70px;
        height: 70px;
    }
}

.contact-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

/* CONTAINER */
.contact-container {
    max-width: 1150px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* CONTACT INFO */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    line-height: 1.7;
}

/* INFO BOX */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.info-box span {
    font-size: 22px;
}

/* PHONE LINK */
.info-box a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: bold;
}

/* BUTTONS */
.contact-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTON STYLE */
.call-btn,
.whatsapp-btn {
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* CALL */
.call-btn {
    background: #0d6efd;
    color: #fff;
}

/* WHATSAPP */
.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

/* HOVER */
.call-btn:hover,
.whatsapp-btn:hover {
    transform: translateY(-3px);
}

/* MAP */
.map-box {
    flex: 1;
}

.map-box iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 14px;
}

/* MOBILE */
@media(max-width:768px){

    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        text-align: center;
    }

    .info-box {
        justify-content: center;
    }

    .contact-buttons {
        justify-content: center;
    }

    .contact-info h2 {
        font-size: 26px;
    }

    .map-box iframe {
        height: 300px;
    }
}

.faq-section{
    padding:60px 20px;
    background:#fff;
}

.faq-header{
    text-align:center;
    margin-bottom:40px;
}

.faq-header h2{
    font-size:32px;
}

.faq-header p{
    color:#666;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #eee;
}

.faq-question{
    width:100%;
    padding:18px 20px;
    background:#f8f9fa;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:16px;
    font-weight:bold;
}

.faq-answer{
    display:none;
    padding:18px 20px;
    background:#fff;
}

.faq-answer p{
    margin:0;
    color:#555;
    line-height:1.7;
}

/* MOBILE */
@media(max-width:768px){

    .faq-header h2{
        font-size:24px;
    }

    .faq-question{
        font-size:15px;
        text-align:left;
    }
}

.bottom-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    z-index:999;
}

/* BUTTONS */
.bottom-bar a{
    flex:1;
    text-align:center;
    padding:14px;
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    font-size:16px;
}

/* CALL */
.bottom-call{
    background:#0d6efd;
}

/* WHATSAPP */
.bottom-whatsapp{
    background:#25D366;
}

/* DESKTOP HIDE */
@media(min-width:768px){
    .bottom-bar{
        display:none;
    }
}

.footer{
    background:#111;
    color:#fff;
    padding-top:60px;
}

/* CONTAINER */
.footer-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    padding:0 20px 40px;
}

/* BOX */
.footer-box h3{
    margin-bottom:20px;
}

.footer-box p,
.footer-box a{
    color:#ccc;
    line-height:1.8;
    text-decoration:none;
    display:block;
    margin-bottom:10px;
}

/* HOVER */
.footer-box a:hover{
    color:#fff;
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    padding:18px;
    border-top:1px solid rgba(255,255,255,0.1);
    font-size:14px;
    color:#aaa;
}

/* MOBILE */
@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }
}


/* GALLERY */
.gallery-section{
    padding:60px 20px;
    background:#f8f9fa;
}

/* HEADER */
.gallery-header{
    text-align:center;
    margin-bottom:40px;
}

.gallery-header h2{
    font-size:32px;
    margin-bottom:10px;
color:yellow;
}

.gallery-header p{
    color:#666;
}

/* GRID */
.gallery-container{
    max-width:1150px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* ITEM */
.gallery-item{
    overflow:hidden;
    border-radius:14px;
    position:relative;
}

/* IMAGE */
.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.4s;
    display:block;
}

/* HOVER EFFECT */
.gallery-item:hover img{
    transform:scale(1.08);
}

/* OVERLAY EFFECT */
.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.15);
    opacity:0;
    transition:0.3s;
}

.gallery-item:hover::after{
    opacity:1;
}

/* MOBILE */
@media(max-width:768px){

    .yellow-strip{
        font-size:13px;
        padding:10px;
    }

    .gallery-container{
        grid-template-columns:1fr;
    }

    .gallery-header h2{
        font-size:24px;
    }

    .gallery-item img{
        height:220px;
    }
}

.gallery-header{
    text-align:center;
    margin-bottom:40px;
}

.gallery-header h2{
    font-size:32px;
    margin-bottom:12px;
    color:#ffd700;
    font-weight:700;
    text-transform:uppercase;
    position:relative;
    display:inline-block;
}

/* SMALL LINE EFFECT */
.gallery-header h2::after{
    content:"";
    width:70px;
    height:4px;
    background:#ffd700;
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    border-radius:10px;
}

.gallery-header p{
    color:#666;
    margin-top:20px;
    font-size:16px;
}

/* MOBILE */
@media(max-width:768px){

    .gallery-header h2{
        font-size:24px;
    }

    .gallery-header p{
        font-size:14px;
    }
}



/* GALLERY */
.gallery-section{
    padding:60px 20px;
    background:#f8f9fa;
}

/* HEADER */
.gallery-header{
    text-align:center;
    margin-bottom:40px;
}

.gallery-header h2{
    font-size:32px;
    margin-bottom:10px;
}

.gallery-header p{
    color:#666;
}

/* GRID */
.gallery-container{
    max-width:1150px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* ITEM */
.gallery-item{
    overflow:hidden;
    border-radius:14px;
    position:relative;
}

/* IMAGE */
.gallery-item img{
    width:100%;
    height:760px;
    object-fit:cover;
    transition:0.4s;
    display:block;
}

/* HOVER EFFECT */
.gallery-item:hover img{
    transform:scale(1.08);
}

/* OVERLAY EFFECT */
.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.15);
    opacity:0;
    transition:0.3s;
}

.gallery-item:hover::after{
    opacity:1;
}

/* MOBILE */
@media(max-width:768px){

    .yellow-strip{
        font-size:13px;
        padding:10px;
    }

    .gallery-container{
        grid-template-columns:1fr;
    }

    .gallery-header h2{
        font-size:24px;
    }

    .gallery-item img{
        height:760px;
    }
}

