/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: black;
    padding: 5px 40px;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 100px;
    width: 200px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}


.nav-links li a:hover {
    color: rgb(201, 9, 9);
}

/* Contact Button */
.contact-btn {
    background-color: #e2c058;
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
}

.contact-btn:hover{
    color: #000;
}
/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background-color: rgb(112, 108, 108);
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1002;
}

.mobile-menu.open {
    right: 0;
}


.mobile-menu ul {
    list-style: none;
    width: 100%;
}

.mobile-menu ul li {
    margin: 15px 0;
    border-bottom: 1px solid rgb(47, 200, 227);
    padding-bottom: 10px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    display: block;
    padding: 10px;
}

.mobile-menu ul li a:hover {
    color: rgb(222, 0, 0);

}

.dropdown-menu li{
    padding: 10px;
    text-decoration: none;
    list-style-type: none;
}
.dropdown-menu {
  background-color: white;
  position: absolute;
  top: 100%;           /* Position right below the parent */
  left: 0;             /* Align left with the parent */
  z-index: 1000;       /* Ensure it's on top of other elements */
  display: none;       /* Optional: hide by default */
  padding: 10px;       /* Optional: spacing inside */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Optional: subtle shadow */
  width: 200px;
}



/* Menu Icons */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: black;
    margin-left: 20px;
}

.close-menu {
    font-size: 45px;
    color: black;
    position: absolute;
    top: 30px;
    right: 16px;
    cursor: pointer;
}

/* Responsive Styles */
@media screen and (max-width: 1060px) {
    header {
        padding: 5px 15px;
    }
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .contact-btn {
        text-align: center;
    }
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    height: 1200px !important ;
   background: url("CrackersImages/back.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/* Dark Overlay for Better Text Visibility */
.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); Adds a dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Content Box */
.banner-content {
    max-width: 600px;
    text-align: center;
}

/* Logo */
.banner-logo {
    width: 300px;
    margin-bottom: 20px;
}

/* Heading */
.banner-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: whitesmoke;
}

/* Text */
.banner-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
    color: whitesmoke;
}

/* Button */
.banner-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ffcc00;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

.banner-btn:hover {
    background: #ffa500;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 890px) {
    .banner-heading {
        font-size: 1.8rem;
        padding-top: 50px;
    }
    .banner-logo{
        width: 200px;
       margin-bottom: 5px;
    }
    .banner{
        width: 100%;
        height: 350px;
        margin-top: 10%;
    }

    .banner-text {
        font-size: 1rem;
    }

    .banner-btn {
        font-size: 1rem;
        padding: 9px 18px;
    }
}

@media (max-width: 480px) {
    .banner-heading {
        padding-top: 50px;
        font-size: 1.3rem;
    }
    .banner{
        width: 100%;
        height: 250px;
        margin-top: 20%;
    }

    .banner-text {
        font-size: 0.8rem;
    }

    .banner-logo{
        width: 150px;
        margin-bottom: 5px;
    }
    .banner-btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}


/* Background Video */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5;
}

/* Categories Section */
.categories {
    position: relative;
    padding: 100px 20px;
}

/* Heading */
.main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.container {
    max-width: 1300px;
    margin: 0 auto; /* Centers it horizontally */
    text-align: center; /* Ensures text and content inside are centered */
}


/* Catchy Tagline */
.catchphrase {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffcc00;
    margin-bottom: 20px;
}

/* Image Slider */
.image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    padding: 10px 0;
    background-color: #ece2e0;
}

.slider {
    display: flex;
    gap: 20px; /* Adds space between images */
    animation: moveSlider 15s linear infinite;
}

.slider img {
    width: 220px;
    height: 160px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Stop animation on hover */
.slider:hover {
    animation-play-state: paused;
}

/* Keyframes for moving effect */
@keyframes moveSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves only half for continuous loop */
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .catchphrase {
        font-size: 1.2rem;
    }

    .slider {
        gap: 20px;
    }

    .slider img {
        width: 180px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.5rem;
    }

    .catchphrase {
        font-size: 1rem;
    }

    .slider {
        gap: 15px;
    }

    .slider img {
        width: 140px;
        height: 110px;
    }
}

/* About Section with GIF Background */
.about-section {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: url('CrackersImages/aboutimges.jpg') no-repeat center center/cover;
}

