/*=====================================================
BALAJI AIR CONDITIONER
Premium Responsive Website
STYLE.CSS (PART 1)
======================================================*/

/*==============================
GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fbff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1250px;
    margin:auto;
}

/*==============================
COMMON
==============================*/

section{
    padding:90px 0;
}

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

.section-title h5{
    color:#00a8ff;
    font-size:17px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    color:#0b4fa3;
    font-weight:700;
}

/*==============================
HEADER
==============================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    z-index:99999;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

header.sticky{

    padding:0;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

}

header .container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/*==============================
LOGO
==============================*/

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo a{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:80px;

    height:80px;

    object-fit:contain;

}

.logo h2{

    font-size:28px;

    color:#0b4fa3;

    font-weight:700;

    line-height:1.2;

}

.logo span{

    display:block;

    color:#00a8ff;

    font-size:15px;

    font-weight:500;

}

/*==============================
NAVBAR
==============================*/

nav ul{

    display:flex;

    align-items:center;

    gap:35px;

}

nav ul li a{

    color:#222;

    font-size:16px;

    font-weight:600;

    transition:.3s;

    position:relative;

}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#00a8ff;

    transition:.3s;

    border-radius:50px;

}

nav ul li a:hover,

nav ul li a.active{

    color:#00a8ff;

}

nav ul li a:hover::after,

nav ul li a.active::after{

    width:100%;

}

/*==============================
CALL BUTTON
==============================*/

.header-btn a{

    background:#00a8ff;

    color:#fff;

    padding:13px 28px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

    display:flex;

    align-items:center;

    gap:8px;

}

.header-btn a:hover{

    background:#0b4fa3;

    transform:translateY(-3px);

}

/*==============================
MOBILE MENU
==============================*/

.menu-btn{

    display:none;

    font-size:30px;

    color:#0b4fa3;

    cursor:pointer;

}

/*==============================
HERO
==============================*/

.hero{

    padding-top:140px;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#eef8ff,#dff3ff);

}

.hero-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:60px;

    align-items:center;

}

.hero-content h5{

    color:#00a8ff;

    letter-spacing:2px;

    margin-bottom:15px;

}

.hero-content h1{

    font-size:58px;

    color:#0b4fa3;

    line-height:1.2;

    margin-bottom:15px;

}

.hero-content h2{

    font-size:30px;

    color:#222;

    margin-bottom:20px;

}

.hero-content p{

    color:#555;

    margin-bottom:35px;

}

/*==============================
HERO BUTTONS
==============================*/

