/*=====================================================
 DHARMVIR BHAKT NIWAS
 Premium Hotel Booking Website
 Part 2A
======================================================*/


/*==============================
        GOOGLE FONT
===============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==============================
        ROOT VARIABLES
===============================*/

:root{

    --primary:#0057D9;
    --primary-dark:#003B99;
    --secondary:#00AEEF;

    --gold:#FDBA12;

    --white:#ffffff;
    --light:#f8f9fc;
    --light2:#eef4ff;

    --text:#2d3748;
    --text-light:#6b7280;

    --border:#e5e7eb;

    --shadow:
        0 10px 35px rgba(0,0,0,.08);

    --shadow-hover:
        0 20px 45px rgba(0,0,0,.15);

    --radius:18px;

}


/*==============================
        RESET
===============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:var(--text);

    overflow-x:hidden;

}


/*==============================
        LINKS
===============================*/

a{

    text-decoration:none;

    transition:.35s;

    color:inherit;

}

ul{

    list-style:none;

}

img{

    max-width:100%;

    display:block;

}


/*==============================
        CONTAINER
===============================*/

.container{

    width:90%;

    max-width:1320px;

    margin:auto;

}


/*==============================
        HEADER
===============================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.4s;

    padding:18px 0;

    background:rgba(0,0,0,.20);

    backdrop-filter:blur(12px);

}


/*==============================
      HEADER ON SCROLL
===============================*/

.header.scrolled{

    background:#ffffff;

    box-shadow:0 6px 20px rgba(0,0,0,.08);

    padding:12px 0;

}


/*==============================
        HEADER FLEX
===============================*/

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}


/*==============================
        LOGO
===============================*/

.logo img{

    height:62px;

    transition:.35s;

}

.header.scrolled .logo img{

    height:54px;

}


/*==============================
        NAVIGATION
===============================*/

nav ul{

    display:flex;

    align-items:center;

    gap:42px;

}

nav ul li a{

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    position:relative;

    letter-spacing:.4px;

}


/* White → Dark after scroll */

.header.scrolled nav ul li a{

    color:#222;

}


/*==============================
     NAVIGATION HOVER
===============================*/

nav ul li a:after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--gold);

    transition:.35s;

    border-radius:20px;

}

nav ul li a:hover:after{

    width:100%;

}

nav ul li a:hover{

    color:var(--gold);

}


/*==============================
       LOGIN BUTTON
===============================*/

.login-btn a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:145px;

    height:48px;

    border-radius:50px;

    font-weight:700;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    box-shadow:0 12px 25px rgba(0,87,217,.25);

    transition:.35s;

}

.login-btn a:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(0,87,217,.35);

}

.overlay{

    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

}

/*==============================
        HERO SECTION
===============================*/

.hero{

    position:relative;
    width:100%;
    height:80vh;
    min-height:600px;

    background:
        linear-gradient(rgba(255,255,255,.03),rgba(255,255,255,.03)),
        url("../images/hero.jpg");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    overflow:hidden;

}
/*==============================
        HERO OVERLAY
===============================*/

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.08);
}
/*==============================
      HERO CONTENT
===============================*/

.hero-content{

    position:relative;
    z-index:5;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    height:100%;

    text-align:center;

    padding-top:80px;

}
/*==============================
      HERO SUBTITLE
===============================*/

.hero-content h4{

    font-size:20px;

    letter-spacing:4px;

    font-weight:500;

    text-transform:uppercase;

    color:var(--gold);

    margin-bottom:18px;

}


/*==============================
      HERO TITLE
===============================*/

.hero-content h1{

    font-size:78px;
    font-weight:800;
    line-height:1.1;

    margin:15px 0 20px;

    color:#fff;

    text-shadow:
        0 5px 25px rgba(0,0,0,.35);

}

/*==============================
      HERO DESCRIPTION
===============================*/

.hero-content p{

    max-width:760px;

    font-size:22px;

    line-height:1.8;

    color:#f1f5f9;

}


/*==============================
      HERO BUTTON AREA
===============================*/

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}


/*==============================
      PRIMARY BUTTON
===============================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    box-shadow:0 15px 30px rgba(0,87,217,.30);

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 45px rgba(0,87,217,.40);

}


/*==============================
     OUTLINE BUTTON
===============================*/

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    border-radius:50px;

    border:2px solid #ffffff;

    color:#ffffff;

    font-weight:700;

    transition:.35s;

}

.btn-outline:hover{

    background:#ffffff;

    color:var(--primary);

}

/*=====================================================
            SEARCH SECTION
======================================================*/