/* Content Styling */
.about-content {
    padding: 30px;
    border-radius: 10px;
    width: 60%;
    max-width: 1300px;
    animation: fadeIn 1s ease-in-out;
    color: white;
}

/* Heading */
.about-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: red;
}

/* Paragraph */
.about-content p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Effect */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        width: 90%;
        padding: 20px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

/* Headline Section */
.headline-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 20px;
    gap: 30px;
}

/* Image Containers */
.image-container {
    position: relative;
    width: 45%;
    max-width: 500px;
    height: 300px; /* Ensures equal height */
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Images */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Text Inside Images */
.text-box {
    position: absolute;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px;
    border-radius: 8px;
    width: 60%;
}

/* Positioning Text */
.text-right-center {
    right: 10px;
    top: 60%;
    transform: translateY(-50%);
    text-align: left;
}

.text-left-center {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

/* Scroll Animation Effect */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline-section {
        flex-direction: column;
        gap: 30px;
    }

    .image-container {
        width: 90%;
        height: auto;
    }

    .text-box {
        width: 80%;
        font-size: 1rem;
        padding: 10px;
    }
}

/* Section Styling */
.collection-section {
    padding: 50px 20px;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Collection Container */
.collection-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Collection Box */
.collection-box {
    width: 18%;
    background: rgba(31, 30, 30, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ffcc00;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.collection-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.collection-box h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    text-align: left;
}

.collection-box p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Slide-in Animation */
.slide-in {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .collection-box {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .collection-box {
        width: 90%;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('CrackersImages/v2.gif') no-repeat center center/cover;
}


/* Content */
.content {
    position: relative;
    z-index: 2;
    width: 80%;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

/* Features Container */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Individual Feature Box */
.feature-box {
    background: rgba(243, 156, 156);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ffcc00;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
}

/* Icons */
.feature-box i {
    font-size: 3.5rem;
    background-color: rgb(253, 243, 243);
    padding: 20px;
    border-style:groove;
    border-radius: 50%;
    margin-bottom: 10px;
    color: #ffcc00;
}

/* Animation Effects */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1040px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-us{
        height: 500px;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: repeat(1, 1fr);
    }

    .content h2 {
        font-size: 2rem;
    }
    .why-choose-us{
        height: 1000px;
    }
}

/* Call Us Section */
.call-us-container {
    width: 65%;
    height: 150px;
    margin: 0 auto;
    background: rgb(215, 8, 8);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    top: 70px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Left Section */
.call-left {
    text-align: left;
    padding-left: 50px;
}

.call-left h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.call-left p {
    font-size: 1.8rem;
}

/* Right Section - Icon and Text in Row */
.call-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between icon and text */
    padding-right: 50px;
    text-align: right;
}

/* Caller Icon */
.call-right .call-icon {
    font-size: 3rem;
    color: yellow;
}

/* Call Text */
.call h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    text-align: left;
}

.call p {
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1020px) {
    .call-left h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .call-left p {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .call-us-container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        top: 100px;
        height: 320px;
        width: 70%;
        
    }
    .call p{
        font-size: 1.8rem;
    }

    .call-left, .call-right {
        padding: 10px;
        text-align: center;
    }

    .call-right {
        flex-direction: column;
        align-items: center;
    }

    .call-right .call-icon {
        margin-bottom: 10px;
    }
}

/* Footer Styling */
#footer {
    width: 100%;
    height: 340px;
    padding: 100px 20px 40px;
    font-family: Arial, sans-serif;
    color: white;

    background-image: url("CrackersImages/footerimg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.logo-container {
    flex: 1;
    text-align: center;
}

.footer-logo {
    max-width: 180px;
    display: block;
    margin: 0 auto;
    padding-top: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.footer-section {
    flex: 1;
    min-width: 180px;
    text-align: left; 
    animation: fadeInUp 1s ease-in-out;
}

.footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    color: white;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background-color: rgb(4, 66, 109);
}

.footer-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.8px;
    width: 40%;
    height: 3px;
    background-color: rgb(255, 165, 0);
}



.footer-section p, 
.footer-section ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section i{
    color: rgb(255, 165, 0);
 
}
.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f39c12;
}
.copyright {
    text-align: left;
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.7;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 1036px){
    #footer{
        padding-top: 160px;
        width: 100%;
        height: 510px;
    }
}

@media (max-width: 837px){
    #footer{
        padding-top: 160px;
        width: 100%;
        height: 600px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: left; 
        align-items: flex-start;
    }

    .footer-section {
        text-align: left; 
        width: 100%;
    }

    .logo-container {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        display: block;
        margin: auto;
    }
    #footer{
        padding-top: 160px;
        width: 100%;
        height: 1048px;
    }
}

