/* ===================================
   Google Font
===================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#f7f9fc;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    width:100%;
}

/* ===================================
   Splash Screen
===================================*/

.splash{
    position:fixed;
    inset:0;
    background:linear-gradient(135deg,#0A4FB4,#5FA8FF);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:1s;
}

.splash.hide{
    opacity:0;
    visibility:hidden;
}

.splash-logo{
    width:170px;
    height:170px;
    background:#fff;
    padding:15px;
    border-radius:50%;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    animation:zoomLogo 1.2s ease;
}

.splash h1{
    margin-top:25px;
    color:#fff;
    font-size:40px;
    font-weight:700;
    letter-spacing:1px;
    animation:fadeUp 1s ease;
}

.splash p{
    margin-top:12px;
    color:#fff;
    font-size:18px;
    opacity:.9;
    animation:fadeUp 1.4s ease;
}

/* ===================================
   Main Content
===================================*/

#mainContent{
    display:none;
    animation:pageFade 1s ease;
}

/* ===================================
   Hero Section
===================================*/

.hero{
    position:relative;
    width:100%;
    height:420px;
    background:linear-gradient(135deg,#0A4FB4,#6BAEFF);
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-220px;
    right:-150px;
}

.hero::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    left:-180px;
    bottom:-200px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(255,255,255,.05),
        rgba(255,255,255,.15)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.company-logo{
    width:160px;
    height:160px;
    background:#fff;
    border-radius:50%;
    padding:12px;
    margin:auto;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.hero h1{
    margin-top:25px;
    font-size:44px;
    font-weight:700;
    letter-spacing:.5px;
}

.hero span{
    display:inline-block;
    margin-top:12px;
    font-size:20px;
    font-weight:400;
    opacity:.95;
}

/* ===================================
   Contact Buttons
===================================*/

.quick-contact{
    width:100%;
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:-45px;
    position:relative;
    z-index:50;
}

.contact-icon{
    width:90px;
    height:90px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#0A4FB4;
    font-size:34px;
    box-shadow:0 12px 35px rgba(0,0,0,.15);
    transition:.35s;
}

.contact-icon:hover{
    background:#0A4FB4;
    color:#fff;
    transform:translateY(-8px);
}

/* ===================================
   Intro Section
===================================*/

.intro{
    max-width:900px;
    margin:60px auto;
    text-align:center;
    padding:0 20px;
}

.intro p{
    font-size:21px;
    color:#555;
    line-height:1.8;
    margin-bottom:10px;
}

/* ===================================
   Section Title
===================================*/

section h2{
    text-align:center;
    font-size:34px;
    color:#0A4FB4;
    margin-bottom:40px;
    font-weight:700;
}

/* ===================================
   Animations
===================================*/

@keyframes zoomLogo{

    from{
        transform:scale(.3);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes pageFade{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}









/*====================================
 Contact Card
====================================*/

.contact-card{
    max-width:1100px;
    margin:70px auto;
    padding:45px;
    background:#fff;
    border-radius:25px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:22px 0;
    border-bottom:1px solid #ececec;
}

.contact-item:last-child{
    border-bottom:none;
}

.contact-item i{
    width:60px;
    height:60px;
    background:#0A4FB4;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    flex-shrink:0;
}

.contact-item small{
    display:block;
    color:#888;
    font-size:14px;
    margin-bottom:4px;
}

.contact-item h4{
    color:#222;
    font-size:18px;
    font-weight:500;
    line-height:1.6;
}

/*====================================
 About Section
====================================*/

.about{
    max-width:1100px;
    margin:80px auto;
    padding:0 25px;
}

.about p{
    text-align:center;
    font-size:18px;
    color:#666;
    line-height:2;
    max-width:900px;
    margin:auto;
}

/*====================================
 Products
====================================*/

.products {
    width: 100%;
    padding: 80px 25px;
    background: #fff;
    text-align: center;
}

/* Section Title */
.products h2 {
    text-align: center;
    font-size: 34px;
    color: #0A4FB4;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

/* ==========================================
   PRODUCT GRID
========================================== */

.products .product-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;

    /* Desktop */
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
}

/* ==========================================
   PRODUCT BOX
========================================== */

.products .product-box {
    position: relative;

    width: 100%;
    height: 330px;

    padding: 0;
    margin: 0;

    overflow: hidden;
    border-radius: 16px;

    background: #eee;

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Product Hover */
.products .product-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(10, 79, 180, 0.15);
}

/* ==========================================
   PRODUCT IMAGE
========================================== */

.products .product-box img {
    width: 100%;
    height: 100%;

    display: block;

    padding: 0;
    margin: 0;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

/* Image Zoom */
.products .product-box:hover img {
    transform: scale(1.06);
}

/* ==========================================
   DARK IMAGE OVERLAY
========================================== */

.products .product-box::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.05) 75%,
        rgba(0, 0, 0, 0) 100%
    );

    pointer-events: none;

    z-index: 2;
}

/* ==========================================
   PRODUCT TEXT OVERLAY
========================================== */

.products .product-overlay {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 5;

    text-align: left;

    color: #fff;

    pointer-events: none;
}

/* Product Name */
.products .product-overlay h4 {
    margin: 0 0 7px;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 25px;
    font-weight: 600;

    line-height: 1.25;

    word-break: break-word;
}

/* Product Category */
.products .product-overlay span {
    display: block;

    color: #fff;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.5;

    letter-spacing: 1px;

    text-transform: uppercase;

    opacity: 0.9;
}

/* ==========================================
   LARGE LAPTOP
   1200px and below
========================================== */

@media (max-width: 1200px) {

    .products {
        padding: 75px 25px;
    }

    .products .product-grid {
        max-width: 1100px;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 22px;
    }

    .products .product-box {
        height: 310px;
    }

}


/* ==========================================
   TABLET / LAPTOP
   992px and below
========================================== */

@media (max-width: 992px) {

    .products {
        padding: 70px 22px;
    }

    .products h2 {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .products .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 22px;
    }

    .products .product-box {
        height: 300px;
        border-radius: 15px;
    }

    .products .product-overlay {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .products .product-overlay h4 {
        font-size: 23px;
    }

    .products .product-overlay span {
        font-size: 12px;
    }

}


/* ==========================================
   TABLET
   768px and below
========================================== */

@media (max-width: 768px) {

    .products {
        padding: 60px 18px;
    }

    .products h2 {
        font-size: 29px;
        margin-bottom: 30px;
    }

    .products .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .products .product-box {
        height: 270px;
        border-radius: 14px;
    }

    .products .product-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .products .product-overlay h4 {
        font-size: 21px;
    }

    .products .product-overlay span {
        font-size: 11px;
        letter-spacing: 0.8px;
    }

}


/* ==========================================
   MOBILE
   576px and below
========================================== */

@media (max-width: 576px) {

    .products {
        width: 100%;

        padding: 50px 12px;

        background: #fff;
    }

    .products h2 {
        font-size: 27px;

        margin-bottom: 25px;

        line-height: 1.3;
    }

    .products .product-grid {

        width: 100%;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .products .product-box {

        width: 100%;

        height: 250px;

        border-radius: 14px;
    }

    .products .product-box img {

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .products .product-overlay {

        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .products .product-overlay h4 {

        font-size: 22px;

        margin-bottom: 5px;

        line-height: 1.25;
    }

    .products .product-overlay span {

        font-size: 10px;

        letter-spacing: 0.7px;

        line-height: 1.4;
    }

}


/* ==========================================
   SMALL MOBILE
   480px and below
========================================== */

@media (max-width: 480px) {

    .products {
        padding: 45px 10px;
    }

    .products h2 {
        font-size: 25px;
        margin-bottom: 23px;
    }

    .products .product-grid {
        gap: 16px;
    }

    .products .product-box {

        height: 235px;

        border-radius: 13px;
    }

    .products .product-overlay {

        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .products .product-overlay h4 {

        font-size: 20px;

        margin-bottom: 4px;
    }

    .products .product-overlay span {

        font-size: 9px;

        letter-spacing: 0.6px;
    }

}


/* ==========================================
   VERY SMALL MOBILE
   390px and below
========================================== */

@media (max-width: 390px) {

    .products {
        padding: 40px 10px;
    }

    .products h2 {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .products .product-grid {
        gap: 14px;
    }

    .products .product-box {

        height: 220px;

        border-radius: 12px;
    }

    .products .product-overlay {

        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .products .product-overlay h4 {

        font-size: 18px;

        line-height: 1.2;
    }

    .products .product-overlay span {

        font-size: 8px;

        letter-spacing: 0.5px;
    }

}


/* ==========================================
   iPHONE SE / 360px
========================================== */

@media (max-width: 360px) {

    .products {
        padding: 35px 8px;
    }

    .products h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .products .product-grid {
        gap: 13px;
    }

    .products .product-box {

        height: 205px;

        border-radius: 11px;
    }

    .products .product-overlay {

        left: 13px;
        right: 13px;
        bottom: 13px;
    }

    .products .product-overlay h4 {

        font-size: 17px;
    }

    .products .product-overlay span {

        font-size: 8px;
    }

}


/* ==========================================
   EXTRA SMALL
   320px and below
========================================== */

@media (max-width: 320px) {

    .products {
        padding: 30px 7px;
    }

    .products h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .products .product-box {

        height: 190px;

        border-radius: 10px;
    }

    .products .product-overlay {

        left: 11px;
        right: 11px;
        bottom: 11px;
    }

    .products .product-overlay h4 {

        font-size: 16px;
    }

    .products .product-overlay span {

        font-size: 7px;

        letter-spacing: 0.4px;
    }

}

/* .products {
    width: 100%;
    padding: 70px 25px;
    background: #fff;
    text-align: center;
}

.products .product-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.products .product-box {
    position: relative;
    width: 100%;
    height: 330px;

    padding: 0 !important;
    margin: 0;

    overflow: hidden;
    border-radius: 14px;
    background: #eee;

    cursor: pointer;
}

.products .product-box img {
    width: 100%;
    height: 100%;

    padding: 0;
    margin: 0;

    display: block;
    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.products .product-box:hover img {
    transform: scale(1.06);
}

.products .product-box::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.05) 65%
    );

    pointer-events: none;
}

.products .product-overlay {
    position: absolute;
    z-index: 5;

    left: 25px;
    right: 25px;
    bottom: 25px;

    text-align: left;
    color: #fff;
}

.products .product-overlay h4 {
    margin: 0 0 6px;

    font-size: 25px;
    line-height: 1.2;

    font-family: "Playfair Display", serif;
}

.products .product-overlay span {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
} */


/* =====================================
   TABLET
===================================== */

/* @media (max-width: 992px) {

    .products .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products .product-box {
        height: 300px;
    }
} */


/* =====================================
   MOBILE
===================================== */

/* @media (max-width: 576px) {

    .products {
        padding-left: 10px;
        padding-right: 10px;
    }

    .products h2 {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .products .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .products .product-box {
        width: 100%;
        height: 250px;

        padding: 0 !important;
        border-radius: 14px;
    }

    .products .product-box img {
        width: 100%;
        height: 100%;

        padding: 0;
        object-fit: cover;
        object-position: center center;
    }

    .products .product-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .products .product-overlay h4 {
        font-size: 22px;
    }

    .products .product-overlay span {
        font-size: 10px;
    }
} */


/* =====================================
   SMALL MOBILE
===================================== */

/* @media (max-width: 390px) {

    .products {
        padding-left: 12px;
        padding-right: 12px;
    }

    .products .product-grid {
        gap: 15px;
    }

    .products .product-box {
        height: 225px;
        border-radius: 13px;
    }

    .products .product-overlay {
        left: 15px;
        bottom: 15px;
    }

    .products .product-overlay h4 {
        font-size: 20px;
    }

    .products .product-overlay span {
        font-size: 9px;
    }
} */

/* Tablet */
/* @media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

/* Mobile */
/* Mobile Product Cards */
/* @media (max-width: 600px) {

    .products {
        padding: 45px 15px;
    }

    .products h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-box {
        width: 100%;
        height: 260px;
        border-radius: 14px;
    }

    .product-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .product-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .product-overlay h4 {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .product-overlay span {
        font-size: 11px;
    }
} */




/* .products{
    padding:90px 25px;
    background:#f7f9fc;
}

.product-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.product-box{
    background:#fff;
    border-radius:22px;
    padding:40px 25px;
    text-align:center;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
}

.product-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(10,79,180,.18);
}

.product-box i{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:22px;
    border-radius:50%;
    background:linear-gradient(135deg,#0A4FB4,#5FA8FF);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
}

.product-box h4{
    color:#222;
    font-size:20px;
    font-weight:600;
} */

/*====================================
 Why Choose Us
====================================*/

.why-us{
    padding:90px 25px;
}

.why-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-box{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:22px;
    padding:45px 30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.why-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0A4FB4,#5FA8FF);
}

.why-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(10,79,180,.18);
}

.why-box h3{
    color:#0A4FB4;
    font-size:22px;
    margin-bottom:15px;
}

.why-box p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/*====================================
 Card Hover Animation
====================================*/

.contact-card,
.product-box,
.why-box{
    transition:.35s;
}

.contact-card:hover{
    box-shadow:0 25px 60px rgba(10,79,180,.12);
}







/*====================================
 Company Stats
====================================*/

.stats{
    padding:90px 20px;
    background:linear-gradient(135deg,#0A4FB4,#5FA8FF);
}

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.stat-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:45px 25px;
    text-align:center;
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.18);
}

.stat-box h2{
    font-size:48px;
    color:#fff;
    margin-bottom:10px;
}

.stat-box span{
    color:#fff;
    font-size:18px;
}

/*====================================
 Process Section
====================================*/

.process{
    padding:90px 25px;
    background:#fff;
}

.process-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.process-box{
    background:#f8f9fb;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    transition:.35s;
    position:relative;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.process-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0A4FB4,#5FA8FF);
}

.process-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(10,79,180,.15);
}

.process-box h3{
    color:#0A4FB4;
    font-size:22px;
}

/*====================================
 Social Section
====================================*/

.social {
    text-align: center;
    padding: 40px 20px;
}

.social h2 {
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;
    border-radius: 8px;

    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    transition: all 0.3s ease;
}

.social-links a i {
    font-size: 18px;
}

/* Instagram */
.social-links a:nth-child(1) {
    background: #E1306C;
}

/* WhatsApp */
.social-links a:nth-child(2) {
    background: #25D366;
}

/* Facebook */
.social-links a:nth-child(3) {
    background: #1877F2;
}

/* LinkedIn */
.social-links a:nth-child(4) {
    background: #0A66C2;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/*====================================
 Website Button
====================================*/

.website{
    padding:40px 20px 90px;
    text-align:center;
}

.website-btn{
    display:inline-block;
    padding:18px 45px;
    background:linear-gradient(135deg,#0A4FB4,#5FA8FF);
    color:#fff;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.35s;
    box-shadow:0 15px 35px rgba(10,79,180,.25);
}

.website-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(10,79,180,.35);
}




/*====================================
 Google Map
====================================*/

.map{
    padding:90px 20px;
    background:#fff;
}

.map h2{
    text-align:center;
    color:#0A4FB4;
    margin-bottom:35px;
}

.map iframe{
    width:100%;
    max-width:1200px;
    height:420px;
    display:block;
    margin:auto;
    border:none;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/*====================================
 Footer
====================================*/

footer{
    background:#0A4FB4;
    color:#fff;
    text-align:center;
    padding:70px 20px 40px;
}

footer img{
    width:90px;
    height:90px;
    background:#fff;
    border-radius:50%;
    padding:8px;
    margin:auto;
    margin-bottom:20px;
}

footer h3{
    font-size:30px;
    margin-bottom:10px;
}

footer p{
    opacity:.9;
    margin:8px 0;
    line-height:1.8;
    font-size:16px;
}

/*====================================
 Scroll Animation
====================================*/

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/*====================================
 Utility Classes
====================================*/

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.text-center{
    text-align:center;
}

.mt-50{
    margin-top:50px;
}

.mb-50{
    margin-bottom:50px;
}

/*====================================
 Scrollbar
====================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f2f2f2;
}

::-webkit-scrollbar-thumb{
    background:#0A4FB4;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#083d8c;
}

/*====================================
 Responsive
====================================*/

@media(max-width:991px){

.hero{
    height:380px;
}

.company-logo{
    width:130px;
    height:130px;
}

.hero h1{
    font-size:34px;
}

.hero span{
    font-size:18px;
}

.quick-contact{
    gap:18px;
}

.contact-icon{
    width:75px;
    height:75px;
    font-size:28px;
}

.contact-card{
    padding:30px;
}

.stats{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero{
    height:340px;
}

.hero h1{
    font-size:28px;
}

.hero span{
    font-size:16px;
}

.company-logo{
    width:110px;
    height:110px;
}

.quick-contact{
    gap:15px;
    margin-top:-35px;
}

.contact-icon{
    width:65px;
    height:65px;
    font-size:24px;
}

.contact-item{
    flex-direction:column;
    text-align:center;
    align-items:center;
}

.contact-item h4{
    font-size:16px;
}

.intro p{
    font-size:17px;
}

/* changes apply products */

/* .products{
    padding:0px;
} */
.why-us,
.process,
.social,
.map{
    padding:70px 18px;
}

/* .product-grid, */
.why-grid,
.process-grid{
    grid-template-columns:1fr;
}

.stats{
    grid-template-columns:1fr;
}

.social a{
    width:100%;
}

.website-btn{
    width:100%;
    max-width:350px;
}

footer h3{
    font-size:24px;
}

}

@media(max-width:480px){

.hero{
    height:300px;
}

.hero h1{
    font-size:24px;
}

.hero span{
    font-size:15px;
}

.company-logo{
    width:95px;
    height:95px;
}

.splash-logo{
    width:120px;
    height:120px;
}

.splash h1{
    font-size:28px;
}

.splash p{
    font-size:15px;
}

.contact-icon{
    width:58px;
    height:58px;
    font-size:20px;
}

section h2{
    font-size:28px;
}

/* .product-box, */
.why-box,
.process-box{
    padding:30px 20px;
}

.stat-box h2{
    font-size:38px;
}

.stat-box span{
    font-size:16px;
}

.map iframe{
    height:300px;
}

footer{
    padding:50px 20px 30px;
}

footer img{
    width:70px;
    height:70px;
}

}































/* ==========================================
   Large Laptop (1200px)
========================================== */

@media (max-width:1200px){

.container,
.contact-card,
.about,
.intro{
    width:92%;
}

.hero h1{
    font-size:38px;
}

}


/* ==========================================
   Laptop (992px)
========================================== */

@media (max-width:992px){

.hero{
    height:360px;
}

.company-logo{
    width:130px;
    height:130px;
}

.hero h1{
    font-size:34px;
}

.hero span{
    font-size:18px;
}

.quick-contact{
    gap:18px;
    margin-top:-40px;
}

.contact-icon{
    width:75px;
    height:75px;
    font-size:28px;
}

.contact-card{
    padding:30px;
}

.contact-item{
    gap:15px;
}

.contact-item i{
    width:55px;
    height:55px;
    font-size:22px;
}

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

.stats{
    grid-template-columns:repeat(2,1fr);
}

.map iframe{
    height:350px;
}

}


/* ==========================================
   Tablet (768px)
========================================== */

@media (max-width:768px){

.hero{
    height:320px;
}

.company-logo{
    width:110px;
    height:110px;
}

.hero h1{
    font-size:28px;
}

.hero span{
    font-size:16px;
}

.quick-contact{
    margin-top:-35px;
    gap:15px;
}

.contact-icon{
    width:65px;
    height:65px;
    font-size:24px;
}

.intro{
    padding:0 20px;
}

.intro p{
    font-size:17px;
}

.contact-card{
    padding:25px;
}

.contact-item{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.contact-item i{
    margin-bottom:10px;
}

.about{
    padding:0 20px;
}

.about p{
    font-size:16px;
}

.product-grid,
.why-grid,
.process-grid{
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.product-box,
.why-box,
.process-box{
    padding:30px 20px;
}

.stat-box{
    padding:35px 20px;
}

.stat-box h2{
    font-size:38px;
}

.social a{
    width:100%;
}

.website-btn{
    width:100%;
    max-width:350px;
}

.map iframe{
    height:300px;
}

footer{
    padding:60px 20px 30px;
}

footer h3{
    font-size:24px;
}

}













/* ==========================================
   Mobile Large (576px)
========================================== */

@media (max-width:576px){

.hero{
    height:290px;
    padding:20px;
}

.company-logo{
    width:95px;
    height:95px;
    padding:8px;
}

.hero h1{
    font-size:24px;
    line-height:1.3;
    margin-top:15px;
}

.hero span{
    font-size:15px;
}

.quick-contact{
    gap:12px;
    margin-top:-28px;
}

.contact-icon{
    width:58px;
    height:58px;
    font-size:20px;
}

section{
    padding-left:15px;
    padding-right:15px;
}

section h2{
    font-size:26px;
    margin-bottom:25px;
}

.intro{
    margin:40px auto;
}

.intro p{
    font-size:15px;
    line-height:1.7;
}

.contact-card{
    padding:20px;
    border-radius:18px;
}

.contact-item{
    padding:18px 0;
}

.contact-item i{
    width:50px;
    height:50px;
    font-size:18px;
}

.contact-item h4{
    font-size:15px;
}

.product-grid,
.why-grid,
.process-grid,
.stats{
    grid-template-columns:1fr;
    gap:18px;
}

.product-box,
.why-box,
.process-box,
.stat-box{
    border-radius:18px;
}

.social a{
    font-size:16px;
    padding:15px;
}

.website-btn{
    width:100%;
    font-size:16px;
}

.map iframe{
    height:250px;
}

footer img{
    width:70px;
    height:70px;
}

footer h3{
    font-size:22px;
}

footer p{
    font-size:14px;
}

}

/* ==========================================
   Mobile (480px)
========================================== */

@media (max-width:480px){

.splash-logo{
    width:110px;
    height:110px;
}

.splash h1{
    font-size:24px;
}

.splash p{
    font-size:14px;
}

.hero{
    height:260px;
}

.company-logo{
    width:85px;
    height:85px;
}

.hero h1{
    font-size:22px;
}

.hero span{
    font-size:14px;
}

.quick-contact{
    gap:10px;
}

.contact-icon{
    width:52px;
    height:52px;
    font-size:18px;
}

.product-box i{
    width:65px;
    height:65px;
    font-size:26px;
}

.stat-box h2{
    font-size:34px;
}

}

/* ==========================================
   Small Mobile (390px)
========================================== */

@media (max-width:390px){

.hero h1{
    font-size:20px;
}

.hero span{
    font-size:13px;
}

.intro p{
    font-size:14px;
}

.contact-item h4{
    font-size:14px;
}

.product-box h4,
.why-box h3,
.process-box h3{
    font-size:18px;
}

section h2{
    font-size:24px;
}

.website-btn{
    padding:15px 20px;
}

}

/* ==========================================
   iPhone SE / 360px
========================================== */

@media (max-width:360px){

.hero{
    height:240px;
}

.company-logo{
    width:75px;
    height:75px;
}

.hero h1{
    font-size:18px;
}

.hero span{
    font-size:12px;
}

.quick-contact{
    gap:8px;
}

.contact-icon{
    width:46px;
    height:46px;
    font-size:16px;
}

.contact-card{
    padding:15px;
}

.product-box,
.why-box,
.process-box,
.stat-box{
    padding:20px 15px;
}

}

/* ==========================================
   Extra Small Devices (320px)
========================================== */

@media (max-width:320px){

.hero h1{
    font-size:16px;
}

.hero span{
    font-size:11px;
}

.company-logo{
    width:70px;
    height:70px;
}

.contact-icon{
    width:42px;
    height:42px;
    font-size:15px;
}

section h2{
    font-size:22px;
}

.intro p,
.about p,
.contact-item h4,
footer p{
    font-size:13px;
}

.website-btn{
    font-size:14px;
    padding:14px;
}

}