.search-section{

    position:relative;

    margin-top:-70px;

    z-index:100;

    padding-bottom:80px;

}

/*=====================================================
            SEARCH BOX
======================================================*/

.search-box{

    width:92%;

    max-width:1250px;

    margin:auto;

    background:#ffffff;

    border-radius:28px;

    box-shadow:0 25px 70px rgba(0,0,0,.15);

    padding:35px;

    transition:.35s;

}

.search-box:hover{

    box-shadow:0 35px 90px rgba(0,0,0,.18);

}


/*=====================================================
            SEARCH FORM
======================================================*/

#searchForm{

    display:grid;

    grid-template-columns:
        1.2fr
        1.2fr
        .8fr
        .8fr
        .8fr
        1fr;

    gap:18px;

    align-items:end;

}


/*=====================================================
            FIELD
======================================================*/

.field{

    display:flex;

    flex-direction:column;

}


/*=====================================================
            LABEL
======================================================*/

.field label{

    font-size:14px;

    font-weight:600;

    color:#666;

    margin-bottom:10px;

}


/*=====================================================
            INPUTS
======================================================*/

.field input{

    width:100%;

    height:60px;

    border:1px solid #dfe6ef;

    border-radius:16px;

    padding:0 18px;

    font-size:16px;

    font-weight:500;

    background:#ffffff;

    transition:.35s;

}


/*=====================================================
            SELECT
======================================================*/

.field select{

    width:100%;

    height:60px;

    border:1px solid #dfe6ef;

    border-radius:16px;

    padding:0 18px;

    font-size:16px;

    font-weight:500;

    background:#ffffff;

    cursor:pointer;

    transition:.35s;

}


/*=====================================================
            FOCUS
======================================================*/

.field input:focus,
.field select:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(0,87,217,.10);

}


/*=====================================================
            PLACEHOLDER
======================================================*/

.field input::placeholder{

    color:#9aa6b2;

}


/*=====================================================
            SEARCH BUTTON
======================================================*/

.button-area{

    display:flex;

}


/*=====================================================
            BUTTON
======================================================*/

.button-area button{

    width:100%;

    height:60px;

    border:none;

    border-radius:16px;

    cursor:pointer;

    font-size:17px;

    font-weight:700;

    color:#ffffff;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    transition:.35s;

    box-shadow:
    0 15px 35px rgba(0,87,217,.25);

}


/*=====================================================
            BUTTON ICON
======================================================*/

.button-area button i{

    margin-right:10px;

}


/*=====================================================
            BUTTON HOVER
======================================================*/

.button-area button:hover{

    transform:translateY(-4px);

    box-shadow:
    0 22px 45px rgba(0,87,217,.35);

}


/*=====================================================
        QUICK FEATURES
======================================================*/

.quick-features{

    width:92%;

    max-width:1250px;

    margin:45px auto 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}


/*=====================================================
        FEATURE CARD
======================================================*/

.feature-item{

    background:#ffffff;

    border-radius:22px;

    text-align:center;

    padding:35px 20px;

    transition:.35s;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}


.feature-item:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 55px rgba(0,0,0,.15);

}


/*=====================================================
            ICON
======================================================*/

.feature-item i{

    width:75px;

    height:75px;

    line-height:75px;

    border-radius:50%;

    font-size:28px;

    color:#ffffff;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    margin-bottom:20px;

}


/*=====================================================
        TITLE
======================================================*/

.feature-item h3{

    font-size:22px;

    margin-bottom:12px;

    font-weight:700;

    color:#222;

}


/*=====================================================
        DESCRIPTION
======================================================*/

.feature-item p{

    font-size:15px;

    color:#666;

    line-height:1.8;

}


/*=====================================================
        SECTION TITLE
======================================================*/

.section-title{

    text-align:center;

    margin-bottom:55px;

}


.section-title h2{

    font-size:42px;

    font-weight:800;

    color:#1f2937;

    margin-bottom:15px;

}


.section-title p{

    font-size:18px;

    color:#6b7280;

}


/*=====================================================
        RESPONSIVE
======================================================*/

@media(max-width:1200px){

#searchForm{

grid-template-columns:
repeat(3,1fr);

}

}


@media(max-width:768px){

.search-box{

padding:25px;

}

#searchForm{

grid-template-columns:1fr;

}

.button-area{

margin-top:10px;

}

.quick-features{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:18px;

}

}


@media(max-width:576px){

.search-section{

margin-top:-60px;

}

.search-box{

padding:20px;

border-radius:20px;

}

.field input,
.field select,
.button-area button{

height:56px;

}

}
/*=====================================================
            POPULAR ROOMS SECTION
======================================================*/