.hero-btn{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-btn a{

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.hero-btn a:first-child{

    background:#00a8ff;

    color:#fff;

}

.hero-btn a:last-child{

    border:2px solid #00a8ff;

    color:#00a8ff;

}

.hero-btn a:hover{

    transform:translateY(-5px);

}

.hero-image img{

    width:100%;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

    50%{

        transform:translateY(-18px);

    }

}

/*==========================
Hero Feature Cards
==========================*/

.hero-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

.feature-card{
    background:#ffffff;
    padding:25px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    cursor:pointer;
    border:2px solid transparent;
}

.feature-card i{
    font-size:40px;
    color:#00a8ff;
    margin-bottom:15px;
    transition:.4s;
}

.feature-card h4{
    font-size:20px;
    color:#0b4fa3;
    margin-bottom:10px;
    transition:.4s;
}

.feature-card p{
    color:#666;
    font-size:15px;
    transition:.4s;
}

/* Hover Effect */

.feature-card:hover{
    background:linear-gradient(135deg,#0b4fa3,#00a8ff);
    transform:translateY(-10px);
    border-color:#00a8ff;
}

.feature-card:hover i,
.feature-card:hover h4,
.feature-card:hover p{
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

.hero-features{
grid-template-columns:1fr;
}

}

/*==============================
ABOUT SECTION
==============================*/

.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about-content h5{
    color:#00a8ff;
    letter-spacing:2px;
    margin-bottom:12px;
}

.about-content h2{
    font-size:42px;
    color:#0b4fa3;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    margin-bottom:20px;
}

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:30px;
}

.about-list div{
    background:#f8fbff;
    border-radius:15px;
    padding:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.35s;
}

.about-list div:hover{
    background:#00a8ff;
    color:#fff;
    transform:translateY(-6px);
}

.about-list i{
    color:#00a8ff;
    margin-right:10px;
    font-size:18px;
}

.about-list div:hover i{
    color:#fff;
}

/*==============================
SERVICES
==============================*/

.services{
    background:#eef8ff;
}

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

.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#00a8ff;
}

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

.service-card i{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#eaf7ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:#00a8ff;
    margin-bottom:25px;
    transition:.3s;
}

.service-card:hover i{
    background:#00a8ff;
    color:#fff;
}

.service-card h3{
    color:#0b4fa3;
    font-size:26px;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    margin-bottom:25px;
}

/*==============================
SERVICE BUTTONS
==============================*/

.service-btn{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
}

.service-btn a{
    padding:12px 22px;
    border-radius:40px;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.service-btn .call-btn{
    background:#007bff;
}

.service-btn .whatsapp-btn{
    background:#25D366;
}

.service-btn a:hover{
    transform:translateY(-4px);
}

/*==============================
WHY CHOOSE US
==============================*/

.why{
    background:#fff;
}

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

.why-box{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.why-box:hover{
    background:#00a8ff;
    color:#fff;
    transform:translateY(-8px);
}

.why-box i{
    font-size:55px;
    color:#00a8ff;
    margin-bottom:20px;
}

.why-box:hover i{
    color:#fff;
}

.why-box h3{
    margin-bottom:12px;
    font-size:24px;
}

.why-box p{
    color:#666;
}

.why-box:hover p{
    color:#fff;
}

/*==============================
COUNTER SECTION
==============================*/

.counter-section{
    background:linear-gradient(135deg,#0b4fa3,#00a8ff);
    padding:80px 0;
}

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

.counter-box{
    text-align:center;
    color:#fff;
}

.counter{
    font-size:52px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box h4{
    font-size:18px;
    font-weight:500;
}

/*==============================
CONTACT STRIP
==============================*/

.contact-strip{
    background:linear-gradient(135deg,#0b4fa3,#00a8ff);
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.contact-strip h2{
    font-size:42px;
    margin-bottom:15px;
}

.contact-strip p{
    margin-bottom:30px;
}

.contact-strip a{
    display:inline-block;
    background:#fff;
    color:#0b4fa3;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.contact-strip a:hover{
    background:#25D366;
    color:#fff;
    transform:translateY(-4px);
}


/*==============================
ABOUT SECTION
==============================*/

.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about-content h5{
    color:#00a8ff;
    letter-spacing:2px;
    margin-bottom:12px;
}

.about-content h2{
    font-size:42px;
    color:#0b4fa3;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    margin-bottom:20px;
}

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:30px;
}

.about-list div{
    background:#f8fbff;
    border-radius:15px;
    padding:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.35s;
}

.about-list div:hover{
    background:#00a8ff;
    color:#fff;
    transform:translateY(-6px);
}

.about-list i{
    color:#00a8ff;
    margin-right:10px;
    font-size:18px;
}

.about-list div:hover i{
    color:#fff;
}

/*==============================
SERVICES
==============================*/

.services{
    background:#eef8ff;
}

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

.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#00a8ff;
}

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

.service-card i{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#eaf7ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:#00a8ff;
    margin-bottom:25px;
    transition:.3s;
}

.service-card:hover i{
    background:#00a8ff;
    color:#fff;
}

.service-card h3{
    color:#0b4fa3;
    font-size:26px;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    margin-bottom:25px;
}

/*==============================
SERVICE BUTTONS
==============================*/

.service-btn{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
}

.service-btn a{
    padding:12px 22px;
    border-radius:40px;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.service-btn .call-btn{
    background:#007bff;
}

.service-btn .whatsapp-btn{
    background:#25D366;
}

.service-btn a:hover{
    transform:translateY(-4px);
}

/*==============================
WHY CHOOSE US
==============================*/

.why{
    background:#fff;
}

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

.why-box{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.why-box:hover{
    background:#00a8ff;
    color:#fff;
    transform:translateY(-8px);
}

.why-box i{
    font-size:55px;
    color:#00a8ff;
    margin-bottom:20px;
}

.why-box:hover i{
    color:#fff;
}

.why-box h3{
    margin-bottom:12px;
    font-size:24px;
}

.why-box p{
    color:#666;
}

.why-box:hover p{
    color:#fff;
}

/*==============================
COUNTER SECTION
==============================*/

.counter-section{
    background:linear-gradient(135deg,#0b4fa3,#00a8ff);
    padding:80px 0;
}

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

.counter-box{
    text-align:center;
    color:#fff;
}

.counter{
    font-size:52px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box h4{
    font-size:18px;
    font-weight:500;
}

/*==============================
CONTACT STRIP
==============================*/

.contact-strip{
    background:linear-gradient(135deg,#0b4fa3,#00a8ff);
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.contact-strip h2{
    font-size:42px;
    margin-bottom:15px;
}

.contact-strip p{
    margin-bottom:30px;
}

.contact-strip a{
    display:inline-block;
    background:#fff;
    color:#0b4fa3;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.contact-strip a:hover{
    background:#25D366;
    color:#fff;
    transform:translateY(-4px);
}


/*==================================
CONTACT HERO
==================================*/

.contact-hero{
    padding:150px 0 80px;
    background:linear-gradient(rgba(11,79,163,.90),rgba(0,168,255,.90)),
    url("images/contact-banner.jpg");
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.contact-hero h1{
    font-size:55px;
    margin-bottom:15px;
}

.contact-hero p{
    max-width:800px;
    margin:auto;
    font-size:18px;
}

/*==================================
CONTACT SECTION
==================================*/

.contact{
    background:#f8fbff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

/*==================================
CONTACT INFO
==================================*/

.contact-info{

    display:grid;

    gap:25px;

}

.info-box{

    background:#fff;

    padding:25px;

    border-radius:20px;

    display:flex;

    gap:18px;

    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.info-box:hover{

    transform:translateY(-8px);

}

.info-box i{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#00a8ff;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

}

.info-box h3{

    color:#0b4fa3;

    margin-bottom:8px;

}

.info-box p{

    color:#666;

}

/*==================================
CONTACT FORM
==================================*/

.contact-form{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form h2{

    color:#0b4fa3;

    margin-bottom:25px;

}

.input-box{

    margin-bottom:18px;

}

.input-box input,
.input-box select,
.input-box textarea{

    width:100%;

    padding:15px;

    border:2px solid #e5e5e5;

    border-radius:10px;

    outline:none;

    font-size:16px;

    transition:.3s;

}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{

    border-color:#00a8ff;

    box-shadow:0 0 10px rgba(0,168,255,.25);

}

.input-box textarea{

    min-height:140px;

    resize:none;

}

/*==================================
BUTTON
==================================*/

.contact-form button{

    width:100%;

    background:#25D366;

    color:#fff;

    padding:16px;

    border:none;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#0b4fa3;

}

/*==================================
GOOGLE MAP
==================================*/

.map{

    margin-top:80px;

}

.map iframe{

    width:100%;

    height:450px;

    border:0;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

/*==================================
FOOTER
==================================*/

footer{

    background:#061b3d;

    color:#fff;

    padding:70px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    margin-bottom:40px;

}

.footer-box h3{

    margin-bottom:20px;

    color:#fff;

}

.footer-box p{

    color:#d8d8d8;

    margin-bottom:12px;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    color:#d8d8d8;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#00a8ff;

    padding-left:6px;

}

/*==================================
SOCIAL ICONS
==================================*/

.social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#00a8ff;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.social a:hover{

    transform:translateY(-5px);

    background:#25D366;

}

/*==================================
COPYRIGHT
==================================*/

.copyright{

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:20px;

    text-align:center;

    color:#ccc;

    font-size:15px;

}

/*==================================
FLOATING BUTTONS
==================================*/

.floating-buttons{

    position:fixed;

    right:20px;

    bottom:20px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:99999;

}

.floating-buttons a{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

}

.call-btn{

    background:#007bff;

}

.whatsapp-btn{

    background:#25D366;

}

.floating-buttons a:hover{

    transform:scale(1.12);

}

/*==================================
BACK TO TOP
==================================*/

#topBtn{

    position:fixed;

    left:20px;

    bottom:20px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#0b4fa3;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    display:none;

    z-index:9999;

    transition:.3s;

}

#topBtn:hover{

    background:#00a8ff;

    transform:translateY(-5px);

}

/*==================================
LOADER
==================================*/

.loader{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.loader::before{
    content:"";
    width:65px;
    height:65px;
    border:6px solid #e5e5e5;
    border-top:6px solid #00a8ff;
    border-radius:50%;
    animation:loaderRotate 1s linear infinite;
}

@keyframes loaderRotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/*==================================
SCROLLBAR
==================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#edf5ff;
}

::-webkit-scrollbar-thumb{
    background:#00a8ff;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#0b4fa3;
}

/*==================================
COMMON HOVER
==================================*/

img{
    transition:.35s;
}

img:hover{
    transform:scale(1.02);
}

button,
a{
    transition:.3s ease;
}

/*==================================
DARK MODE
==================================*/

body.dark{
    background:#111827;
    color:#fff;
}

body.dark header{
    background:#1f2937;
}

body.dark nav ul li a{
    color:#fff;
}

body.dark .service-card,
body.dark .why-box,
body.dark .gallery-card,
body.dark .contact-form,
body.dark .info-box{
    background:#1f2937;
    color:#fff;
}

body.dark p{
    color:#ddd;
}

body.dark footer{
    background:#020617;
}

/*==================================
ANIMATIONS
==================================*/

.fade-up{
    animation:fadeUp .8s ease forwards;
}

.zoom-in{
    animation:zoomIn .8s ease forwards;
}

.slide-left{
    animation:slideLeft .8s ease forwards;
}

.slide-right{
    animation:slideRight .8s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes zoomIn{

    from{
        opacity:0;
        transform:scale(.85);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

@keyframes slideLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes slideRight{

    from{
        opacity:0;
        transform:translateX(60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

/*==================================
TABLET
==================================*/

@media(max-width:991px){

header .container{
    height:80px;
}

.logo img{
    width:65px;
    height:65px;
}

.logo h2{
    font-size:22px;
}

.menu-btn{
    display:block;
}

.header-btn{
    display:none;
}

nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

nav.active{
    display:block;
}

nav ul{
    flex-direction:column;
    padding:25px 0;
    gap:20px;
}

.hero-grid,
.about-grid,
.contact-grid{
    grid-template-columns:1fr;
}

.hero{
    text-align:center;
}

.hero-btn{
    justify-content:center;
}

.hero-content h1{
    font-size:42px;
}

.hero-content h2{
    font-size:24px;
}

.about-list{
    grid-template-columns:1fr;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer-grid{
    grid-template-columns:1fr 1fr;
}

}

/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.container{
    width:94%;
}

.logo img{
    width:55px;
    height:55px;
}

.logo h2{
    font-size:18px;
}

.hero{
    padding-top:120px;
}

.hero-content h1{
    font-size:34px;
}

.hero-content h2{
    font-size:20px;
}

.section-title h2{
    font-size:30px;
}

.service-grid,
.gallery-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.contact-form{
    padding:25px;
}

.floating-buttons{
    right:15px;
    bottom:15px;
}

.floating-buttons a{
    width:55px;
    height:55px;
    font-size:24px;
}

#topBtn{
    width:50px;
    height:50px;
}

}

/*==================================
SMALL MOBILE
==================================*/

@media(max-width:480px){

header .container{
    height:75px;
}

.hero-content h1{
    font-size:28px;
}

.hero-content h2{
    font-size:18px;
}

.hero-btn{
    flex-direction:column;
}

.hero-btn a{
    width:100%;
    text-align:center;
}

.service-buttons{
    flex-direction:column;
}

.service-buttons a{
    width:100%;
}

.contact-strip h2,
.cta h2{
    font-size:28px;
}

}

/*==================================
END OF FILE
==================================*/