/* Copyright Section */
.copyright {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    padding: 10px 0;
    background-color: #adacac; 
    border-top: 2px solid #f39c12; 
}




@media (max-width: 575.98px) {
    header {
        padding: 6px 7vw;
        flex-direction: row;
    }
    .logo img {
        height: 55px;
        width: 120px;
    }
    .icon-container {
        gap: 10px;
        margin-left: 3vw;
    }
    .icon-wrapper i, .icon-link i {
        font-size: 18px;
    }
    .icon-count {
        width: 17px;
        height: 17px;
        font-size: 12px;
        top: -8px;
        right: -7px;
    }
    .menu-icon {
        font-size: 22px;
        margin-left: 6px;
    }
    .banner {
        height: 180px;
        margin-top: 70px;
    }
    .banner-logo {
        width: 70vw;
        max-width: 110px;
        margin-bottom: 4px;
    }
    .banner-heading {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    .banner-text {
        font-size: 0.81rem;
    }
    .banner-btn {
        font-size: 0.7rem;
        padding: 4px 15px;
        border-radius: 6px;
    }
    .main-heading, .section-title {
        font-size: 1.1rem;
    }
    .categories {
        padding: 22px 3vw 10px;
    }
    .catchphrase {
        font-size: 1rem;
        margin-bottom: 11px;
    }
    .slider img {
        width: 90px;
        height: 70px;
    }
    .image-slider {
        padding: 8px 0;
    }
    .about-section {
        height: 170px;
    }
    .about-content {
        width: 95vw;
        padding: 8px;
    }
    .about-content h2 {
        font-size: 1.08rem;
        margin-bottom: 6px;
    }
    .about-content p {
        font-size: 0.7rem;
    }
    .headline-section {
        flex-direction: column;
        gap: 13px;
        padding: 21px 4vw;
    }
    .image-container {
        width: 85vw;
        height: 110px;
        max-width: 99vw;
    }
    .text-box { font-size: 0.65rem; padding: 4px;}
    .collection-section {
        padding: 14px 0;
    }
    .collection-container {
        flex-direction: column;
        gap: 8px;
    }
    .collection-box {
        width: 92vw;
        padding: 9px;
    }
    .collection-box img {
        width: 60px;
        height: 60px;
    }
    .why-choose-us {
        height: 900px;
    }
    .content {
        width: 96vw;
    }
    .content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 8px;
    }
    .features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .feature-box {
        padding: 9px;
    }
            .call-us-container {
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px !important;
        top: 100px !important;
        height: 320px !important;
        width: 70% !important;
    }
    .logo-container{
        margin-top:120px !important;
    }
    .footer-section h2,
    .footer-section p,
    .footer-section ul,
    .footer-section ul li,
    .footer-section ul li a {
        text-align: left !important;
        margin-left: 0 !important;
    }
    .foot{
       text-align: left !important;
        margin-left: 0 !important; 
    }
    .call-left, .call-right {
        padding: 5px;
        text-align: center;
    }
    .call-left h3 {font-size: 0.95rem;}
    .call-left p, .call p {font-size: 1.2rem;}
    #footer {
        padding: 30px 0 15px;
        height: auto;
    }
    .footer-container, .footer-grid, .footer-section {
        padding: 0 2vw !important;
        font-size: 11px;
        
    }
    .copyright {
    /* Center horizontally and visually */
    display: inline-block;
    margin: 20px auto 0 auto;  /* top margin, auto horizontal center */
    padding: 10px 34px;        /* generous padding left/right */
    background: #cfd0d2;       /* subtle background color */
    color: #254367;            /* strong readable text */
    font-size: 13px;           /* good size for visibility */
    border-top: 3px solid #de9b36; /* accent border */
    border-radius: 4px 4px 0 0; /* rounded top corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.10); /* soft shadow for float effect */
    text-align: center;
    width: auto;               /* so it does NOT stretch full width */
    min-width: 100px;          /* restrictive minimum width */
    max-width: 90vw;    
    white-space: nowrap; 
    margin-left:15px !important;       /* avoid exceeding viewport */
}
    .footer-logo { max-width: 150px; padding-top: 15px;}
}