.popular-rooms{

    padding:100px 0;

    background:#f7f9fc;

}


/*=====================================================
            ROOM GRID
======================================================*/

.room-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}


/*=====================================================
            ROOM CARD
======================================================*/

.room-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.40s;

    position:relative;

}


/*=====================================================
            ROOM CARD HOVER
======================================================*/

.room-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.16);

}


/*=====================================================
            ROOM IMAGE
======================================================*/

.room-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.45s;

}


.room-card:hover img{

    transform:scale(1.08);

}


/*=====================================================
            ROOM INFO
======================================================*/

.room-info{

    padding:28px;

}


/*=====================================================
            ROOM TITLE
======================================================*/

.room-info h3{

    font-size:28px;

    font-weight:700;

    color:#222;

    margin-bottom:15px;

}


/*=====================================================
            ROOM DETAILS
======================================================*/

.room-info p{

    display:flex;

    align-items:center;

    gap:10px;

    color:#666;

    margin-bottom:12px;

    font-size:15px;

}


/*=====================================================
            ICONS
======================================================*/

.room-info p i{

    color:var(--primary);

    width:20px;

    text-align:center;

}


/*=====================================================
            PRICE
======================================================*/

.room-info h4{

    margin-top:22px;

    margin-bottom:20px;

    font-size:28px;

    color:var(--primary);

    font-weight:800;

}


/*=====================================================
            PRICE SMALL
======================================================*/

.room-info h4 span{

    font-size:15px;

    color:#888;

    font-weight:500;

}


/*=====================================================
            BOOK BUTTON
======================================================*/

.room-info a{

    display:block;

    width:100%;

    text-align:center;

    padding:15px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,87,217,.25);

}


.room-info a:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 45px rgba(0,87,217,.35);

}


/*=====================================================
            ROOM BADGE
======================================================*/

.room-card::before{

    content:"POPULAR";

    position:absolute;

    top:18px;

    left:18px;

    background:#ffb400;

    color:#ffffff;

    padding:8px 16px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    z-index:5;

}


/*=====================================================
            ROOM FEATURES
======================================================*/

.room-features{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:18px;

}


.room-features span{

    background:#eef5ff;

    color:var(--primary);

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}


/*=====================================================
            STAR RATING
======================================================*/

.room-rating{

    display:flex;

    align-items:center;

    gap:4px;

    margin:15px 0;

}


.room-rating i{

    color:#ffb400;

    font-size:15px;

}


/*=====================================================
            RESPONSIVE
======================================================*/

@media(max-width:1100px){

.room-grid{

    grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

.popular-rooms{

    padding:70px 0;

}

.room-grid{

    grid-template-columns:1fr;

}

.room-card img{

    height:240px;

}

.room-info{

    padding:22px;

}

.room-info h3{

    font-size:24px;

}

.room-info h4{

    font-size:24px;

}

}

/*=====================================================
                GALLERY SECTION
======================================================*/

.gallery{

    padding:100px 0;

    background:#ffffff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}



/*=====================================================
                FACILITIES
======================================================*/

.facilities{

    padding:100px 0;

    background:#f8fbff;

}

.facility-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.facility-grid div{

    background:#ffffff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    font-size:17px;

    font-weight:600;

    color:#333;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.facility-grid div:hover{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#ffffff;

    transform:translateY(-8px);

}



/*=====================================================
                TESTIMONIALS
======================================================*/

.testimonials{

    padding:100px 0;

    background:#ffffff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.16);

}

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin:auto;

    margin-bottom:20px;

}

.testimonial-card h3{

    font-size:22px;

    margin-bottom:10px;

}

.testimonial-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}

.testimonial-card .stars{

    margin-top:18px;

    color:#ffb400;

}



/*=====================================================
                CONTACT
======================================================*/

.contact{

    padding:100px 0;

    background:#f7f9fc;

}

