/** * @package WordPress * @subpackage Default_Theme */ function theme_customizer_register( $wp_customize ) { // Add Section $wp_customize->add_section( 'theme_custom_colors', array( 'title' => __( 'Custom Theme Colors' ), 'description' => __( 'Customize Theme Colors' ), 'priority' => 30, ) ); // Add Settings $wp_customize->add_setting( 'background_color' , array( 'default' => '#ffffff', 'transport' => 'refresh', ) ); // Add Control $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'background_color_control', array( 'label' => __( 'Background Color' ), 'section' => 'theme_custom_colors', 'settings' => 'background_color', ) )); } add_action( 'customize_register', 'theme_customizer_register' ); function meta_resources() { wp_enqueue_style('bootstrap', get_template_directory_uri() . '/css/bootstrap.min.css'); wp_enqueue_style('pagepiling', get_template_directory_uri() . '/css/jquery.pagepiling.min.css'); wp_enqueue_style('font-awesome', get_template_directory_uri() . '/css/all.min.css'); wp_enqueue_style('styrene', get_template_directory_uri() . '/fonts/1809-CGUQXM.css'); wp_enqueue_style('leaflet', get_template_directory_uri() . '/leaflet/leaflet.css'); wp_enqueue_style('style', get_stylesheet_uri()); wp_enqueue_script( 'bootstrap-js', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), '4.1.0', true ); wp_enqueue_script( 'fullpage-scrolloverflow', get_template_directory_uri() . '/js/scrolloverflow.min.js', array('jquery'), '0.0.9', true ); wp_enqueue_script( 'pagepiling-js', get_template_directory_uri() . '/js/jquery.pagepiling.min.js', array('jquery'), '3.0.2', true ); wp_enqueue_script( 'webfont', 'https://ajax.googleapis.com/ajax/libs/webfont/1.5.2/webfont.js', array('jquery'), '1.6.26', true ); wp_enqueue_script( 'meta-js', get_template_directory_uri() . '/js/meta.js', array('jquery'), '1', true ); wp_enqueue_script( 'leaflet-js', get_template_directory_uri() . '/leaflet/leaflet.js', array('jquery'), '1.3.1', true ); } add_action('wp_enqueue_scripts', 'meta_resources'); /* Add Latest Jquery */ if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11); function my_jquery_enqueue() { wp_deregister_script('jquery'); wp_register_script('jquery', get_template_directory_uri() . '/js/jQuery.min.js', false, null); wp_enqueue_script('jquery'); } /* Image Sizes */ add_image_size('thumbnail', get_option( 'thumbnail_size_w' ), get_option( 'thumbnail_size_h' ), array( 'center', 'top' ) ); add_image_size('medium', get_option( 'medium_size_w' ), get_option( 'medium_size_h' ), true ); add_image_size('profile', 300, 400, true ); add_image_size('large', get_option( 'large_size_w' ), get_option( 'large_size_h' ), true ); /* Add Menus */ function register_my_menus() { register_nav_menus( array( 'main-menu' => __( 'Main Menu' ), 'secondary-menu' => __( 'Secondary Menu' ), 'tertiary-menu' => __( 'Tertiary Menu' ) ) ); } add_action( 'init', 'register_my_menus' ); /* Add ACF Options Page */ if( function_exists('acf_add_options_page') ) { acf_add_options_page(array( 'page_title' => 'Contact Info', 'menu_title' => 'Contact Info', 'menu_slug' => 'contact-info', 'icon_url' => 'dashicons-share', 'position' => 6, 'capability' => 'edit_posts', 'redirect' => false )); } /* Move Yoast to bottom */ function yoasttobottom() { return 'low'; } add_filter( 'wpseo_metabox_prio', 'yoasttobottom'); /* Disable XML-RPC */ add_filter( 'xmlrpc_enabled', '__return_false' ); /* Label ACF Flex Fields*/ function my_acf_flexible_content_layout_title( $title, $field, $layout, $i ) { // load text sub field if( $text = get_sub_field('heading') ) { $anchorlink = strip_tags(get_sub_field('heading')); $anchorlink = preg_replace('/[^\p{L}\p{N}\s]/u', '', $anchorlink); $anchorlink = preg_replace('/\s+/', '-', $anchorlink); $anchorlink = strtolower($anchorlink); if($i > 0){ $title .= ' - '. $text .'    #'.$anchorlink; }else{ $title .= ' - '. $text; } } // return return $title; } // name add_filter('acf/fields/flexible_content/layout_title', 'my_acf_flexible_content_layout_title', 10, 4); // Function to randomize Advanced Custome Fields' Repeaters function my_acf_load_value3( $value, $post_id, $field ){ shuffle($value); return $value; } // Randomize ACF Clients' Repeater add_filter('acf/load_value/key=field_5b8df86219996', 'my_acf_load_value3', 10, 3); // CPTs function register_custom_post_types() { register_post_type( 'projects', array( 'labels' => array( 'name' => __( 'Projects' ), 'singular_name' => __( 'Project' ), 'add_new' => __( 'Add New ' ), 'add_new_item' => __( 'Add New ' ), 'edit' => __( 'Edit ' ), 'edit_item' => __( 'Edit ' ), 'new_item' => __( 'New ' ), 'view' => __( 'View ' ), 'view_item' => __( 'View ' ), 'search_items' => __( 'Search ' ), 'not_found' => __( 'Nothing found' ), 'not_found_in_trash' => __( 'Nothing found in Trash' ), 'parent' => __( 'Parent' ), 'description' => __( '' ), ), 'public' => true, 'show_ui' => true, 'publicly_queryable' => false, 'exclude_from_search' => false, 'menu_position' => 10, 'hierarchical' => true, 'query_var' => true, 'has_archive' => false, 'menu_icon' => 'dashicons-hammer', 'supports' => array( 'title', 'editor','page-attributes') ) ); register_post_type( 'people', array( 'labels' => array( 'name' => __( 'People' ), 'singular_name' => __( 'Person' ), 'add_new' => __( 'Add New ' ), 'add_new_item' => __( 'Add New ' ), 'edit' => __( 'Edit ' ), 'edit_item' => __( 'Edit ' ), 'new_item' => __( 'New ' ), 'view' => __( 'View ' ), 'view_item' => __( 'View ' ), 'search_items' => __( 'Search ' ), 'not_found' => __( 'Nothing found' ), 'not_found_in_trash' => __( 'Nothing found in Trash' ), 'parent' => __( 'Parent' ), 'description' => __( '' ), ), 'public' => true, 'show_ui' => true, 'publicly_queryable' => false, 'exclude_from_search' => false, 'menu_position' => 10, 'hierarchical' => true, 'query_var' => true, 'has_archive' => false, 'menu_icon' => 'dashicons-groups', 'supports' => array( 'title', 'editor','page-attributes') ) ); // News register_post_type( 'news', array( 'labels' => array( 'name' => __( 'News & Event' ), 'singular_name' => __( 'News/Event' ), 'add_new' => __( 'Add News/Event' ), 'add_new_item' => __( 'Add News/Event' ), 'edit' => __( 'Edit ' ), 'edit_item' => __( 'Edit ' ), 'new_item' => __( 'New ' ), 'view' => __( 'View ' ), 'view_item' => __( 'View ' ), 'search_items' => __( 'Search News' ), 'not_found' => __( 'Nothing found' ), 'not_found_in_trash' => __( 'Nothing found in Trash' ), 'parent' => __( 'Parent' ), 'description' => __( '' ), ), 'public' => true, 'show_ui' => true, 'publicly_queryable' => false, 'exclude_from_search' => false, 'menu_position' => 10, 'hierarchical' => true, 'query_var' => true, 'has_archive' => false, 'menu_icon' => 'dashicons-media-text', 'supports' => array( 'title', 'editor','page-attributes') ) ); // Events register_post_type( 'awards', array( 'labels' => array( 'name' => __( 'Awards' ), 'singular_name' => __( 'Awards' ), 'add_new' => __( 'Add Award ' ), 'add_new_item' => __( 'Add Award/ ' ), 'edit' => __( 'Edit ' ), 'edit_item' => __( 'Edit ' ), 'new_item' => __( 'New ' ), 'view' => __( 'View ' ), 'view_item' => __( 'View ' ), 'search_items' => __( 'Search Award' ), 'not_found' => __( 'Nothing found' ), 'not_found_in_trash' => __( 'Nothing found in Trash' ), 'parent' => __( 'Parent' ), 'description' => __( '' ), ), 'public' => true, 'show_ui' => true, 'publicly_queryable' => false, 'exclude_from_search' => false, 'menu_position' => 10, 'hierarchical' => true, 'query_var' => true, 'has_archive' => false, 'menu_icon' => 'dashicons-calendar-alt', 'supports' => array( 'title', 'editor','page-attributes') ) ); // Pre Qualification of sub consultant register_post_type( 'prequalofsub', array( 'labels' => array( 'name' => __( 'All Pre Qual. of Sub' ), 'singular_name' => __( 'Pre Qual. of Sub' ), 'add_new' => __( 'Add Pre Qual.' ), 'add_new_item' => __( 'Add Pre Qual.' ), 'edit' => __( 'Edit ' ), 'edit_item' => __( 'Edit ' ), 'new_item' => __( 'New ' ), 'view' => __( 'View ' ), 'view_item' => __( 'View ' ), 'search_items' => __( 'Search Pre Qual.' ), 'not_found' => __( 'Nothing found' ), 'not_found_in_trash' => __( 'Nothing found in Trash' ), 'parent' => __( 'Parent' ), 'description' => __( '' ), ), 'public' => true, 'show_ui' => true, 'publicly_queryable' => false, 'exclude_from_search' => false, 'menu_position' => 10, 'hierarchical' => true, 'query_var' => true, 'has_archive' => false, 'menu_icon' => 'dashicons-clipboard', 'supports' => array( 'title', 'editor','page-attributes') ) ); // brochure post type register_post_type( 'brochure', array( 'labels' => array( 'name' => __( 'Brochure' ), 'singular_name' => __( 'Brochure' ), 'add_new' => __( 'Add Brochure' ), 'add_new_item' => __( 'Add Brochure' ), 'edit' => __( 'Edit ' ), 'edit_item' => __( 'Edit ' ), 'new_item' => __( 'New ' ), 'view' => __( 'View ' ), 'view_item' => __( 'View ' ), 'search_items' => __( 'Search Brochure' ), 'not_found' => __( 'Nothing found' ), 'not_found_in_trash' => __( 'Nothing found in Trash' ), 'parent' => __( 'Parent' ), 'description' => __( '' ), ), 'public' => true, 'show_ui' => true, 'publicly_queryable' => false, 'exclude_from_search' => false, 'menu_position' => 10, 'hierarchical' => true, 'query_var' => true, 'has_archive' => false, 'menu_icon' => 'dashicons-welcome-widgets-menus', 'supports' => array( 'title', 'editor','page-attributes') ) ); } add_action( 'init', 'register_custom_post_types' ); // Register Taxonomies function my_taxonomies_our_stories() { $labels = array( 'name' => _x( 'Types', 'taxonomy general name' ), 'singular_name' => _x( 'Type', 'taxonomy singular name' ), 'search_items' => __( 'Search' ), 'all_items' => __( 'All' ), 'parent_item' => __( 'Parent' ), 'parent_item_colon' => __( 'Parent' ), 'edit_item' => __( 'Edit' ), 'update_item' => __( 'Update' ), 'add_new_item' => __( 'Add New' ), 'new_item_name' => __( 'New' ), 'menu_name' => __( 'Types' ), ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'show_admin_column' => true ); register_taxonomy( 'type', 'projects', $args ); } add_action( 'init', 'my_taxonomies_our_stories', 0 ); Who We Are - Atane Consulting

Who We Are

 

 

ATANE Engineering, Architects, and Land Surveyors proudly stands as the largest Minority Business Enterprise (MBE) in civil engineering across New York, Boston, and Philadelphia. As a comprehensive engineering consulting firm, ATANE collaborates with both public and private agencies across the New England and Mid-Atlantic regions. Our dedication to excellence and innovation is fundamental to our identity and the driving force behind our success.
ATANE is committed to delivering unparalleled civil engineering and architectural solutions, fostering leadership, and embracing challenges with innovative solutions. Our commitment to diversity, inclusivity, and community engagement drives us forward. We invest in social impact programs, supporting future professionals and enhancing community well-being. Looking to the future, we’re excited to continue evolving, leveraging our expertise to overcome challenges and excel together. Discover the ATANE difference, where innovation and collaboration intertwine.

 

 

Learn More About our Board of Directors

 

 

Paul Cavota, Board Chairperson
Paul Cavota, Board Chairperson
Paul Cavota, a former Senior Vice President of Construction
Inspection at ATANE, has more than 45 years of experience, including 32 years with NYSDOT. He oversaw all construction infrastructure inspection projects, including highways, bridges, tunnels, dams and utility infrastructure. Paul’s distinguished career includes Construction/Project Manager for the Gilboa Dam Reconstruction, the Croton Aqueduct Rehabilitation and Site Restoration, and the activation of the Third Water Tunnel, all for NYCDEP. He managed ATANE’s JV partnership for Phase 1 of the Gowanus Expressway repairs and interim deck replacement and was Project Executive for the firm’s JV partnership for Phase 2. He also managed the catenary replacement on the New Haven Main Line for CTDOT and the Park Avenue and Nassau Concord Viaducts project on the BQE for NYSDOT. Paul led the South Brooklyn Marine Terminal Infrastructure Rehabilitation for NYCEDC and the Fulton Street Improvements project for NYCDDC. He was Construction Manager for the award-winning rehabilitation of the Cross Bronx Expressway/Bruckner Interchange, which was completed one year ahead of schedule with no contractor claims. Paul was a professor of civil engineering technology at Nassau County Community College from 1973 to 2010, and is a retired Lieutenant Commander in the Civil Engineer Corps of the US Navy, having served over 20 years on active and reserve duty.
... More > Less >
Quaiser Hashmi, P.E., Board Member
Quaiser Hashmi, P.E., Board Member
Quaiser Hashmi, President and CEO, has been with ATANE since 2000,
most recently serving as Vice President of the Engineering Department. During his distinguished career, Quaiser has led critical bridge and highway infrastructure work, many of which received industry accolades. Rehabilitation of the Hudson County Willow Avenue Bridge, design-build reconstruction of the Harlem River Drive Ramp to the Robert F. Kennedy Bridge, and the Claremont Parkway Bridge over the Metro-North Railroad benefited from his skilled leadership. Prior to joining ATANE, Quaiser was a supervisor in the NYSDOT bridge maintenance unit, responsible for reviewing and developing emergency repair contracts to address structurally deficient bridge components. Quaiser holds an M.S. in Civil Engineering from City College and is a Professional Engineer in New York and Connecticut.
... More > Less >
Walter E. Hickey, P.E., Board Member
Walter E. Hickey, P.E., Board Member
Walter Hickey, P.E., with his extensive engineering, managerial, and administrative experience, brings a wealth of knowledge and expertise that will undoubtedly contribute significantly to the company’s growth and success.
Walter retired from MTA Bridges and Tunnels as Deputy Chief Engineer. His background in overseeing Capital and Major Maintenance Programs at prominent bridges, such as the RFK Suspension, Lift, and Bronx Truss bridges, along with the Henry Hudson Bridge, reflects his hands-on experience in managing critical infrastructure projects. His proficiency in bridge rehabilitation, water distribution, building construction, rail reconstruction, and mechanical systems aligns seamlessly with ATANE’s work scope. His proven track record and professional standing in the community further enhance the company’s reputation and capabilities to serve our clients.
... More > Less >
Richard T. Anderson, Board Member
Richard T. Anderson, Board Member
Richard T. Anderson is President of RTA Advisory Services LLC, a private firm specializing in industry relations and strategic planning. He is President Emeritus of the New York Building Congress.
For more than twenty years, Mr. Anderson ushered in a period of unprecedented influence and growth for the Building Congress, a public policy organization in its 98th year of promoting the design, construction and real estate community. In his role as an expert in government policy and construction, Mr. Anderson’s views and assistance on a range of issues are sought by private firms, public officials, agency leaders, the news media, good government groups and other organizations inside and outside of the building community. Prior to the Building Congress, Mr. Anderson served as Executive Director of The Dallas Plan, a non-profit group formed to prepare a long-range capital improvements strategy for that city, and as President of the Regional Plan Association, the nation’s oldest metropolitan planning organization serving the New York, New Jersey and Connecticut metropolitan region. Mr. Anderson was the first elected President of the 40,000-member American Planning Association, a national group based in Washington, D.C., and served as Chairman of its College of Fellows. He is a founding member of the American Institute of Certified Planners and is Vice Chairman of the APA Foundation. He serves on the boards of the National Building Museum, ACE Mentor Program of Greater New York Foundation, Greater Jamaica Development Corporation, the Salvadori Center, Beverly Willis Foundation, and Big Brothers/Big Sisters of New York City. He is senior advisor to about 15 building industry organizations in New York. In recognition of his efforts to make New York City a better place to live and work, Mr. Anderson was awarded the 2001 George S. Lewis Award from the New York Chapter of the American Institute of Architects, where he served as Public Director and was elected Honorary New York AIA in 2010. He received a 1995 Ellis Island Medal of Honor. The Building Congress Board of Directors presented him with a Distinguished Service Award in 2004 and its 2016 Industry Recognition Dinner Distinguished Leadership Award. He was elected to the National Academy of Construction in 2006 and received the De LaSalle Medal from Manhattan College in 2015, the Boy Scouts of America James E. West Award in 2016, and was elected a Fellow of the Chartered Institute of Building. He was honored by Ronald McDonald House, New York Landmarks Conservancy and the National Building Museum in 2017. The Salvadori Center presented Mr. Anderson with their 2016 award for lifetime contributions to the building industry. Mr. Anderson also serves as President Emeritus of the New York Building Foundation, the charitable arm of the New York Building Congress. A graduate of Rutgers University, where he was elected a Loyal Son in 1989, Mr. Anderson earned a Master of Regional Planning degree from Cornell University and completed post-graduate doctoral studies in public administration at New York University. He is a member of the Union League Club of New York and John’s Island Club in Vero Beach, Florida.
... More > Less >
Mahmood Mohammed, Board Member
Mahmood Mohammed, Board Member
Mahmood Mohammed has been instrumental in making ATANE one of the Northeast region’s bridge inspection and analysis firms.
As head of the Structural Inspection and Evaluation Department, he leads over 30 inspection teams conducting more than 1,000 bridge and 700 ancillary inspections annually. Mahmood has managed the inspection and evaluation of over 4,000 bridges and 3,500 ancillary structures, including major bridges like the Pearl Harbor Memorial Bridge, the first extradosed bridge in the U.S.
... More > Less >

New York, NY

40 Wall Street,
New York, NY 10005

Edison, NJ

2147 NJ Route 27 South, Lincoln Place, Suite 202
Edison, NJ 08817

Wethersfield, CT

100 Great Meadow Road, Suite 400
Wethersfield, CT 06109

Boston, MA

56 Roland Street, Suite 202
Boston, MA 02129

Providence, RI

275 Promenade Street, Suite 150
Providence, RI 02908

Ossining, NY

47 Hudson Street, Bldg. B&C
Ossining, NY 10562

Bensalem, PA

3412 Progress Dr., Suite C
Bensalem, PA 19020, 19020

Mount Laurel, NJ

Philadelphia, PA

Baltimore, MD

Miami Lakes, FL

Pre-Qualification of Sub-Consultants

Join the ATANES team as a valued sub-consultant and elevate your expertise. Start your journey by completing our pre-qualification form.

Click here for:

ATANE MWBE Sub Utilization Selection Policy

Click here for:

Sub Consultant Pre Qualification Questionnaire

Download Pdf