
       @font-face {
        font-family: 'Coco Sharp Extralight';
        src: url('./fonts/Coco-Sharp-Extralight-trial.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Coco Sharp Extralight', Arial, sans-serif;
    }

    p {
        font-family: 'Coco Sharp Extralight', Arial, sans-serif;
    }
    .number {
    font-family: Arial, sans-serif; 
}
        body {
            font-family: 'Coco Sharp Extralight', Arial, sans-serif;
            margin: 0;
            padding: 0;
            cursor: none;
            width: 100%;
            overflow-x: hidden;
            cursor: none;
        }
  .custom-cursor {
    position: fixed;
    width: 30px; /* Adjust size */
    height: 30px; /* Adjust size */
    background-color: red; /* Placeholder, change to your custom cursor design */
    border-radius: 50%; /* Optional, makes it circular */
    pointer-events: none; /* Ensures the cursor doesn't block other elements */
    z-index: 9999;
    transition: transform 0.05s ease; /* Optional smooth transition */
  }


        html {
    width: 100%;
    overflow-x: hidden;
}
        .header, .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 10px;
            background-color: black;
            color: white;
            border-bottom: 2px solid #000;
        }

        .navbar {
            top: 60px;
            background-color: transparent;
            padding: 10px 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            height: 90px;
            width: 230px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-info div {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-info div img {
            width: 20px;
            height: 20px;
        }

        .contact-info div span {
            font-size: 14px;
        }

        /* Navbar styling */
        .navbar .logo {
            flex: 1;
        }

        .navbar .nav-items {
            flex: 3;
            display: flex;
            justify-content: flex-end;
        }

        .navbar ul {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar li a {
            top: 10px;
            position: relative;
            font-size: 16px;
            padding: 10px;
            transition: transform 0.3s ease-in-out;
            text-decoration: none;
            color: white;
            margin-right: 30px;
        }

        .navbar li:hover {
            margin-left: 10px;
            transform: scale(1.2);
        }

        .hamburger {
            color: white;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px 0;
        }

        .navbar.active ul {
            display: block;
            position: fixed;
            top: 140px;
            left: 0;
            width: 100%;
            background-color: white;
            padding: 20px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .navbar.active ul li a {
            text-align: center;
            padding: 10px 0;
            text-decoration: none;
            color: #000;
        }

        /* Responsive styles */
        @media screen and (max-width: 600px) {
            .header, .navbar {
                position: static;
            }

            .header .contact-info {
                display: none;
            }

            .navbar ul {
                display: none;
                flex-direction: column;
            }

            .hamburger {
                display: block;
            }

            .navbar.active ul {
                display: block;
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: white;
                padding: 20px 0;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                text-align: left;
            }

            .navbar.active ul li {
                margin-left: 20px;
                padding: 10px 20px;
            }

           
        }

        @media screen and (min-width: 601px) {
            .hamburger {
                display: none;
            }

            .navbar ul {
                display: flex;
            }
        }

       /* Footer Styles */
      /* Footer Styles */
      footer {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: flex;
    justify-content: space-evenly;
    padding: 60 60px;
}

.footer-col {
    flex: 1;
    margin: 0 20px; 
    padding: 22px;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}


.footer-bottom {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #c39e46;
    padding-top: 10px;
    font-size: 14px;
    padding: 0 20px; 
}

@media screen and (max-width: 600px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        
        margin-bottom: 20px;
        margin: 0 10px; 
    }
}

        @media screen and (max-width: 600px) {
            .footer-content {
                flex-direction: column;
            }

            .footer-col {
                margin-bottom: 20px;
            }
        }
.footer-col h4 {
    position: relative;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color:  #c39e46;; 
    transition: width 0.5s ease-in-out;
}

.footer-col h4:hover::after {
    width: 50%; 
}

.header, .footer-content, .navbar ul li a {
    cursor: default; 
}

.navbar li a {
    cursor: pointer; 
}

.footer-col ul li a {
    cursor: pointer; 
}

 /* Tabs styling */
 .tab-container {
            margin: 20px;
        }
        .tab-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            background-color: #333;
            
        }
        .tab-buttons button {
            background-color: #333;
            color: white;
            padding: 10px 20px;
            cursor: pointer;
            border: none;
            outline: none;
            flex: 1;
            text-align: center;
        }
        .tab-buttons button.active {
            background-color: #555;
        }
        .tab-content {
            display: none;
            padding: 20px;
            background-color: #fff;
        }
        .tab-content.active {
            display: block;
        }

        /* Grid for images */
        .image-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 20px;
        }
        .image-grid img {
            width: calc(33.33% - 20px);
            border-radius: 8px;
            height: auto;
        }

        @media screen and (max-width: 768px) {
            .image-grid img {
                width: calc(50% - 20px);
            }
        }

        @media screen and (max-width: 480px) {
            .image-grid img {
                width: 100%;
            }
        }
        
/* Container that holds the iframes */
.image {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

        /* Each iframe box */
/* Each iframe box */
.iframe-box {
    margin: 10px;
    flex: 1 1 30%; /* Default to 3 columns for larger screens */
    max-width: 100%; /* Make sure it doesn't overflow */
}

/* Make the iframe take up the full space of its container */
.iframe-box iframe {
    width: 100%;
    height: 200px; /* Set a fixed height for iframes */
    border: none;
}

/* Responsive layout for mobile screens */
@media (max-width: 768px) {
    .iframe-box {
        flex: 1 1 45%; /* Two columns on medium screens (tablets) */
    }
}

@media (max-width: 480px) {
    .iframe-box {
        flex: 1 1 100%; /* Single column on smaller screens (mobile phones) */
    }

    .iframe-box iframe {
        height: 150px; /* Adjust the iframe height for smaller screens */
    }
}
        .footer-col ul.social-icons {
            display: flex;
            gap: 15px;
            padding: 0;
        }

        .footer-col ul.social-icons li {
            list-style: none;
        }

        .footer-col ul.social-icons li a {
            color: white;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .footer-col ul.social-icons li a:hover {
            color: #c39e46;
        }
      /* Services Dropdown */
      .navbar .nav-items ul li.dropdown {
            position: relative;
        }

        .navbar .nav-items ul li .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            
            background-color: #001e2f;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            min-width: 170px;
        }

        .navbar .nav-items ul li .dropdown-content a {
            font-size: 12px;
            padding: 10px;
            display: block;
            color: #c39e46;
            text-decoration: none;
        }

        .navbar .nav-items ul li .dropdown-content a:hover {
            color: white;
        }

        .navbar .nav-items ul li.dropdown:hover .dropdown-content {
            display: block;
        }


/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo-container {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    z-index: -1; 
}

.sticky-logo {
    opacity: 0.5;
    width: 390px; 
    height: 390px;  
    transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
    .sticky-logo {
        display: none;
    }
}


.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

    .btn {
        padding: 0.5rem 1rem;
        border-radius: 0.375rem;
        background-color: #e2e8f0;
        transition: all 0.3s;
    }
    .btn:hover {
        background-color: #cbd5e1;
    }


/* Existing CSS for mobile toggle */
@media screen and (max-width: 600px) {
    .navbar ul {
        display: none; /* Initially hide the nav items */
        flex-direction: column;
    }

    .hamburger {
        display: block; /* Show hamburger icon on mobile */
    }

    .navbar.active ul {
        display: block; /* Display nav items when active */
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .navbar.active ul li {
        margin-left: 20px;
        padding: 10px 20px;
    }
}

/* Ensure the hamburger is hidden on larger screens */
@media screen and (min-width: 601px) {
    .hamburger {
        display: none; /* Hide hamburger on larger screens */
    }
}