.contact-box{

    max-width:700px;

    margin:auto;

    background:#ffffff;

    border-radius:25px;

    padding:45px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.contact-box h3{

    font-size:34px;

    margin-bottom:25px;

    color:#222;

}

.contact-box p{

    margin-bottom:18px;

    font-size:17px;

    color:#555;

}

.contact-box i{

    color:var(--primary);

    width:30px;

}



/*=====================================================
                FOOTER
======================================================*/

footer{

    background:#0f172a;

    color:#ffffff;

    padding:60px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    margin-bottom:40px;

}

.footer-grid h3{

    margin-bottom:20px;

    font-size:22px;

}

.footer-grid ul{

    list-style:none;

}

.footer-grid ul li{

    margin-bottom:12px;

}

.footer-grid ul li a{

    color:#d1d5db;

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:#ffffff;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1e293b;

    color:#ffffff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

.footer-bottom{

    text-align:center;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    font-size:15px;

    color:#cbd5e1;

}



/*=====================================================
                RESPONSIVE
======================================================*/

@media(max-width:1100px){

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

.facility-grid{

    grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.gallery{

    padding:70px 0;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-grid img{

    height:240px;

}

.facilities{

    padding:70px 0;

}

.facility-grid{

    grid-template-columns:1fr;

}

.contact{

    padding:70px 0;

}

.contact-box{

    padding:30px;

}

.contact-box h3{

    font-size:28px;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-social{

    justify-content:center;

}

}
/*=====================================================
                PART 2D
        PREMIUM EFFECTS & ANIMATIONS
======================================================*/


/*------------------------------
        Smooth Scrolling
------------------------------*/

html{
    scroll-behavior:smooth;
}


/*------------------------------
        Section Animation
------------------------------*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}


/*------------------------------
        Fade In
------------------------------*/

.fade{

    opacity:0;

    transition:opacity .8s ease;

}

.fade.show{

    opacity:1;

}


/*------------------------------
        Zoom Animation
------------------------------*/

.zoom{

    transform:scale(.9);

    opacity:0;

    transition:all .8s ease;

}

.zoom.show{

    transform:scale(1);

    opacity:1;

}


/*------------------------------
        Image Hover
------------------------------*/

img{

    transition:.4s;

}

img:hover{

    filter:brightness(1.03);

}


/*------------------------------
        Button Effects
------------------------------*/

.btn,
button{

    transition:.35s;

}

.btn:hover,
button:hover{

    transform:translateY(-3px);

}


/*------------------------------
        Card Animation
------------------------------*/

.room-card,
.feature-item,
.facility-grid div,
.testimonial-card{

    transition:.35s;

}


/*------------------------------
        Input Fields
------------------------------*/

input,
select,
textarea{

    transition:.3s;

    outline:none;

}

input:focus,
select:focus,
textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(0,102,204,.12);

}


/*------------------------------
        Selection Color
------------------------------*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*------------------------------
        Scrollbar
------------------------------*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}


/*------------------------------
        Back To Top Button
------------------------------*/

#backTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

#backTop.show{

    opacity:1;

    visibility:visible;

}

#backTop:hover{

    transform:translateY(-5px);

}


/*------------------------------
        Sticky Header Shadow
------------------------------*/

header.sticky{

    background:#fff;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}


/*------------------------------
        Utility Classes
------------------------------*/

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}

.mt-50{

    margin-top:50px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-50{

    margin-bottom:50px;

}


/*------------------------------
        Divider
------------------------------*/

.divider{

    width:90px;

    height:4px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

    margin:18px auto 45px;

    border-radius:20px;

}


/*------------------------------
        Glass Effect
------------------------------*/

.glass{

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.2);

}


/*------------------------------
        Loader
------------------------------*/

.loader{

    width:60px;

    height:60px;

    border:6px solid #eee;

    border-top:6px solid var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


/*------------------------------
        Floating Animation
------------------------------*/

.float{

    animation:floating 4s ease-in-out infinite;

}

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}


/*------------------------------
        Pulse Animation
------------------------------*/

.pulse{

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(0,102,204,.4);

    }

    70%{

        box-shadow:0 0 0 18px rgba(0,102,204,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(0,102,204,0);

    }

}


/*------------------------------
        Mobile Optimisation
------------------------------*/

@media(max-width:992px){

    .container{

        width:92%;

    }

}

@media(max-width:768px){

    h1{

        font-size:38px;

    }

    h2{

        font-size:30px;

    }

    h3{

        font-size:24px;

    }

    p{

        font-size:15px;

        line-height:1.8;

    }

}

@media(max-width:480px){

    h1{

        font-size:30px;

    }

    h2{

        font-size:26px;

    }

    .container{

        width:94%;

    }

}
.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,250px);

    gap:30px;

    justify-content:center;

    margin-top:50px;

}
.feature-item{
    text-align:center;
    background:#fff;
    padding:30px 20px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.feature-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.feature-item i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:18px;
}

.feature-item h3{
    font-size:24px;
    margin-bottom:12px;
}

.feature-item p{
    font-size:16px;
    color:#666;
    line-height:1.7;
}

@media(max-width:992px){
    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .feature-grid{
        grid-template-columns:1fr;
    }
}

/*=====================================================
                END OF STYLE.CSS
======================================================*/