@media (min-width: 576px) and (max-width: 767.98px) {
    .footer-section h2,
    .footer-section p,
    .footer-section ul,
    .footer-section ul li,
    .footer-section ul li a {
        text-align: left !important;
        margin-left: 0 !important;
    }
    .foot{
       text-align: left !important;
        margin-left: 0 !important; 
    }
    header {
        padding: 8px 30px;
        flex-direction: row;
    }
    .logo img {
        height: 70px;
        width: 180px;
    }
    .icon-container {
        gap: 18px;
        margin-left: 12px;
    }
    .icon-wrapper i, .icon-link i {
        font-size: 22px;
    }
    .icon-count {
        width: 20px;
        height: 20px;
        font-size: 14px;
        top: -8px;
        right: -8px;
    }
    .menu-icon {
        font-size: 26px;
    }
    .banner {
        height: 350px;
        margin-top: 80px;
    }
    .banner-logo {
        width: 170px;
        margin-bottom: 5px;
    }
    .banner-heading {
        font-size: 1.6rem;
        margin-bottom: 7px;
    }
    .banner-text {
        font-size: 1rem;
    }
    .banner-btn {
        font-size: 0.9rem;
        padding: 7px 18px;
    }
    .main-heading, .section-title {
        font-size: 1.35rem;
    }
    .categories {
        padding: 38px 3vw 14px;
    }
    .catchphrase {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    .slider img {
        width: 120px;
        height: 95px;
    }
    .about-section {
        height: 250px;
    }
    .about-content {
        width: 85vw;
        padding: 18px;
    }
    .about-content h2 {
        font-size: 1.45rem;
        margin-bottom: 11px;
    }
    .about-content p {
        font-size: 0.93rem;
    }
    .headline-section {
        flex-direction: column;
        gap: 23px;
        padding: 39px 5vw;
    }
    .image-container {
        width: 75vw;
        height: 160px;
        max-width: 99vw;
    }
    .text-box { font-size: 0.97rem; padding: 7px;}
    .collection-section {
        padding: 26px 2vw;
    }
    .collection-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .collection-box {
        width: 46vw;
        padding: 20px;
    }
    .collection-box img {
        width: 75px;
        height: 75px;
    }
    .why-choose-us {
        height: 900px;
    }
    .content {
        width: 92vw;
    }
    .content h2 {
        font-size: 1.6rem;
        margin-bottom: 13px;
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .feature-box {
        padding: 14px;
    }
    .call-us-container {
        flex-direction: column;
        margin-top:10px;
        top: 0;
        height: auto;
        width: 88vw;
        padding: 18px 4vw;
        font-size: 1.05rem;
    }
    .call-left, .call-right {
        padding: 7px;
        text-align: center;
    }
    .call-left h3 {font-size: 1.2rem;}
    .call-left p, .call p {font-size: 1.4rem;}
    #footer {
        padding: 55px 0 30px;
        height: auto;
    }
    .footer-container, .footer-grid, .footer-section {
        padding: 0 20px;
        font-size: 13px;
      
    }
    .copyright {
    /* Center horizontally and visually */
    display: inline-block;
    margin: 20px auto 0 auto;  /* top margin, auto horizontal center */
    padding: 10px 34px;        /* generous padding left/right */
    background: #cfd0d2;       /* subtle background color */
    color: #254367;            /* strong readable text */
    font-size: 13px;           /* good size for visibility */
    border-top: 3px solid #de9b36; /* accent border */
    border-radius: 4px 4px 0 0; /* rounded top corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.10); /* soft shadow for float effect */
    text-align: center;
    width: auto;               /* so it does NOT stretch full width */
    min-width: 100px;          /* restrictive minimum width */
    max-width: 90vw;    
    white-space: nowrap; 
    margin-left:15px !important;       /* avoid exceeding viewport */
}
    .footer-logo { max-width: 150px; padding-top: 18px;}
}
    @media (max-width: 1199px) {
   .footer-container, .footer-grid, .footer-section {
        padding: 0 2vw !important;
        font-size: 11px;
        
    }

}