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

        body{
            font-family:'Poppins',sans-serif;
            padding-top:95px;
        }

        /* =========================
           Navbar
        ========================== */

        .custom-navbar{
            background:#ffffff;
            box-shadow:0 5px 25px rgba(0,0,0,.08);
            padding:12px 0;
            transition:.3s;
        }

        .navbar-brand img{
           
            width:auto;
        }

        .navbar-nav .nav-link{
            color:#0D5C6B;
            font-size:16px;
            font-weight:600;
            margin:0 12px;
            position:relative;
            transition:.3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active{
            color:#1A9CB2;
        }

        .navbar-nav .nav-link::after{
            content:'';
            position:absolute;
            left:0;
            bottom:-5px;
            width:0;
            height:3px;
            background:#1A9CB2;
            transition:.3s;
        }

        .navbar-nav .nav-link:hover::after{
            width:100%;
        }

        .dropdown-menu{
            border:none;
            border-radius:12px;
            box-shadow:0 10px 30px rgba(0,0,0,.1);
            padding:10px;
        }

        .dropdown-item{
            padding:10px 15px;
            border-radius:8px;
        }

        .dropdown-item:hover{
            background:#f2fbfc;
            color:#1A9CB2;
        }

        .quote-btn{
            background:linear-gradient(135deg,#0D5C6B,#1A9CB2);
            color:#fff;
            text-decoration:none;
            padding:12px 26px;
            border-radius:50px;
            font-weight:600;
            transition:.3s;
        }

        .quote-btn:hover{
            color:#fff;
            transform:translateY(-2px);
            box-shadow:0 8px 20px rgba(26,156,178,.3);
        }

        /* Demo Section */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    position:relative;

    background:
    linear-gradient(
        rgba(6,47,56,0.75),
        rgba(6,47,56,0.75)
    ),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.hero p{
    font-size:22px;
    letter-spacing:1px;
}

        @media(max-width:991px){

            .navbar-brand img{
                height:55px;
            }

            .navbar-nav{
                margin-top:15px;
            }

            .quote-btn{
                display:inline-block;
                margin-top:15px;
            }
        }
.navbar-toggler:focus,
.navbar-toggler:active{
    box-shadow: none !important;
}

/* About Section */
.about-section{
    background:#fff;
    padding:100px 0;
}

.section-tag{
    color:#1A9CB2;
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
}

.about-content h2{
    font-size:42px;
    font-weight:700;
    color:#0D5C6B;
    margin:15px 0 20px;
}

.about-content p{
    color:#666;
    line-height:1.9;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:12px;
}

.feature-box i{
    color:#1A9CB2;
    font-size:24px;
}

.feature-box h6{
    margin:0;
    font-weight:600;
}

.about-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 32px;
    background:#0D5C6B;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.about-btn:hover{
    background:#1A9CB2;
    color:#fff;
}

/* Products Section */

.products-section{
    background:#f8fbfc;
    padding:100px 0;
}

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

.products-section p{
    color:#666;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.product-content{
    padding:25px;
    text-align:center;
}

.product-content h4{
    color:#0D5C6B;
    margin-bottom:10px;
    font-weight:600;
}

.product-content a{
    color:#1A9CB2;
    text-decoration:none;
    font-weight:600;
}

/* Why Choose Us Section */
.why-choose{
    background:#fff;
    padding:100px 0;
}

.why-choose h2{
    color:#0D5C6B;
    font-size:42px;
    font-weight:700;
}

.choose-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.choose-card:hover{
    transform:translateY(-10px);
}

.choose-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#e9f8fb;
    color:#1A9CB2;
    font-size:32px;
    margin-bottom:20px;
}

.choose-card h4{
    color:#0D5C6B;
    margin-bottom:15px;
    font-weight:600;
}

.choose-card p{
    color:#666;
    margin-bottom:0;
}

/* Export Process Section */
.export-process{
    padding:100px 0;
    background:#f8fbfc;
}

.section-heading span{
    color:#1A9CB2;
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#0D5C6B;
    margin-top:10px;
}

.section-heading p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.process-box{
    background:#fff;
    padding:35px 20px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    transition:.4s;
}

.process-box:hover{
    transform:translateY(-10px);
}

.process-number{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    width:40px;
    height:40px;
    border-radius:50%;
    background:#1A9CB2;
    color:#fff;
    font-weight:700;
    line-height:40px;
}

.process-box i{
    font-size:40px;
    color:#1A9CB2;
    margin:15px 0;
}

.process-box h5{
    color:#0D5C6B;
    margin:0;
    font-weight:600;
}

/* Countries Section    */

.countries-section{
    padding:100px 0;
    background:
    linear-gradient(
    rgba(6,47,56,.92),
    rgba(6,47,56,.92)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1920&q=80');

    background-size:cover;
    background-position:center;
}

.countries-section .section-heading h2,
.countries-section .section-heading p{
    color:#fff;
}

.country-card{
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    text-align:center;
    padding:30px 15px;
    color:#fff;
    font-size:40px;
    transition:.4s;
}

.country-card:hover{
    transform:translateY(-10px);
    background:#1A9CB2;
}

.country-card h6{
    margin-top:15px;
    font-size:15px;
}

/* Testimonials Section */
.testimonials-section{
    padding:100px 0;
    background:#f8fbfc;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card::before{
    content:"❝";
    position:absolute;
    top:15px;
    right:25px;
    font-size:60px;
    color:#eaf6f8;
    font-weight:bold;
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.client-info h5{
    margin-bottom:5px;
    color:#0D5C6B;
    font-weight:600;
}

.client-info span{
    color:#1A9CB2;
    font-size:14px;
}

/* Footer Section */

.footer-section{
    background:#062F38;
    color:#fff;
    padding:90px 0 20px;
    position:relative;
}

.footer-logo{
    max-width:180px;
    margin-bottom:20px;
}

.footer-widget p{
    color:#cfd9dc;
    line-height:1.9;
}

.footer-widget h4{
    margin-bottom:25px;
    font-size:22px;
    font-weight:600;
    position:relative;
}

.footer-widget h4:after{
    content:'';
    width:50px;
    height:3px;
    background:#1A9CB2;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-widget ul{
    list-style:none;
    padding:0;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget ul li a{
    color:#cfd9dc;
    text-decoration:none;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#1A9CB2;
    padding-left:8px;
}

.social-icons{
    margin-top:25px;
}

.social-icons a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#0b4a57;
    color:#fff;
    margin-right:8px;
    transition:.3s;
}

.social-icons a:hover{
    background:#1A9CB2;
    transform:translateY(-4px);
}

.contact-item{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.contact-item i{
    color:#1A9CB2;
    margin-top:4px;
}

.contact-item span{
    color:#cfd9dc;
    line-height:1.7;
}

.footer-bottom{
    text-align:center;
    padding-top:15px;
}

.footer-bottom p{
    margin:0;
    color:#cfd9dc;
}

.footer-section hr{
    border-color:rgba(255,255,255,.1);
    margin:40px 0 20px;
}

/* Scroll Top */

#scrollTopBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#1A9CB2;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    display:none;
    z-index:999;
    transition:.3s;
}

#scrollTopBtn:hover{
    transform:translateY(-5px);
}